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 serhiy.storchaka, twouters, vstinner, xdegaye, yan12125
Date 2017-02-10.10:58:13
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1486724293.9.0.935199605891.issue29176@psf.upfronthosting.co.za>
In-reply-to
Content
curses_fix_window_class_name.patch: Fix the name of the C window class: "_curses.window", not "_curses.curses window" (with a space in the class name) !?

The following example current displays <class '_curses.curses window'>:
---
import curses
w = curses.initscr()
curses.endwin()
print(type(w))
---
History
Date User Action Args
2017-02-10 10:58:13vstinnersetrecipients: + vstinner, twouters, xdegaye, serhiy.storchaka, yan12125
2017-02-10 10:58:13vstinnersetmessageid: <1486724293.9.0.935199605891.issue29176@psf.upfronthosting.co.za>
2017-02-10 10:58:13vstinnerlinkissue29176 messages
2017-02-10 10:58:13vstinnercreate