From 34f7c4ee806bfbbe4a6fe8bced6b46608cd706b2 Mon Sep 17 00:00:00 2001 From: Senthil Kumaran Date: Mon, 30 Sep 2013 22:10:44 -0700 Subject: [PATCH] Minor doc fix in urlparse.rst --- Doc/library/urlparse.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Doc/library/urlparse.rst b/Doc/library/urlparse.rst index efd112d175..1bc361d8b2 100644 --- a/Doc/library/urlparse.rst +++ b/Doc/library/urlparse.rst @@ -72,7 +72,7 @@ The :mod:`urlparse` module defines the following functions: ParseResult(scheme='', netloc='www.cwi.nl:80', path='/%7Eguido/Python.html', params='', query='', fragment='') >>> urlparse('www.cwi.nl/%7Eguido/Python.html') - ParseResult(scheme='', netloc='', path='www.cwi.nl:80/%7Eguido/Python.html', + ParseResult(scheme='', netloc='', path='www.cwi.nl/%7Eguido/Python.html', params='', query='', fragment='') >>> urlparse('help/Python.html') ParseResult(scheme='', netloc='', path='help/Python.html', params='', -- 2.50.1