summaryrefslogtreecommitdiff
path: root/lib/python2.7/test/testall.py
diff options
context:
space:
mode:
Diffstat (limited to 'lib/python2.7/test/testall.py')
-rw-r--r--lib/python2.7/test/testall.py10
1 files changed, 10 insertions, 0 deletions
diff --git a/lib/python2.7/test/testall.py b/lib/python2.7/test/testall.py
new file mode 100644
index 0000000..5b5cf01
--- /dev/null
+++ b/lib/python2.7/test/testall.py
@@ -0,0 +1,10 @@
+# Backward compatibility -- you should use regrtest instead of this module.
+from warnings import warnpy3k
+warnpy3k("the test.testall module has been removed in Python 3.0",
+ stacklevel=2)
+del warnpy3k
+
+
+import sys, regrtest
+sys.argv[1:] = ["-vv"]
+regrtest.main()