The Add row.SetValue ("Field", None) functionality in arcgisscripting for Python 2.4
row.SetValue ("Field", None) fails in Python 2.4 when using arcgisscripting, but not if gpDispatch is being used.
Last Published: August 25, 2014No Product Found
Bug ID Number
NIM010734
Submitted
August 2, 2007
Last Modified
June 5, 2024
Applies to
No Product Found
Version found
9.2
Status
Will Not Be Addressed
The development team has considered the issue or request and concluded it will not be addressed. The issue's Additional Information section may contain further explanation.
Additional Information
We apologize that we were unable to address this issue within the current product support cycle. If the issue continues to affect your work in a supported release, please contact Technical Support.
Workaround
The None object is part of the win32com.client module. The following example demonstrates how to modify the importer in Python Win 2.4 to support the None object.#-------------------------------------------------------- from win32com.client import Dispatch gp = Dispatch("esriGeoprocessing.GPDispatch.1") #--------------------------------------------------------