summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAmaury Forgeot d'Arc <amauryfa@gmail.com>2009-06-09 23:37:11 (GMT)
committerAmaury Forgeot d'Arc <amauryfa@gmail.com>2009-06-09 23:37:11 (GMT)
commit5217c0848a561aefe3b454189471c2199a06cc18 (patch)
treee7787c3ee54e8b25ffbb7d6b8fb462cb34118446
parentd708c8703e7fc6101f90f65f6c57b5c6c4b0bb59 (diff)
downloadcpython-5217c0848a561aefe3b454189471c2199a06cc18.zip
cpython-5217c0848a561aefe3b454189471c2199a06cc18.tar.gz
cpython-5217c0848a561aefe3b454189471c2199a06cc18.tar.bz2
Missing import in test_curses, uncovered by some buildbots.
(There are still a few test files that don't use the standard layout)
-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 e13c553..1b3489c 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.test_support import requires, import_module
requires('curses')
curses = import_module('curses')