From: Walter Dörwald <walter@livinglogic.de>
Date: Wed, 15 Mar 2006 22:17:27 +0000 (+0000)
Subject: Document the other change from patch #1359365.
X-Git-Tag: v2.5a0~230
X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=067db4899702039743639612745416f534a143de;p=python

Document the other change from patch #1359365.
---

diff --git a/Misc/NEWS b/Misc/NEWS
index 820ae4a481..9d2ceee8c5 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -449,8 +449,10 @@ Library
   codecs.getincrementaldecoder() and codecs.getincrementalencoder() have
   been added.
 
-- SF patch #1359365: cStringIO.StringIO.isatty() will raise a ValueError
-  now if close() has been called before (like file and StringIO.StringIO do)
+- Patch #1359365: Calling next() on a closed StringIO.String object raises
+  a ValueError instead of a StopIteration now (like file and cString.String do).
+  cStringIO.StringIO.isatty() will raise a ValueError now if close() has been
+  called before (like file and StringIO.StringIO do).
 
 - A regrtest option -w was added to re-run failed tests in verbose mode.