I need to determine how ArcGIS populates the geoprocessing tools with error messages before it is ran. Does anyone know where the ArcGIS pre-compiler or pre-processor documentation is?
Can you provide an example showing the errors or behavior you are interested in?
Here is an example of the error:
By any chance is it related to
since the tool you listed isn't a standard tool and this repository is somewhat old.
The error is interesting since 'unicode' doesn't exist in python 3... everything is now a 'str'
type(u'a')
str
Thanks for the reply, Dan. I am working with that toolbox, and I am able to get around the unicode error by setting uncidode = str. You are right that it is a Python 2 function. This is an old example of how the ERROR 000001 populates the geoprocessing tool.
Your correction to get around the python 2 to 3 is the correct approach.
I can find no reference to ERROR 000001 on the support site or anywhere. You might be advised to file a tech support request since it doesn't appear that many developers have viewed this question, so it might languish.
Thank you, Dan!