Patch from jbalogh fixes issue #2282 (misnamed seekable() method).
diff --git a/Misc/ACKS b/Misc/ACKS
index 0c431c0..1ae773f 100644
--- a/Misc/ACKS
+++ b/Misc/ACKS
@@ -33,6 +33,7 @@
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 @@
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.