[Python-checkins] r43211 - python/trunk/Lib/socket.py

tim.peters python-checkins at python.org
Wed Mar 22 04:23:25 CET 2006


Author: tim.peters
Date: Wed Mar 22 04:23:21 2006
New Revision: 43211

Modified:
   python/trunk/Lib/socket.py
Log:
Whitespace normalization.


Modified: python/trunk/Lib/socket.py
==============================================================================
--- python/trunk/Lib/socket.py	(original)
+++ python/trunk/Lib/socket.py	Wed Mar 22 04:23:21 2006
@@ -182,7 +182,7 @@
         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")


More information about the Python-checkins mailing list