From: R David Murray Date: Sat, 2 Jan 2016 20:43:44 +0000 (-0500) Subject: Merge: #22709: Use stdin as-is if it does not have a buffer attribute. X-Git-Tag: v3.6.0a1~828 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=01759d55547c4f39d451f4063d51fd309744f3ea;p=thirdparty%2FPython%2Fcpython.git Merge: #22709: Use stdin as-is if it does not have a buffer attribute. --- 01759d55547c4f39d451f4063d51fd309744f3ea diff --cc Misc/NEWS index 1c5d8005c42c,c5261304a3be..83c07f5a2e62 --- a/Misc/NEWS +++ b/Misc/NEWS @@@ -128,21 -41,13 +128,24 @@@ Core and Builtin Library ------- + - Issue #25447: fileinput now uses sys.stdin as-is if it does not have a + buffer attribute (restores backward compatibility). + +- Issue #25971: Optimized creating Fractions from floats by 2 times and from + Decimals by 3 times. + +- Issue #25802: Document as deprecated the remaining implementations of + importlib.abc.Loader.load_module(). + +- Issue #25928: Add Decimal.as_integer_ratio(). + - Issue #25447: Copying the lru_cache() wrapper object now always works, - independedly from the type of the wrapped object (by returning the original + independently from the type of the wrapped object (by returning the original object unchanged). +- Issue #25768: Have the functions in compileall return booleans instead of + ints and add proper documentation and tests for the return values. + - Issue #24103: Fixed possible use after free in ElementTree.XMLPullParser. - Issue #25860: os.fwalk() no longer skips remaining directories when error