Possible bug in Text3d module

Hi
I would like to report a bug in the blender32 python API

Function name : setBevelAmount(bevelresol)
Parameters: bevelresol (type=float)
API reference: http://www.blender.org/modules/documentation/237PythonDoc/Text3d.Text3d-class.html#setBevelAmount

My Code snippet:
txt.setBevelAmount(2.0)

Errors :
./blender:122: DeprecationWarning: integer argument expected, got float

Blender version: blender-2.37a-linux

Python Version: 2.3

WorkAround: If we use an integer value in txt.setBevelAmount(integer) then there is no error…but API says use a float value

Just a minor discrepency :slight_smile: