[Python-checkins] r82988 - python/branches/py3k-cdecimal/Lib/test/test_curses.py
stefan.krah
python-checkins at python.org
Tue Jul 20 12:13:43 CEST 2010
Author: stefan.krah
Date: Tue Jul 20 12:13:42 2010
New Revision: 82988
Log:
Better place for the skip in issue 8433
Modified:
python/branches/py3k-cdecimal/Lib/test/test_curses.py
Modified: python/branches/py3k-cdecimal/Lib/test/test_curses.py
==============================================================================
--- python/branches/py3k-cdecimal/Lib/test/test_curses.py (original)
+++ python/branches/py3k-cdecimal/Lib/test/test_curses.py Tue Jul 20 12:13:42 2010
@@ -279,8 +279,6 @@
test_issue6243(stdscr)
finally:
curses.resetty()
- if HAVE_ISSUE_8433:
- raise unittest.SkipTest("test getmouse() skipped: see issue 8433")
def test_main():
if not sys.stdout.isatty():
@@ -294,6 +292,8 @@
finally:
curses.endwin()
unit_tests()
+ if HAVE_ISSUE_8433:
+ raise unittest.SkipTest("test getmouse() skipped: see issue 8433")
if __name__ == '__main__':
curses.wrapper(main)
More information about the Python-checkins
mailing list