diff options
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() |