summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorMichael Foord <fuzzyman@voidspace.org.uk>2010-12-03 12:27:40 (GMT)
committerMichael Foord <fuzzyman@voidspace.org.uk>2010-12-03 12:27:40 (GMT)
commit3ab34ccae3b7475499dce93c13eba3d2e2e1be96 (patch)
tree388e44e1463961043632ae43de7af2e122ede9ab /Misc
parent615615291f8a59ff194cadb67e9898575061aaa5 (diff)
downloadcpython-3ab34ccae3b7475499dce93c13eba3d2e2e1be96.zip
cpython-3ab34ccae3b7475499dce93c13eba3d2e2e1be96.tar.gz
cpython-3ab34ccae3b7475499dce93c13eba3d2e2e1be96.tar.bz2
Factor out common code from lib/test/__main__.py and lib/test/regrtest.py into a function.
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS3
1 files changed, 3 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index 7796b2f..07a62ee 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -206,6 +206,9 @@ Tests
- regrtest.py once again ensures the test directory is removed from sys.path
when it is invoked directly as the __main__ module
+- `python -m test` can be used to run the test suite as well as
+ `python -m test.regrtest`.
+
- Issue #9424: Deprecate the `unittest.TestCase` methods `assertEquals`,
`assertNotEquals`, `assertAlmostEquals`, `assertNotAlmostEquals` and `assert_`
and replace them with the correct methods in the Python test suite.