summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorKa-Ping Yee <ping@zesty.ca>2008-03-17 20:35:15 (GMT)
committerKa-Ping Yee <ping@zesty.ca>2008-03-17 20:35:15 (GMT)
commitddaa7064ee81c48adc4fdea327892c29179f7845 (patch)
treee51842456cd053a08607b590f7a8303068be56bd /Misc
parente84b6336db4a2521de91aa916676bdf494aa8205 (diff)
downloadcpython-ddaa7064ee81c48adc4fdea327892c29179f7845.zip
cpython-ddaa7064ee81c48adc4fdea327892c29179f7845.tar.gz
cpython-ddaa7064ee81c48adc4fdea327892c29179f7845.tar.bz2
Patch from jbalogh fixes issue #2282 (misnamed seekable() method).
Diffstat (limited to 'Misc')
-rw-r--r--Misc/ACKS1
-rw-r--r--Misc/NEWS2
2 files changed, 3 insertions, 0 deletions
diff --git a/Misc/ACKS b/Misc/ACKS
index 0c431c0..1ae773f 100644
--- a/Misc/ACKS
+++ b/Misc/ACKS
@@ -33,6 +33,7 @@ Dwayne Bailey
Stig Bakken
Greg Ball
Luigi Ballabio
+Jeff Balogh
Michael J. Barber
Chris Barker
Quentin Barnes
diff --git a/Misc/NEWS b/Misc/NEWS
index b654516..1665256 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -30,6 +30,8 @@ What's New in Python 3.0a3?
Core and Builtins
-----------------
+- Issue #2282: io.TextIOWrapper was not overriding seekable() from io.IOBase.
+
- Issue #2115: Important speedup in setting __slot__ attributes. Also
prevent a possible crash: an Abstract Base Class would try to access a slot
on a registered virtual subclass.