summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorMichael Foord <fuzzyman@voidspace.org.uk>2010-12-04 01:11:21 (GMT)
committerMichael Foord <fuzzyman@voidspace.org.uk>2010-12-04 01:11:21 (GMT)
commit37d120aeb471b3fba7e16550cea5d79ecb901561 (patch)
treeb2b9b0c58d6510c8f3e3c53285cf6b498ad3ec72 /Misc
parente2bb4eb77b24a1870bd7feb15124b7adf1460efe (diff)
downloadcpython-37d120aeb471b3fba7e16550cea5d79ecb901561.zip
cpython-37d120aeb471b3fba7e16550cea5d79ecb901561.tar.gz
cpython-37d120aeb471b3fba7e16550cea5d79ecb901561.tar.bz2
Issue 10620: Specifying test modules by path instead of module name to 'python -m unittest'
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS11
1 files changed, 7 insertions, 4 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index a19025a..59946bd 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -37,6 +37,13 @@ Core and Builtins
Library
-------
+- Issue 10620: `python -m unittest` can accept file paths instead of module
+ names for running specific tests.
+
+- 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.
+
- Issue #10272: The ssl module now raises socket.timeout instead of a generic
SSLError on socket timeouts.
@@ -236,10 +243,6 @@ Tests
- `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.
-
- Do not fail test_socket when the IP address of the local hostname cannot be
looked up.