Re: Issues with "twistd" in Twisted 16.4.0

2016-09-01 Thread juraseg
Also, I've tried to find anything in Twisted bug tracker, but I can't find my way in there. -- https://mail.python.org/mailman/listinfo/python-list

Issues with "twistd" in Twisted 16.4.0

2016-09-01 Thread juraseg
Hi all I couldn't find Twisted-specific group, so posting here. Recently Twisted 16.4.0 got released. Yesterday I've tried to upgrade it for my apps and got an error. I've created simple example, which demonstrates it. File service.tac: # You can run

Re: Variables visibility for methods

2016-09-01 Thread juraseg
среда, 31 августа 2016 г., 14:09:16 UTC+7 пользователь ast написал: > Hello > > I made few experiments about variables visibility > for methods. > > class MyClass: > a = 1 > def test(self): > print(a) > > obj = MyClass() > obj.test() > > Traceback (most recent call last): >