[EMAIL PROTECTED] wrote:
> Hello. Please post the minimal code that can be run and demonstrates
> what's wrong. I tried the following and it works fine, args and kwargs
> are visible:
>
> class MyFactory(object):
> def __init__(self, *args, **kwargs):
> self.args = args
>
Hello. Please post the minimal code that can be run and demonstrates
what's wrong. I tried the following and it works fine, args and kwargs
are visible:
class MyFactory(object):
def __init__(self, *args, **kwargs):
self.args = args
self.kwargs = kwargs
clas
Gabriel Rossetti wrote:
> Hello,
>
> I have something weird going on, I have the following (simplified) :
>
> class MyFactory(..., ...):
>
> def __init__(self, *args, **kwargs):
> self.args = args
> self.kwargs = kwargs
> ...
>
> class MyXmlFactory(MyFactory):
>
> de
Hello,
I have something weird going on, I have the following (simplified) :
class MyFactory(..., ...):
def __init__(self, *args, **kwargs):
self.args = args
self.kwargs = kwargs
...
class MyXmlFactory(MyFactory):
def __init__(self, *args, **kwargs):
MyFa