diff options
author | Guido van Rossum <guido@python.org> | 1998-01-19 22:27:21 +0000 |
---|---|---|
committer | Guido van Rossum <guido@python.org> | 1998-01-19 22:27:21 +0000 |
commit | f7edadbc584be04d92b867bbbdee09fd4eea3dee (patch) | |
tree | 644b0f1ec562ddc97956a56b7ef6b29ead5de31a /Lib/urlparse.py | |
parent | e7579624ef2997783f5f5354b3fcf8b0ceccabd2 (diff) | |
download | cpython-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.py | 1 |
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', |