[issue29176] /tmp does not exist on Android and is used by curses.window.putwin()

STINNER Victor report at bugs.python.org
Fri Feb 10 05:58:13 EST 2017


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 <report at bugs.python.org>
<http://bugs.python.org/issue29176>
_______________________________________


More information about the Python-bugs-list mailing list