From: Benjamin Peterson Date: Thu, 19 Mar 2015 02:35:38 +0000 (-0500) Subject: wrap properly X-Git-Tag: v2.7.10rc1~119 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=6a74a51b28979e71e8ae7d79e7cb06d49e67ac07;p=thirdparty%2FPython%2Fcpython.git wrap properly --- diff --git a/Lib/_pyio.py b/Lib/_pyio.py index 1c194d5544b2..98091eb47b63 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):