diff options
author | Stefan Krah <stefan@bytereef.org> | 2010-06-16 15:07:41 (GMT) |
---|---|---|
committer | Stefan Krah <stefan@bytereef.org> | 2010-06-16 15:07:41 (GMT) |
commit | b0434fcd4b7bbfddc556f938e3a4eb8e0934d2d0 (patch) | |
tree | 3e2fcedf1321b95c1e746aba89cd36beda35f65e /Lib/test/test_curses.py | |
parent | 0dc3d035f3366ac10117173d1c9cb09de4efde37 (diff) | |
download | cpython-b0434fcd4b7bbfddc556f938e3a4eb8e0934d2d0.zip cpython-b0434fcd4b7bbfddc556f938e3a4eb8e0934d2d0.tar.gz cpython-b0434fcd4b7bbfddc556f938e3a4eb8e0934d2d0.tar.bz2 |
Issue #7384: If the system readline library is linked against
ncurses, do not link the readline module against ncursesw.
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') |