summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorBrett Cannon <bcannon@gmail.com>2007-04-08 04:29:32 (GMT)
committerBrett Cannon <bcannon@gmail.com>2007-04-08 04:29:32 (GMT)
commit55a1864832a02725b339a9ae98dd6849251c623b (patch)
tree23cd003e8a130572a8081a75e124542fa12a22af /Misc
parentbf618564279a872e046d6540a560acce86503acb (diff)
downloadcpython-55a1864832a02725b339a9ae98dd6849251c623b.zip
cpython-55a1864832a02725b339a9ae98dd6849251c623b.tar.gz
cpython-55a1864832a02725b339a9ae98dd6849251c623b.tar.bz2
Doc that file.next() has undefined behaviour when called on a file opened with
'w'. Closes bug #1569057. To be backported once 2.5 branch is unfrozen.
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS3
1 files changed, 3 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index 12d4413..d15f673 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -736,6 +736,9 @@ Tools
Documentation
-------------
+- Bug #1569057: Document that calling file.next() when the file is open for
+ writing is undefined.
+
- Patch #1489771: the syntax rules in Python Reference Manual were
updated to reflect the current Python syntax.