Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit fe9230a

Browse files
committed
Fix closes issue12261 - Minor documention changes in the urllib.parse.rst
1 parent acde6a0 commit fe9230a

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

Doc/library/urllib.parse.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ The :mod:`urllib.parse` module defines the following functions:
5353
input is presumed to be a relative URL and thus to start with
5454
a path component.
5555

56-
>>> from urlparse import urlparse
56+
>>> from urllib.parse import urlparse
5757
>>> urlparse('//www.cwi.nl:80/%7Eguido/Python.html')
5858
ParseResult(scheme='', netloc='www.cwi.nl:80', path='/%7Eguido/Python.html',
5959
params='', query='', fragment='')
@@ -351,7 +351,7 @@ The :mod:`urllib.parse` module defines the following functions:
351351
.. seealso::
352352

353353
:rfc:`3986` - Uniform Resource Identifiers
354-
This is the current standard (STD66). Any changes to urlparse module
354+
This is the current standard (STD66). Any changes to urllib.parse module
355355
should conform to this. Certain deviations could be observed, which are
356356
mostly for backward compatibility purposes and for certain de-facto
357357
parsing requirements as commonly observed in major browsers.

0 commit comments

Comments
 (0)