summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorNeal Norwitz <nnorwitz@gmail.com>2002-01-01 19:07:13 (GMT)
committerNeal Norwitz <nnorwitz@gmail.com>2002-01-01 19:07:13 (GMT)
commit649b75954a1880e8a6dc15066a3041bfabac959a (patch)
tree33eb8a29a81dfa31e48ba8966df71cee1de8345f /Misc
parenta6e975801e37bef27deb3207f6fc8f0c59affb46 (diff)
downloadcpython-649b75954a1880e8a6dc15066a3041bfabac959a.zip
cpython-649b75954a1880e8a6dc15066a3041bfabac959a.tar.gz
cpython-649b75954a1880e8a6dc15066a3041bfabac959a.tar.bz2
SF Patch #494863, file.xreadlines() should raise ValueError if file is closed
This makes xreadlines behave like all other file methods (other than close() which just returns).
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS4
1 files changed, 4 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index 8d68533..9ef6912 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -6,6 +6,10 @@ Type/class unification and new-style classes
Core and builtins
+- file.xreadlines() now raises a ValueError if the file is closed:
+ Previously, an xreadlines object was returned which would raise
+ a ValueError when the xreadlines.next() method was called.
+
Extension modules
Library