Can we change the spelling of the cellsize parameter in arcpy.PolygonToRaster_conversion()?
It seems that it would be easy to standardized on cellSize in the API for consistency.
For example:
arcpy.env.cellSize
arcpy.PolygonToRaster_conversion(..., cellsize=xyz
It seems like this would be a quick fix to do a findAndReplace in the API of all spellings of cellsize and convert them to cellSize.
This may seem minor, but consistency in the API would prevent these kind of simple errors:
TypeError: PolygonToRaster() got an unexpected keyword argument 'cellSize'