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)
........
This commit is contained in:
Amaury Forgeot d'Arc 2009-06-09 23:51:56 +00:00
parent 2cdc88e999
commit f6b8872b0d
1 changed files with 1 additions and 0 deletions

View File

@ -15,6 +15,7 @@ import sys, tempfile, os
# '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')