diff options
author | Nick Coghlan <ncoghlan@gmail.com> | 2010-04-28 14:29:06 (GMT) |
---|---|---|
committer | Nick Coghlan <ncoghlan@gmail.com> | 2010-04-28 14:29:06 (GMT) |
commit | dfb45dfd048160a60b2165f25a2b1fb99ca0495d (patch) | |
tree | fabfed4a36184962d489ce58ed6a76ae7e2d7e0e /Misc | |
parent | 616de77779fe9732b54d2c7cddfea62afff28a88 (diff) | |
download | cpython-dfb45dfd048160a60b2165f25a2b1fb99ca0495d.zip cpython-dfb45dfd048160a60b2165f25a2b1fb99ca0495d.tar.gz cpython-dfb45dfd048160a60b2165f25a2b1fb99ca0495d.tar.bz2 |
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
@@ -627,6 +627,7 @@ Marc Recht John Redford Terry Reedy Steve Reeves +Lennart Regebro Ofir Reichenberg Sean Reifschneider Michael P. Reilly @@ -27,6 +27,10 @@ Core and Builtins Library ------- +- 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 #8086: In :func:`ssl.DER_cert_to_PEM_cert()`, fix missing newline before the certificate footer. Patch by Kyle VanderBeek. |