This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author jonathan.hartley
Recipients daniel.urban, eric.araujo, jonathan.hartley, mjs0
Date 2011-04-08.20:53:04
SpamBayes Score 5.312533e-05
Marked as misclassified No
Message-id <1302295985.4.0.655481497349.issue11796@psf.upfronthosting.co.za>
In-reply-to
Content
Is also exhibited by other class variable being used in the 'output' clause of the list comprehension:

>>> class C:
...     x = 3
...     z = [z*x for z in range(4)]
Traceback (most recent call last):
  File "<stdin>", line 1, in <module>
  File "<stdin>", line 3, in C
  File "<stdin>", line 3, in <listcomp>
History
Date User Action Args
2011-04-08 20:53:05jonathan.hartleysetrecipients: + jonathan.hartley, eric.araujo, daniel.urban, mjs0
2011-04-08 20:53:05jonathan.hartleysetmessageid: <1302295985.4.0.655481497349.issue11796@psf.upfronthosting.co.za>
2011-04-08 20:53:04jonathan.hartleylinkissue11796 messages
2011-04-08 20:53:04jonathan.hartleycreate