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 vstinner
Recipients erlendaasland, vstinner
Date 2021-05-27.17:06:29
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1622135189.89.0.727533133862.issue43988@roundup.psfhosted.org>
In-reply-to
Content
> I believe we can close this now, Victor. Please reopen if you disagree :)

I validated that all tests named "test(...)disallow(...)inst(...)" are now using support.check_disallow_instantiation().

Lib/test/test_tcl.py might use it in:

    @support.cpython_only
    def test_new_tcl_obj(self):
        self.assertRaises(TypeError, _tkinter.Tcl_Obj)
        self.assertRaises(TypeError, _tkinter.TkttType)
        self.assertRaises(TypeError, _tkinter.TkappType)

Serhiy suggested to write an unit test for curses.ncurses_version:
https://bugs.python.org/issue43916#msg391936

This work can be done in bpo-43916.
History
Date User Action Args
2021-05-27 17:06:29vstinnersetrecipients: + vstinner, erlendaasland
2021-05-27 17:06:29vstinnersetmessageid: <1622135189.89.0.727533133862.issue43988@roundup.psfhosted.org>
2021-05-27 17:06:29vstinnerlinkissue43988 messages
2021-05-27 17:06:29vstinnercreate