diff options
author | Brett Cannon <bcannon@gmail.com> | 2007-04-08 04:29:32 (GMT) |
---|---|---|
committer | Brett Cannon <bcannon@gmail.com> | 2007-04-08 04:29:32 (GMT) |
commit | 55a1864832a02725b339a9ae98dd6849251c623b (patch) | |
tree | 23cd003e8a130572a8081a75e124542fa12a22af /Misc | |
parent | bf618564279a872e046d6540a560acce86503acb (diff) | |
download | cpython-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/NEWS | 3 |
1 files changed, 3 insertions, 0 deletions
@@ -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. |