summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorWalter Dörwald <walter@livinglogic.de>2006-03-15 22:17:27 (GMT)
committerWalter Dörwald <walter@livinglogic.de>2006-03-15 22:17:27 (GMT)
commit067db4899702039743639612745416f534a143de (patch)
tree9993101df5b26cc3a77ed29cca23f39c97f86887 /Misc
parent197e8321c659d8dd22851363bbcebd98092ed2c9 (diff)
downloadcpython-067db4899702039743639612745416f534a143de.zip
cpython-067db4899702039743639612745416f534a143de.tar.gz
cpython-067db4899702039743639612745416f534a143de.tar.bz2
Document the other change from patch #1359365.
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS6
1 files changed, 4 insertions, 2 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index 820ae4a..9d2ceee 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.