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 ppperry
Recipients Vadim Pushtaev, ncoghlan, ppperry, serhiy.storchaka
Date 2018-09-02.15:17:31
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1535901451.57.0.56676864532.issue34284@psf.upfronthosting.co.za>
In-reply-to
Content
Also happens for some objects in the `_tkinter` module:
>>> _tkinter.TkttType.__new__(_tkinter.TkttType)
Traceback (most recent call last):
  File "<pyshell#126>", line 1, in <module>
    _tkinter.TkttType.__new__(_tkinter.TkttType)
TypeError: object.__new__(_tkinter.tktimertoken) is not safe, use _tkinter.tktimertoken.__new__()
>>> _tkinter.Tcl_Obj.__new__(_tkinter.Tcl_Obj)
Traceback (most recent call last):
  File "<pyshell#127>", line 1, in <module>
    _tkinter.Tcl_Obj.__new__(_tkinter.Tcl_Obj)
TypeError: object.__new__(_tkinter.Tcl_Obj) is not safe, use _tkinter.Tcl_Obj.__new__()
>>> _tkinter.TkappType.__new__(_tkinter.TkappType)
Traceback (most recent call last):
  File "<pyshell#128>", line 1, in <module>
    _tkinter.TkappType.__new__(_tkinter.TkappType)
TypeError: object.__new__(_tkinter.tkapp) is not safe, use _tkinter.tkapp.__new__()
History
Date User Action Args
2018-09-02 15:17:31ppperrysetrecipients: + ppperry, ncoghlan, serhiy.storchaka, Vadim Pushtaev
2018-09-02 15:17:31ppperrysetmessageid: <1535901451.57.0.56676864532.issue34284@psf.upfronthosting.co.za>
2018-09-02 15:17:31ppperrylinkissue34284 messages
2018-09-02 15:17:31ppperrycreate