]> 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 577b6003b5978a311f467cc1b384f78a9682293e..09aa78decd2e0b309d73299192d4b9dd067e8fb3 100644 (file)
@@ -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