We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
I have the small script below that I try to test:
import sys def pre_save(value, numb): if value == "value": return("accepted by Python script " + sys.version) else: return("refused by Python script" + sys.version)
When I do a py.RunSrc(ctx, pythonCode, "", nil), I get "AttributeError: "'module' has no attribute 'pre_save'""
py.RunSrc(ctx, pythonCode, "", nil)