[Python-checkins] cpython (3.4): wrap properly

benjamin.peterson python-checkins at python.org
Thu Mar 19 03:36:45 CET 2015


https://hg.python.org/cpython/rev/21e783129c1d
changeset:   95057:21e783129c1d
branch:      3.4
parent:      95055:5dd7b5fb65e7
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
@@ -24,8 +24,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.
 
 # Rebind for compatibility
 BlockingIOError = BlockingIOError

-- 
Repository URL: https://hg.python.org/cpython


More information about the Python-checkins mailing list