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: URLOpener => URLopener x2 in fix_urllib.py
Type: behavior Stage: needs patch
Components: 2to3 (2.x to 3.x conversion tool) Versions: Python 3.1, Python 3.2, Python 2.7
process
Status: closed Resolution: fixed
Dependencies: Superseder:
Assigned To: Nosy List: benjamin.peterson, georg.brandl, terry.reedy
Priority: normal Keywords: easy

Created on 2010-11-01 20:28 by terry.reedy, last changed 2022-04-11 14:57 by admin. This issue is now closed.

Messages (2)
msg120165 - (view) Author: Terry J. Reedy (terry.reedy) * (Python committer) Date: 2010-11-01 20:28
Lib/lib2to3/fixes/fix_urllib.py, near the top, has
'''
MAPPING = {'urllib':  [
                ('urllib.request',
                    ['URLOpener', 'FancyURLOpener', 'urlretrieve',
'''
'Opener' should by 'opener' in BOTH cases.

Non-fix of URLopener reported on python-list by Chris McDonald.
msg120383 - (view) Author: Georg Brandl (georg.brandl) * (Python committer) Date: 2010-11-04 08:35
Fixed in r86157.
History
Date User Action Args
2022-04-11 14:57:08adminsetgithub: 54495
2010-11-04 08:35:50georg.brandlsetstatus: open -> closed

nosy: + georg.brandl
messages: + msg120383

resolution: fixed
2010-11-01 20:28:53terry.reedycreate