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 christian.heimes
Recipients amaury.forgeotdarc, christian.heimes
Date 2008-08-22.22:17:54
SpamBayes Score 0.13601097
Marked as misclassified No
Message-id <1219443475.2.0.500189225667.issue3651@psf.upfronthosting.co.za>
In-reply-to
Content
The error is inside compile, not eval:

>>> compile("1", "test", "eval")
<code object <module> at 0x7ffe1ce2ed50, file "test", line 1>
[43379 refs]
>>> compile("1", "test", "eval")
<code object <module> at 0x7ffe1ce2e3b0, file "test", line 1>
[43380 refs]
>>> compile("1", "test", "eval")
<code object <module> at 0x7ffe1ce2ed50, file "test", line 1>
[43381 refs]
>>> compile("1", "test", "eval")
<code object <module> at 0x7ffe1ce2e3b0, file "test", line 1>
[43382 refs]
History
Date User Action Args
2008-08-22 22:17:55christian.heimessetrecipients: + christian.heimes, amaury.forgeotdarc
2008-08-22 22:17:55christian.heimessetmessageid: <1219443475.2.0.500189225667.issue3651@psf.upfronthosting.co.za>
2008-08-22 22:17:54christian.heimeslinkissue3651 messages
2008-08-22 22:17:54christian.heimescreate