From fec925b315efbf8a6a15251b65910266f5e20c8a Mon Sep 17 00:00:00 2001 From: Christian Heimes Date: Thu, 30 Oct 2008 21:22:55 +0000 Subject: [PATCH] Issue #4237: io.FileIO() was raising invalid warnings caused by insufficient initialization of PyFileIOObject struct members. --- Misc/NEWS | 3 +++ 1 file changed, 3 insertions(+) diff --git a/Misc/NEWS b/Misc/NEWS index a557b52df73..841d6d63435 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.