summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorNick Coghlan <ncoghlan@gmail.com>2010-06-12 13:42:46 (GMT)
committerNick Coghlan <ncoghlan@gmail.com>2010-06-12 13:42:46 (GMT)
commit5e76e94fd45711d65b2f0958b090913e3eff5f49 (patch)
treebd166764c61b9317eb1c5b311e4c9502cad0f95d /Misc
parent0681785d09adb4de0cfd5cdeb2c70d6eeb690dde (diff)
downloadcpython-5e76e94fd45711d65b2f0958b090913e3eff5f49.zip
cpython-5e76e94fd45711d65b2f0958b090913e3eff5f49.tar.gz
cpython-5e76e94fd45711d65b2f0958b090913e3eff5f49.tar.bz2
Merged revisions 80578 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/trunk ........ r80578 | nick.coghlan | 2010-04-29 00:29:06 +1000 (Thu, 29 Apr 2010) | 1 line Issue 7490: make IGNORE_EXCEPTION_DETAIL also ignore details of the module containing the exception under test (original patch by Lennart Regebro) ........
Diffstat (limited to 'Misc')
-rw-r--r--Misc/ACKS1
-rw-r--r--Misc/NEWS4
2 files changed, 5 insertions, 0 deletions
diff --git a/Misc/ACKS b/Misc/ACKS
index a20550e..1c1b372 100644
--- a/Misc/ACKS
+++ b/Misc/ACKS
@@ -638,6 +638,7 @@ Marc Recht
John Redford
Terry Reedy
Steve Reeves
+Lennart Regebro
Ofir Reichenberg
Sean Reifschneider
Michael P. Reilly
diff --git a/Misc/NEWS b/Misc/NEWS
index 3fd0178..cde2905 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -12,6 +12,10 @@ What's New in Python 3.2 Alpha 1?
Core and Builtins
-----------------
+- Issue #7490: to facilitate sharing of doctests between 2.x and 3.x test
+ suites, the IGNORE_EXCEPTION_DETAIL directive now also ignores the module
+ location of the raised exception.
+
- Issue #8969: On Windows, use mbcs codec in strict mode to encode and decode
filenames and enable os.fsencode().