[Python-checkins] cpython: Fix dangling whitespace

antoine.pitrou python-checkins at python.org
Tue Dec 6 22:39:54 CET 2011


http://hg.python.org/cpython/rev/daaacc0ec584
changeset:   73876:daaacc0ec584
user:        Antoine Pitrou <solipsis at pitrou.net>
date:        Tue Dec 06 22:34:36 2011 +0100
summary:
  Fix dangling whitespace

files:
  Lib/http/client.py |  2 +-
  1 files changed, 1 insertions(+), 1 deletions(-)


diff --git a/Lib/http/client.py b/Lib/http/client.py
--- a/Lib/http/client.py
+++ b/Lib/http/client.py
@@ -599,7 +599,7 @@
                         break
                 except ValueError:
                     raise IncompleteRead(bytes(b[0:total_bytes]))
-                    
+
             if len(mvb) < chunk_left:
                 n = self._safe_readinto(mvb)
                 self.chunk_left = chunk_left - n

-- 
Repository URL: http://hg.python.org/cpython


More information about the Python-checkins mailing list