diff options
author | Antoine Pitrou <solipsis@pitrou.net> | 2011-10-04 10:26:20 (GMT) |
---|---|---|
committer | Antoine Pitrou <solipsis@pitrou.net> | 2011-10-04 10:26:20 (GMT) |
commit | 1e44fecc52da8fb47ab51a000c48e0ce8f36064c (patch) | |
tree | 402d41816f79d63ccfd1f8d296c0a4e6d3e32b1a /Misc | |
parent | 94190bb6e7f3b1c7942b562fe0fad3e62b5386b9 (diff) | |
download | cpython-1e44fecc52da8fb47ab51a000c48e0ce8f36064c.zip cpython-1e44fecc52da8fb47ab51a000c48e0ce8f36064c.tar.gz cpython-1e44fecc52da8fb47ab51a000c48e0ce8f36064c.tar.bz2 |
Issue #13087: BufferedReader.seek() now always raises UnsupportedOperation
if the underlying raw stream is unseekable, even if the seek could be
satisfied using the internal buffer. Patch by John O'Connor.
Diffstat (limited to 'Misc')
-rw-r--r-- | Misc/NEWS | 4 |
1 files changed, 4 insertions, 0 deletions
@@ -36,6 +36,10 @@ Core and Builtins Library ------- +- Issue #13087: BufferedReader.seek() now always raises UnsupportedOperation + if the underlying raw stream is unseekable, even if the seek could be + satisfied using the internal buffer. Patch by John O'Connor. + - Issue #7689: Allow pickling of dynamically created classes when their metaclass is registered with copyreg. Patch by Nicolas M. ThiƩry and Craig Citro. |