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 serhiy.storchaka
Recipients Robin.Schreiber, amaury.forgeotdarc, asvetlov, loewis, ned.deily, pitrou, serhiy.storchaka
Date 2015-03-30.19:56:54
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1427745415.01.0.962782500028.issue23815@psf.upfronthosting.co.za>
In-reply-to
Content
In 2.7 and 3.3:

>>> import _tkinter
>>> _tkinter.Tcl_Obj()
Traceback (most recent call last):
  File "<stdin>", line 1, in <module>
TypeError: cannot create '_tkinter.Tcl_Obj' instances
>>> _tkinter.TkttType()
Traceback (most recent call last):
  File "<stdin>", line 1, in <module>
TypeError: cannot create 'tktimertoken' instances

In 3.4+:

>>> import _tkinter
>>> _tkinter.Tcl_Obj()
Segmentation fault (core dumped)

And the same for _tkinter.TkttType.

Looks as this is a result of issue15721.
History
Date User Action Args
2015-03-30 19:56:55serhiy.storchakasetrecipients: + serhiy.storchaka, loewis, amaury.forgeotdarc, pitrou, ned.deily, asvetlov, Robin.Schreiber
2015-03-30 19:56:55serhiy.storchakasetmessageid: <1427745415.01.0.962782500028.issue23815@psf.upfronthosting.co.za>
2015-03-30 19:56:54serhiy.storchakalinkissue23815 messages
2015-03-30 19:56:54serhiy.storchakacreate