STINNER Victor added the comment:

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))
---

----------
Added file: http://bugs.python.org/file46623/curses_fix_window_class_name.patch

_______________________________________
Python tracker <rep...@bugs.python.org>
<http://bugs.python.org/issue29176>
_______________________________________
_______________________________________________
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com

Reply via email to