Correct an error in the description of the function buildurl

This commit is contained in:
Johann Broudin 2011-02-07 13:21:20 +01:00 committed by Romain Bignon
commit 21a7ab33cb

View file

@ -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'
""" """