[Python-checkins] r77597 - in python/branches/py3k: Lib/ssl.py

ezio.melotti python-checkins at python.org
Mon Jan 18 10:15:14 CET 2010


Author: ezio.melotti
Date: Mon Jan 18 10:15:14 2010
New Revision: 77597

Log:
Merged revisions 77595 via svnmerge from 
svn+ssh://pythondev@svn.python.org/python/trunk

........
  r77595 | ezio.melotti | 2010-01-18 11:10:26 +0200 (Mon, 18 Jan 2010) | 1 line
  
  #7730: remove spaces after functions names
........


Modified:
   python/branches/py3k/   (props changed)
   python/branches/py3k/Lib/ssl.py

Modified: python/branches/py3k/Lib/ssl.py
==============================================================================
--- python/branches/py3k/Lib/ssl.py	(original)
+++ python/branches/py3k/Lib/ssl.py	Mon Jan 18 10:15:14 2010
@@ -304,7 +304,7 @@
         self._sslobj = None
         socket.shutdown(self, how)
 
-    def unwrap (self):
+    def unwrap(self):
         if self._sslobj:
             s = self._sslobj.shutdown()
             self._sslobj = None


More information about the Python-checkins mailing list