Correct an error in the description of the function buildurl
This commit is contained in:
parent
40279a744f
commit
21a7ab33cb
1 changed files with 2 additions and 2 deletions
|
|
@ -427,9 +427,9 @@ class BaseBrowser(mechanize.Browser):
|
||||||
a dict in **kwargs (but the order is lost).
|
a dict in **kwargs (but the order is lost).
|
||||||
|
|
||||||
Example:
|
Example:
|
||||||
>>> buildurl('/blah.php', ('a', '&'), ('c', '=')
|
>>> buildurl('/blah.php', ('a', '&'), ('b', '=')
|
||||||
'/blah.php?a=%26&b=%3D'
|
'/blah.php?a=%26&b=%3D'
|
||||||
>>> buildurl('/blah.php', a='&', 'c'='=')
|
>>> buildurl('/blah.php', a='&', 'b'='=')
|
||||||
'/blah.php?b=%3D&a=%26'
|
'/blah.php?b=%3D&a=%26'
|
||||||
|
|
||||||
"""
|
"""
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue