summaryrefslogtreecommitdiff
path: root/Lib/urlparse.py
diff options
context:
space:
mode:
authorGuido van Rossum <guido@python.org>1998-01-19 22:27:21 +0000
committerGuido van Rossum <guido@python.org>1998-01-19 22:27:21 +0000
commitf7edadbc584be04d92b867bbbdee09fd4eea3dee (patch)
tree644b0f1ec562ddc97956a56b7ef6b29ead5de31a /Lib/urlparse.py
parente7579624ef2997783f5f5354b3fcf8b0ceccabd2 (diff)
downloadcpython-git-f7edadbc584be04d92b867bbbdee09fd4eea3dee.tar.gz
Add Gopher to list of protocols that support query strings.
Diffstat (limited to 'Lib/urlparse.py')
-rw-r--r--Lib/urlparse.py1
1 files changed, 1 insertions, 0 deletions
diff --git a/Lib/urlparse.py b/Lib/urlparse.py
index 560028df94..185eb7fd6e 100644
--- a/Lib/urlparse.py
+++ b/Lib/urlparse.py
@@ -20,6 +20,7 @@ uses_params = ['ftp', 'hdl', 'prospero', 'http',
'']
uses_query = ['http', 'wais',
'https', 'shttp',
+ 'gopher',
'']
uses_fragment = ['ftp', 'hdl', 'http', 'gopher', 'news', 'nntp', 'wais',
'https', 'shttp', 'snews',