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-10-30.01:03:49
SpamBayes Score 0.0022139456
Marked as misclassified No
Message-id <1225328632.46.0.181428424651.issue4236@psf.upfronthosting.co.za>
In-reply-to
Content
I can reproduce the same output with CTRL+D on Linux.

$ python3.0
Python 3.0rc1+ (py3k:67029M, Oct 26 2008, 23:48:21)
[GCC 4.2.4 (Ubuntu 4.2.4-1ubuntu3)] on linux2
Type "help", "copyright", "credits" or "license" for more information.
>>> class C:
...     def __del__(self):
...         print("del")
...         import warnings
...
[33876 refs]
>>> C()
<__main__.C object at 0x7f4740a98d80>
[33893 refs]
>>> exit()
[33900 refs]
del
Fatal Python error: Interpreter not initialized (version mismatch?)
Aborted
History
Date User Action Args
2008-10-30 01:03:52christian.heimessetrecipients: + christian.heimes, amaury.forgeotdarc
2008-10-30 01:03:52christian.heimessetmessageid: <1225328632.46.0.181428424651.issue4236@psf.upfronthosting.co.za>
2008-10-30 01:03:51christian.heimeslinkissue4236 messages
2008-10-30 01:03:49christian.heimescreate