diff options
author | Antoine Pitrou <solipsis@pitrou.net> | 2009-03-13 23:42:55 (GMT) |
---|---|---|
committer | Antoine Pitrou <solipsis@pitrou.net> | 2009-03-13 23:42:55 (GMT) |
commit | a28fcfdbdaa082a8d3849d7dc829f89cd7f868a8 (patch) | |
tree | 8f442d68459df06ab7d77f9db01365b2e2ae56e0 /Misc | |
parent | 0ae29cf6176d3f80c1845cf23716a708acbe598b (diff) | |
download | cpython-a28fcfdbdaa082a8d3849d7dc829f89cd7f868a8.zip cpython-a28fcfdbdaa082a8d3849d7dc829f89cd7f868a8.tar.gz cpython-a28fcfdbdaa082a8d3849d7dc829f89cd7f868a8.tar.bz2 |
Issue #5016: FileIO.seekable() could return False if the file position
was negative when truncated to a C int. Patch by Victor Stinner.
Diffstat (limited to 'Misc')
-rw-r--r-- | Misc/NEWS | 3 |
1 files changed, 3 insertions, 0 deletions
@@ -21,6 +21,9 @@ Library - The error detection code in FileIO.close() could fail to reflect the `errno` value, and report it as -1 instead. +- Issue #5016: FileIO.seekable() could return False if the file position + was negative when truncated to a C int. Patch by Victor Stinner. + What's New in Python 3.1 alpha 1 ================================ |