[Python-checkins] r73330 - in python/branches/py3k: Lib/test/test_curses.py

amaury.forgeotdarc python-checkins at python.org
Wed Jun 10 01:51:56 CEST 2009


Author: amaury.forgeotdarc
Date: Wed Jun 10 01:51:56 2009
New Revision: 73330

Log:
Merged revisions 73328 via svnmerge from 
svn+ssh://pythondev@svn.python.org/python/trunk

........
  r73328 | amaury.forgeotdarc | 2009-06-10 01:37:11 +0200 (mer., 10 juin 2009) | 3 lines
  
  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/branches/py3k/   (props changed)
   python/branches/py3k/Lib/test/test_curses.py

Modified: python/branches/py3k/Lib/test/test_curses.py
==============================================================================
--- python/branches/py3k/Lib/test/test_curses.py	(original)
+++ python/branches/py3k/Lib/test/test_curses.py	Wed Jun 10 01:51:56 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.support import requires, import_module
 requires('curses')
 


More information about the Python-checkins mailing list