From 3d6575dfc85cd11473aa93a8219ac010a823919a Mon Sep 17 00:00:00 2001 From: Georg Brandl Date: Wed, 16 Sep 2009 14:36:22 +0000 Subject: Use true booleans. --- Lib/urllib/parse.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Lib/urllib/parse.py b/Lib/urllib/parse.py index 726e85f..a27b975 100644 --- a/Lib/urllib/parse.py +++ b/Lib/urllib/parse.py @@ -329,7 +329,7 @@ def unquote(string, encoding='utf-8', errors='replace'): res[-1] = b''.join(pct_sequence).decode(encoding, errors) return ''.join(res) -def parse_qs(qs, keep_blank_values=0, strict_parsing=0): +def parse_qs(qs, keep_blank_values=False, strict_parsing=False): """Parse a query given as a string argument. Arguments: @@ -355,7 +355,7 @@ def parse_qs(qs, keep_blank_values=0, strict_parsing=0): dict[name] = [value] return dict -def parse_qsl(qs, keep_blank_values=0, strict_parsing=0): +def parse_qsl(qs, keep_blank_values=False, strict_parsing=False): """Parse a query given as a string argument. Arguments: @@ -509,7 +509,7 @@ def quote_from_bytes(bs, safe='/'): _safe_quoters[cachekey] = quoter return ''.join([quoter[char] for char in bs]) -def urlencode(query, doseq=0): +def urlencode(query, doseq=False): """Encode a sequence of two-element tuples or dictionary into a URL query string. If any values in the query arg are sequences and doseq is true, each -- cgit v0.12