[Python-checkins] cpython (3.3): Minor doc fix in urllib.parse.rst

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


http://hg.python.org/cpython/rev/0e204fbb0b08
changeset:   85907:0e204fbb0b08
branch:      3.3
parent:      85893:6b89176f1be5
user:        Senthil Kumaran <senthil at uthcode.com>
date:        Mon Sep 30 22:12:16 2013 -0700
summary:
  Minor doc fix in urllib.parse.rst

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


diff --git a/Doc/library/urllib.parse.rst b/Doc/library/urllib.parse.rst
--- a/Doc/library/urllib.parse.rst
+++ b/Doc/library/urllib.parse.rst
@@ -70,7 +70,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