Yanghao Hua wrote:
I have explained the problem of use
descriptors in previous replies, where you cannot have a local signal,
e.g. obj.signal = thing # works, but local_signal = thing # doesn't
work.

Maybe you could do something like:

   local = Signals()
   local.signal1 = ...
   local.signal2 = ...

--
Greg
_______________________________________________
Python-ideas mailing list
Python-ideas@python.org
https://mail.python.org/mailman/listinfo/python-ideas
Code of Conduct: http://python.org/psf/codeofconduct/

Reply via email to