]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
wrap properly
authorBenjamin Peterson <benjamin@python.org>
Thu, 19 Mar 2015 02:35:38 +0000 (21:35 -0500)
committerBenjamin Peterson <benjamin@python.org>
Thu, 19 Mar 2015 02:35:38 +0000 (21:35 -0500)
Lib/_pyio.py

index 1c194d5544b2c2ec8a676e84653950a93cce08b2..98091eb47b63e2f63fa5ada90b7d1ab20043761d 100644 (file)
@@ -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):