summaryrefslogtreecommitdiffstats
path: root/Lib
diff options
context:
space:
mode:
authorStefan Krah <stefan@bytereef.org>2010-06-03 12:39:50 (GMT)
committerStefan Krah <stefan@bytereef.org>2010-06-03 12:39:50 (GMT)
commit449aa86bd6a7d41f810dc85c86a7cfaf9c50bc9a (patch)
tree48275581a14260688deed81b013046bd7ef22418 /Lib
parent4da7d410b38a6dbeab70981855e1fc0407f991fd (diff)
downloadcpython-449aa86bd6a7d41f810dc85c86a7cfaf9c50bc9a.zip
cpython-449aa86bd6a7d41f810dc85c86a7cfaf9c50bc9a.tar.gz
cpython-449aa86bd6a7d41f810dc85c86a7cfaf9c50bc9a.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')
-rw-r--r--Lib/test/test_curses.py5
1 files changed, 0 insertions, 5 deletions
diff --git a/Lib/test/test_curses.py b/Lib/test/test_curses.py
index 69271de..18d73fc 100644
--- a/Lib/test/test_curses.py
+++ b/Lib/test/test_curses.py
@@ -21,11 +21,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')