Author: jeremy.hylton
Date: Fri Aug 10 20:49:01 2007
New Revision: 56904

Modified:
   python/branches/py3k/Lib/httplib.py
Log:
Style


Modified: python/branches/py3k/Lib/httplib.py
==============================================================================
--- python/branches/py3k/Lib/httplib.py (original)
+++ python/branches/py3k/Lib/httplib.py Fri Aug 10 20:49:01 2007
@@ -894,9 +894,9 @@
         self.putrequest(method, url, **skips)
 
         if body and ('content-length' not in header_names):
-            thelen=None
+            thelen = None
             try:
-                thelen=str(len(body))
+                thelen = str(len(body))
             except TypeError as te:
                 # If this is a file-like object, try to
                 # fstat its file descriptor
_______________________________________________
Python-3000-checkins mailing list
[email protected]
http://mail.python.org/mailman/listinfo/python-3000-checkins

Reply via email to