Get variables on constructor

2009-02-23 Thread Kless
To get class variables can be used *for i in dir(self): * but how to get variables initialized on the constructor? -- http://mail.python.org/mailman/listinfo/python-list

Re: Get variables on constructor [Solved]

2009-02-23 Thread Kless
On 23 feb, 10:17, Kless wrote: > To get class variables can be used *for i in dir(self): * but how to > get variables initialized on the constructor? Sorry. It's so simple as insert *self*. -- http://mail.python.org/mailman/listinfo/python-list