summaryrefslogtreecommitdiffstats
path: root/Lib/test/test_curses.py
diff options
context:
space:
mode:
authorAmaury Forgeot d'Arc <amauryfa@gmail.com>2009-06-09 23:51:56 (GMT)
committerAmaury Forgeot d'Arc <amauryfa@gmail.com>2009-06-09 23:51:56 (GMT)
commitf6b8872b0d70149a7c8d0766e938fdd8d882f1b3 (patch)
tree1542f88c23d85f411130ad82296ce097bb482292 /Lib/test/test_curses.py
parent2cdc88e9994a488b390836e3125bdfb33b3989c9 (diff)
downloadcpython-f6b8872b0d70149a7c8d0766e938fdd8d882f1b3.zip
cpython-f6b8872b0d70149a7c8d0766e938fdd8d882f1b3.tar.gz
cpython-f6b8872b0d70149a7c8d0766e938fdd8d882f1b3.tar.bz2
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) ........
Diffstat (limited to 'Lib/test/test_curses.py')
-rw-r--r--Lib/test/test_curses.py1
1 files changed, 1 insertions, 0 deletions
diff --git a/Lib/test/test_curses.py b/Lib/test/test_curses.py
index 3f43c11..bf60daa 100644
--- a/Lib/test/test_curses.py
+++ b/Lib/test/test_curses.py
@@ -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')