diff options
author | Nick Coghlan <ncoghlan@gmail.com> | 2010-06-12 13:42:46 (GMT) |
---|---|---|
committer | Nick Coghlan <ncoghlan@gmail.com> | 2010-06-12 13:42:46 (GMT) |
commit | 5e76e94fd45711d65b2f0958b090913e3eff5f49 (patch) | |
tree | bd166764c61b9317eb1c5b311e4c9502cad0f95d /Misc | |
parent | 0681785d09adb4de0cfd5cdeb2c70d6eeb690dde (diff) | |
download | cpython-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/ACKS | 1 | ||||
-rw-r--r-- | Misc/NEWS | 4 |
2 files changed, 5 insertions, 0 deletions
@@ -638,6 +638,7 @@ Marc Recht John Redford Terry Reedy Steve Reeves +Lennart Regebro Ofir Reichenberg Sean Reifschneider Michael P. Reilly @@ -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(). |