From: Christian Heimes Date: Thu, 30 Oct 2008 21:22:55 +0000 (+0000) Subject: Issue #4237: io.FileIO() was raising invalid warnings caused by insufficient initiali... X-Git-Tag: v3.0rc2~32 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=fec925b315efbf8a6a15251b65910266f5e20c8a;p=python Issue #4237: io.FileIO() was raising invalid warnings caused by insufficient initialization of PyFileIOObject struct members. --- diff --git a/Misc/NEWS b/Misc/NEWS index a557b52df7..841d6d6343 100644 --- a/Misc/NEWS +++ b/Misc/NEWS @@ -15,6 +15,9 @@ What's New in Python 3.0 beta 5 Core and Builtins ----------------- +- Issue #4237: io.FileIO() was raising invalid warnings caused by + insufficient initialization of PyFileIOObject struct members. + - Issue #4170: Pickling a collections.defaultdict object would crash the interpreter.