[Python-checkins] cpython (2.7): wrap properly
benjamin.peterson
python-checkins at python.org
Thu Mar 19 03:36:45 CET 2015
https://hg.python.org/cpython/rev/7b2f34b424cb
changeset: 95058:7b2f34b424cb
branch: 2.7
parent: 95024:730bbd1499ba
user: Benjamin Peterson <benjamin at python.org>
date: Wed Mar 18 21:35:38 2015 -0500
summary:
wrap properly
files:
Lib/_pyio.py | 4 ++--
1 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/Lib/_pyio.py b/Lib/_pyio.py
--- a/Lib/_pyio.py
+++ b/Lib/_pyio.py
@@ -25,8 +25,8 @@
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):
--
Repository URL: https://hg.python.org/cpython
More information about the Python-checkins
mailing list