I usually use a class to access to global variables. So, which would
be the correct way to set them --since the following classes--:

--------------------
class Foo:
   var = 'lala'

class Bar:
   def __init__(self):
      self.var = 'lele'
--------------------

Or is it the same?
-- 
http://mail.python.org/mailman/listinfo/python-list

Reply via email to