From: Tim Peters Date: Wed, 22 Mar 2006 03:23:21 +0000 (+0000) Subject: Whitespace normalization. X-Git-Tag: v2.5a0~139 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=0ae07bdb59756d54f058d403b149696763feee64;p=thirdparty%2FPython%2Fcpython.git Whitespace normalization. --- diff --git a/Lib/socket.py b/Lib/socket.py index 7e49192b4186..73b477dccd9b 100644 --- a/Lib/socket.py +++ b/Lib/socket.py @@ -182,7 +182,7 @@ class _socketobject(object): Return a regular file object corresponding to the socket. The mode and bufsize arguments are as for the built-in open() function.""" return _fileobject(self._sock, mode, bufsize) - + family = property(lambda self: self._sock.family, doc="the socket family") type = property(lambda self: self._sock.type, doc="the socket type") proto = property(lambda self: self._sock.proto, doc="the socket protocol")