]> granicus.if.org Git - python/commit
Sjoerd Mullender writes:
authorGuido van Rossum <guido@python.org>
Tue, 1 Feb 2000 23:36:55 +0000 (23:36 +0000)
committerGuido van Rossum <guido@python.org>
Tue, 1 Feb 2000 23:36:55 +0000 (23:36 +0000)
commit3c8baedaf8c69bd92f06a7de5f16cde19a9beb55
treec1bdd1d37789a0d18167c8c14c17f8e322882473
parenta664dbbff8ad22d0eb4ec48461d3d9a50c5fb693
Sjoerd Mullender writes:

Fixed a TypeError: not enough arguments; expected 4, got 3.
When authentication is needed, the default http_error_401 method calls
retry_http_basic_auth.  The default version of that method expected a
data argument which wasn't provided, so now we provide the argument if
it was given and we also made the data argument optional.

Also changed other calls where data was optional to not pass data if
it was not passed to the calling method (in line with other similar
occurances).
Lib/urllib.py