mirror of
https://github.com/python/cpython.git
synced 2025-09-27 18:59:43 +00:00
Fix function name: open -> urlopen.
This commit is contained in:
parent
9553ea8a52
commit
f364ce242d
1 changed files with 1 additions and 1 deletions
|
@ -138,7 +138,7 @@ This is done as follows::
|
||||||
name=Somebody+Here&language=Python&location=Northampton
|
name=Somebody+Here&language=Python&location=Northampton
|
||||||
>>> url = 'http://www.example.com/example.cgi'
|
>>> url = 'http://www.example.com/example.cgi'
|
||||||
>>> full_url = url + '?' + url_values
|
>>> full_url = url + '?' + url_values
|
||||||
>>> data = urllib2.open(full_url)
|
>>> data = urllib2.urlopen(full_url)
|
||||||
|
|
||||||
Notice that the full URL is created by adding a ``?`` to the URL, followed by
|
Notice that the full URL is created by adding a ``?`` to the URL, followed by
|
||||||
the encoded values.
|
the encoded values.
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue