diff options
author | Stefan Krah <stefan@bytereef.org> | 2010-06-08 13:41:44 (GMT) |
---|---|---|
committer | Stefan Krah <stefan@bytereef.org> | 2010-06-08 13:41:44 (GMT) |
commit | 095b273afc9c536b8b9bf0d7506f2bf8949d3c72 (patch) | |
tree | 5a3dce783d44bd3bfe0137c5d1d1374ea1aa1cb6 /Lib/test/test_curses.py | |
parent | e23c4526f5c1d6516e36b99b70e5d41158d99848 (diff) | |
download | cpython-095b273afc9c536b8b9bf0d7506f2bf8949d3c72.zip cpython-095b273afc9c536b8b9bf0d7506f2bf8949d3c72.tar.gz cpython-095b273afc9c536b8b9bf0d7506f2bf8949d3c72.tar.bz2 |
Issue #7384: If the system readline library is linked against ncurses,
the curses module must be linked against ncurses as well. Otherwise it
is not safe to load both the readline and curses modules in an application.
Thanks Thomas Dickey for answering questions about ncurses/ncursesw
and readline!
Diffstat (limited to 'Lib/test/test_curses.py')
-rw-r--r-- | Lib/test/test_curses.py | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/Lib/test/test_curses.py b/Lib/test/test_curses.py index 57d4e8b..302ddb9 100644 --- a/Lib/test/test_curses.py +++ b/Lib/test/test_curses.py @@ -23,11 +23,6 @@ requires('curses') curses = import_module('curses') curses.panel = import_module('curses.panel') -# skip all these tests on FreeBSD: test_curses currently hangs the -# FreeBSD buildbots, preventing other tests from running. See issue -# #7384. -if 'freebsd' in sys.platform: - raise unittest.SkipTest('The curses module is broken on FreeBSD. See http://bugs.python.org/issue7384.') # XXX: if newterm was supported we could use it instead of initscr and not exit term = os.environ.get('TERM') |