Document the other change from patch #1359365.

This commit is contained in:
Walter Dörwald 2006-03-15 22:17:27 +00:00
parent 197e8321c6
commit 067db48997
1 changed files with 4 additions and 2 deletions

View File

@ -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.