mirror of
https://github.com/python/cpython.git
synced 2025-10-03 05:35:59 +00:00
Fix an oversight in merge r78282.
This commit is contained in:
parent
34f9277d56
commit
dc92ce97af
1 changed files with 2 additions and 1 deletions
|
@ -23,7 +23,8 @@ requires('curses')
|
||||||
# FreeBSD buildbots, preventing other tests from running. See issue
|
# FreeBSD buildbots, preventing other tests from running. See issue
|
||||||
# #7384.
|
# #7384.
|
||||||
if 'freebsd' in sys.platform:
|
if 'freebsd' in sys.platform:
|
||||||
raise unittest.SkipTest('The curses module is broken on FreeBSD. See http://bugs.python.org/issue7384.')
|
raise TestSkipped('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
|
# XXX: if newterm was supported we could use it instead of initscr and not exit
|
||||||
term = os.environ.get('TERM')
|
term = os.environ.get('TERM')
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue