summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorR. David Murray <rdmurray@bitdance.com>2010-02-23 00:24:49 (GMT)
committerR. David Murray <rdmurray@bitdance.com>2010-02-23 00:24:49 (GMT)
commitf28fd24c36310541a1f3ec74e92e8d38629dd5d8 (patch)
treeca85998492ba91f8874ba63fecd77397f65ad3d6 /Misc
parent87bcb243acfd758b3e91e194bf8f1198ae68a792 (diff)
downloadcpython-f28fd24c36310541a1f3ec74e92e8d38629dd5d8.zip
cpython-f28fd24c36310541a1f3ec74e92e8d38629dd5d8.tar.gz
cpython-f28fd24c36310541a1f3ec74e92e8d38629dd5d8.tar.bz2
Issue 6292: for the moment at least, the test suite passes if run
with -OO. Tests requiring docstrings are skipped. Patch by Brian Curtin, thanks to Matias Torchinsky for helping review and improve the patch.
Diffstat (limited to 'Misc')
-rw-r--r--Misc/ACKS1
-rw-r--r--Misc/NEWS3
2 files changed, 4 insertions, 0 deletions
diff --git a/Misc/ACKS b/Misc/ACKS
index 3fb65e0..426d0dd 100644
--- a/Misc/ACKS
+++ b/Misc/ACKS
@@ -755,6 +755,7 @@ Christian Tismer
Frank J. Tobin
R Lindsay Todd
Bennett Todd
+Matias Torchinsky
Richard Townsend
Laurence Tratt
John Tromp
diff --git a/Misc/NEWS b/Misc/NEWS
index 872affe..c3cf9b5 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -57,6 +57,9 @@ Extension Modules
Tests
-----
+- Issue #6292: for the moment at least, the test suite runs cleanly if python
+ is run with the -OO flag. Tests requiring docstrings are skipped.
+
- Issue #7712: test_support gained a new `temp_cwd` context manager which is
now also used by regrtest to run all the tests in a temporary directory.
The original CWD is saved in `test_support.SAVEDCWD`.