This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

classification
Title: urllib FancyURLopener.__init__ / urlopen
Type: Stage:
Components: Library (Lib) Versions: Python 2.3
process
Status: closed Resolution: fixed
Dependencies: Superseder:
Assigned To: fdrake Nosy List: fdrake, gvanrossum, nnorwitz
Priority: normal Keywords:

Created on 2002-06-06 16:54 by nnorwitz, last changed 2022-04-10 16:05 by admin. This issue is now closed.

Messages (3)
msg11071 - (view) Author: Neal Norwitz (nnorwitz) * (Python committer) Date: 2002-06-06 16:54
Fred, you changed line 69 in urllib.py to call
FancyURLopener()
with kwargs, but the constructor (line 538) doesn't
accept **kwargs.
msg11072 - (view) Author: Guido van Rossum (gvanrossum) * (Python committer) Date: 2002-06-10 19:28
Logged In: YES 
user_id=6380

Neal, the fix is to add support for kwargs in
FancyURLOpener.__init__, and to pass it on? You can check
this in yourself.
msg11073 - (view) Author: Neal Norwitz (nnorwitz) * (Python committer) Date: 2002-06-11 13:42
Logged In: YES 
user_id=33168

No problem, checked in as urllib.py 1.148.
History
Date User Action Args
2022-04-10 16:05:23adminsetgithub: 36704
2002-06-06 16:54:13nnorwitzcreate