New issue report by MarkRoddy:
For package functions/procedures that have arguments with default values,
have these default values in the Python method. So:
FUNCTION Foo(arg integer default 1);
Would yield:
def Foo(self, arg=1)
Issue attributes:
Status: Accepted
Owner: MarkRoddy
Labels: Type-Enhancement Priority-Medium
--
You received this message because you are listed in the owner
or CC fields of this issue, or because you starred this issue.
You may adjust your issue notification preferences at:
http://code.google.com/hosting/settings
I like the idea of the 'USE_DEFAULT'. The only thing I would change
is to use bind variables for the literal argument values. Otherwise
string values need to be quoted/escaped.
-Mark