summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorNick Coghlan <ncoghlan@gmail.com>2010-12-03 07:44:33 (GMT)
committerNick Coghlan <ncoghlan@gmail.com>2010-12-03 07:44:33 (GMT)
commit4c4c0f2fe6e6d9058911c9383bac57e4deefddb8 (patch)
treeca20947184c18a1f2e7ce172dfb776c168ab93d2 /Misc
parent1e5c5f8f7d507af580486529399f12f7e2bbf70a (diff)
downloadcpython-4c4c0f2fe6e6d9058911c9383bac57e4deefddb8.zip
cpython-4c4c0f2fe6e6d9058911c9383bac57e4deefddb8.tar.gz
cpython-4c4c0f2fe6e6d9058911c9383bac57e4deefddb8.tar.bz2
Partially revert r78719 - it removed a check that is still needed in some cases (i.e. this will allow Michael to add the test.__main__ support that broke the buildbots previously)
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 4d40b70..abd37b9 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -191,6 +191,9 @@ C-API
Tests
-----
+- regrtest.py once again ensures the test directory is removed from
+ sys.path when it is invoked directly as the __main__ module
+
- 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.