diff options
author | Tim Peters <tim.peters@gmail.com> | 2001-02-09 20:06:00 (GMT) |
---|---|---|
committer | Tim Peters <tim.peters@gmail.com> | 2001-02-09 20:06:00 (GMT) |
commit | 658cba6706eb4a2ad8b3e235cf0db9fe1c8e9e6b (patch) | |
tree | 059882637147ef0acaf1a61141d076d2b05d5166 /Lib/urllib.py | |
parent | 3c61c3525f4cf23acae95c5229abd10fe0998d28 (diff) | |
download | cpython-658cba6706eb4a2ad8b3e235cf0db9fe1c8e9e6b.zip cpython-658cba6706eb4a2ad8b3e235cf0db9fe1c8e9e6b.tar.gz cpython-658cba6706eb4a2ad8b3e235cf0db9fe1c8e9e6b.tar.bz2 |
Whitespace normalization.
Diffstat (limited to 'Lib/urllib.py')
-rw-r--r-- | Lib/urllib.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/urllib.py b/Lib/urllib.py index a410e71..c5d85fc 100644 --- a/Lib/urllib.py +++ b/Lib/urllib.py @@ -1103,7 +1103,7 @@ def urlencode(query,doseq=0): parameters in the output will match the order of parameters in the input. """ - + if hasattr(query,"items"): # mapping objects query = query.items() |