diff options
Diffstat (limited to 'AppPkg/Applications/Python/Python-2.7.2/Lib/test/testall.py')
-rw-r--r-- | AppPkg/Applications/Python/Python-2.7.2/Lib/test/testall.py | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/AppPkg/Applications/Python/Python-2.7.2/Lib/test/testall.py b/AppPkg/Applications/Python/Python-2.7.2/Lib/test/testall.py new file mode 100644 index 0000000000..9a1b7240d6 --- /dev/null +++ b/AppPkg/Applications/Python/Python-2.7.2/Lib/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()
|