Anthony,
On 28/02/19 10:18 PM, Anthony Flury via Python-list wrote:
I am trying to write an extension module with a function (actually an
__init__ method, but I am not sure that matters) where the function can
be called as either :
my_func()
or
my_func( a, b, c, d) - where a,b,c,d a
Anthony Flury via Python-list schrieb am 28.02.19 um 10:18:
> I am trying to write an extension module with a function (actually an
> __init__ method, but I am not sure that matters) where the function can be
> called as either :
>
> my_func()
>
> or
>
> my_func( a, b, c, d) - where a,b,