Deprecate the new module for removal in 3.0.
diff --git a/Lib/test/test_new.py b/Lib/test/test_new.py
index c243b59..231f4bb 100644
--- a/Lib/test/test_new.py
+++ b/Lib/test/test_new.py
@@ -1,6 +1,7 @@
 import unittest
 from test import test_support
-import sys, new
+import sys
+new = test_support.import_module('new', deprecated=True)
 
 class NewTest(unittest.TestCase):
     def test_spam(self):