Missing import in test_curses, uncovered by some buildbots.
(There are still a few test files that don't use the standard layout)
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 @@
 # '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')