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 michael.foord
Recipients michael.foord
Date 2011-05-17.23:07:07
SpamBayes Score 2.0722646e-06
Marked as misclassified No
Message-id <1305673627.82.0.93003705972.issue12099@psf.upfronthosting.co.za>
In-reply-to
Content
>>> import re
>>> re.compile('foo')
<_sre.SRE_Pattern object at 0x1043230>
>>> p = re.compile('foo')
>>> p.__class__
Traceback (most recent call last):
  File "<stdin>", line 1, in <module>
AttributeError: __class__

Already fixed in 3.2.
History
Date User Action Args
2011-05-17 23:07:07michael.foordsetrecipients: + michael.foord
2011-05-17 23:07:07michael.foordsetmessageid: <1305673627.82.0.93003705972.issue12099@psf.upfronthosting.co.za>
2011-05-17 23:07:07michael.foordlinkissue12099 messages
2011-05-17 23:07:07michael.foordcreate