[Python-checkins] r43055 - python/trunk/Misc/NEWS

walter.doerwald python-checkins at python.org
Wed Mar 15 23:17:29 CET 2006


Author: walter.doerwald
Date: Wed Mar 15 23:17:27 2006
New Revision: 43055

Modified:
   python/trunk/Misc/NEWS
Log:
Document the other change from patch #1359365.


Modified: python/trunk/Misc/NEWS
==============================================================================
--- python/trunk/Misc/NEWS	(original)
+++ python/trunk/Misc/NEWS	Wed Mar 15 23:17:27 2006
@@ -449,8 +449,10 @@
   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.
 


More information about the Python-checkins mailing list