[Python-checkins] r73328 - python/trunk/Lib/test/test_curses.py

amaury.forgeotdarc python-checkins at python.org
Wed Jun 10 01:37:11 CEST 2009


Author: amaury.forgeotdarc
Date: Wed Jun 10 01:37:11 2009
New Revision: 73328

Log:
Missing import in test_curses, uncovered by some buildbots.
(There are still a few test files that don't use the standard layout)


Modified:
   python/trunk/Lib/test/test_curses.py

Modified: python/trunk/Lib/test/test_curses.py
==============================================================================
--- python/trunk/Lib/test/test_curses.py	(original)
+++ python/trunk/Lib/test/test_curses.py	Wed Jun 10 01:37:11 2009
@@ -15,6 +15,7 @@
 # 'curses' resource be given on the regrtest command line using the -u
 # option.  If not available, nothing after this line will be executed.
 
+import unittest
 from test.test_support import requires, import_module
 requires('curses')
 curses = import_module('curses')


More information about the Python-checkins mailing list