summaryrefslogtreecommitdiffstats
path: root/Lib/_pyio.py
diff options
context:
space:
mode:
authorBenjamin Peterson <benjamin@python.org>2015-03-19 02:35:38 (GMT)
committerBenjamin Peterson <benjamin@python.org>2015-03-19 02:35:38 (GMT)
commit86fdbf3152f2c19c483da5cce4b4d74539d1407b (patch)
tree46e7b74c376fd192007c126ae792e289530058bc /Lib/_pyio.py
parent482fe0477e5923f0b8fff16c59052650cf7247cf (diff)
downloadcpython-86fdbf3152f2c19c483da5cce4b4d74539d1407b.zip
cpython-86fdbf3152f2c19c483da5cce4b4d74539d1407b.tar.gz
cpython-86fdbf3152f2c19c483da5cce4b4d74539d1407b.tar.bz2
wrap properly
Diffstat (limited to 'Lib/_pyio.py')
-rw-r--r--Lib/_pyio.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/Lib/_pyio.py b/Lib/_pyio.py
index 577b600..09aa78d 100644
--- a/Lib/_pyio.py
+++ b/Lib/_pyio.py
@@ -24,8 +24,8 @@ if hasattr(os, 'SEEK_HOLE') :
DEFAULT_BUFFER_SIZE = 8 * 1024 # bytes
# NOTE: Base classes defined here are registered with the "official" ABCs
-# defined in io.py. We don't use real inheritance though, because we don't
-# want to inherit the C implementations.
+# defined in io.py. We don't use real inheritance though, because we don't want
+# to inherit the C implementations.
# Rebind for compatibility
BlockingIOError = BlockingIOError