From: R David Murray Date: Wed, 21 Mar 2012 18:55:04 +0000 (-0400) Subject: Merge #12757: Make doctest skipping in -OO mode work with unittest/regrtest -v X-Git-Tag: v3.3.0a2~97^2 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=1da08e77dff8ba59c87e8f0473a00f7df21a806f;p=python Merge #12757: Make doctest skipping in -OO mode work with unittest/regrtest -v --- 1da08e77dff8ba59c87e8f0473a00f7df21a806f diff --cc Misc/NEWS index 17716b5258,606898f6d2..09ff26a6d5 --- a/Misc/NEWS +++ b/Misc/NEWS @@@ -30,10 -28,9 +30,13 @@@ Core and Builtin Library ------- + - Issue #12757: Fix the skipping of doctests when python is run with -OO so + that it works in unittest's verbose mode as well as non-verbose mode. + +- Issue #7652: Integrate the decimal floating point libmpdec library to speed + up the decimal module. Performance gains of the new C implementation are + between 12x and 80x, depending on the application. + - Issue #3573: IDLE hangs when passing invalid command line args (directory(ies) instead of file(s)) (Patch by Guilherme Polo)