From: Nadeem Vawda Date: Sun, 30 Sep 2012 02:01:31 +0000 (+0200) Subject: Merge #16034: Fix performance regressions in the new BZ2File implementation. X-Git-Tag: v3.4.0a1~2459 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=65c848e48445100261d93ceb0d8b252252768d41;p=thirdparty%2FPython%2Fcpython.git Merge #16034: Fix performance regressions in the new BZ2File implementation. Thanks to Victor Hooi for the bug report, and Serhiy Storchaka for the initial patch. --- 65c848e48445100261d93ceb0d8b252252768d41 diff --cc Misc/NEWS index 04751b710b1a,7bfa6498acaf..0d6afecefe41 --- a/Misc/NEWS +++ b/Misc/NEWS @@@ -15,8 -13,9 +15,11 @@@ Core and Builtin Library ------- + - Issue #16034: Fix performance regressions in the new BZ2File implementation. + Initial patch by Serhiy Storchaka. + +- pty.spawn() now returns the child process status returned by os.waitpid(). + - Issue #15756: subprocess.poll() now properly handles errno.ECHILD to return a returncode of 0 when the child has already exited or cannot be waited on.