How to access from a class variable to one that is initialized on the
constructor?
--------------
class Foo():
  foo = bar  # I want to access *from here* to variables created on
the constructor.

  def __init__(self, bar_init):
    self.bar = bar_init
--------------

Note: I've to create a subclass where the parent class to get
variables using *for i in dir(self): * so it doesn't get variables
initialized on the constructor.
--
http://mail.python.org/mailman/listinfo/python-list

Reply via email to