[issue38080] 2to3 urllib fixer: missing fix for urllib.getproxies

2020-03-11 Thread Pablo Galindo Salgado
Change by Pablo Galindo Salgado : -- resolution: -> fixed stage: patch review -> resolved status: open -> closed versions: +Python 3.9 -Python 2.7, Python 3.5, Python 3.6, Python 3.7 ___ Python tracker _

[issue38080] 2to3 urllib fixer: missing fix for urllib.getproxies

2020-03-11 Thread Pablo Galindo Salgado
Pablo Galindo Salgado added the comment: New changeset 276a84a0a6c694ce227bf36ec2e2e6ec6686170f by José Roberto Meza Cabrera in branch 'master': bpo-38080: Added "getproxies" to urllib fixes in the 2to3 tool (GH-16167) https://github.com/python/cpython/commit/276a84a0a6c694ce227bf36ec2e2e6ec66

[issue38080] 2to3 urllib fixer: missing fix for urllib.getproxies

2019-09-15 Thread Roberto Meza
Change by Roberto Meza : -- keywords: +patch nosy: +robertpro nosy_count: 1.0 -> 2.0 pull_requests: +15776 stage: -> patch review pull_request: https://github.com/python/cpython/pull/16167 ___ Python tracker ___

[issue38080] 2to3 urllib fixer: missing fix for urllib.getproxies

2019-09-09 Thread 徐靖
New submission from 徐靖 : urllib.getproxies can be converted to urllib.request.getproxies, and their documentation looks the same. but in fix_urllib.py and my real test, it is ignored. I do not know why 2to3 does nothing. Is it a bug? -- components: 2to3 (2.x to 3.x conversion tool) mes