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)
commit6a74a51b28979e71e8ae7d79e7cb06d49e67ac07 (patch)
tree934eafc1a2af9bdca7d52ced3131affbef07c127 /Lib/_pyio.py
parent9e52735d22a431d5c043a0c6eae13e9ae73c372f (diff)
downloadcpython-6a74a51b28979e71e8ae7d79e7cb06d49e67ac07.zip
cpython-6a74a51b28979e71e8ae7d79e7cb06d49e67ac07.tar.gz
cpython-6a74a51b28979e71e8ae7d79e7cb06d49e67ac07.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 1c194d5..98091eb 100644
--- a/Lib/_pyio.py
+++ b/Lib/_pyio.py
@@ -25,8 +25,8 @@ __metaclass__ = type
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.
class BlockingIOError(IOError):