diff options
author | Tim Peters <tim.peters@gmail.com> | 2005-08-26 15:20:46 (GMT) |
---|---|---|
committer | Tim Peters <tim.peters@gmail.com> | 2005-08-26 15:20:46 (GMT) |
commit | 9e34c047325651853a95f95e538582a4f6d5b7f6 (patch) | |
tree | 97ba789e8889e26e3fd5bd729d01d5e8e2c15d70 /Lib/urllib2.py | |
parent | e8889c5741b636aa798757eb5500d304b1704344 (diff) | |
download | cpython-9e34c047325651853a95f95e538582a4f6d5b7f6.zip cpython-9e34c047325651853a95f95e538582a4f6d5b7f6.tar.gz cpython-9e34c047325651853a95f95e538582a4f6d5b7f6.tar.bz2 |
Whitespace normalization (via reindent.py).
Diffstat (limited to 'Lib/urllib2.py')
-rw-r--r-- | Lib/urllib2.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Lib/urllib2.py b/Lib/urllib2.py index 84b4bb3..015fdb5 100644 --- a/Lib/urllib2.py +++ b/Lib/urllib2.py @@ -1069,7 +1069,7 @@ def parse_keqv_list(l): def parse_http_list(s): """Parse lists as described by RFC 2068 Section 2. - + In particular, parse comma-separated lists where the elements of the list may include quoted-strings. A quoted-string could contain a comma. A non-quoted string could have quotes in the @@ -1101,7 +1101,7 @@ def parse_http_list(s): if cur == '"': quote = True - + part += cur # append last part |