summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorAntoine Pitrou <solipsis@pitrou.net>2009-03-13 23:42:55 (GMT)
committerAntoine Pitrou <solipsis@pitrou.net>2009-03-13 23:42:55 (GMT)
commita28fcfdbdaa082a8d3849d7dc829f89cd7f868a8 (patch)
tree8f442d68459df06ab7d77f9db01365b2e2ae56e0 /Misc
parent0ae29cf6176d3f80c1845cf23716a708acbe598b (diff)
downloadcpython-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/NEWS3
1 files changed, 3 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index 21b4a9b..d1b1463 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -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
================================