[Python-checkins] cpython (2.7): Minor doc fix in urlparse.rst

senthil.kumaran python-checkins at python.org
Tue Oct 1 07:12:58 CEST 2013


http://hg.python.org/cpython/rev/70850d6a16ee
changeset:   85906:70850d6a16ee
branch:      2.7
user:        Senthil Kumaran <senthil at uthcode.com>
date:        Mon Sep 30 22:10:44 2013 -0700
summary:
  Minor doc fix in urlparse.rst

files:
  Doc/library/urlparse.rst |  2 +-
  1 files changed, 1 insertions(+), 1 deletions(-)


diff --git a/Doc/library/urlparse.rst b/Doc/library/urlparse.rst
--- a/Doc/library/urlparse.rst
+++ b/Doc/library/urlparse.rst
@@ -72,7 +72,7 @@
        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='',

-- 
Repository URL: http://hg.python.org/cpython


More information about the Python-checkins mailing list