[issue39826] logging HTTPHandler does not support proxy

2020-03-04 Thread Vinay Sajip
Change by Vinay Sajip : -- resolution: -> fixed stage: patch review -> resolved status: open -> closed versions: +Python 3.9 ___ Python tracker ___ ___

[issue39826] logging HTTPHandler does not support proxy

2020-03-04 Thread Vinay Sajip
Vinay Sajip added the comment: New changeset 22a9a546ff3bf2a63d77ca1e5494e758bc59132f by l0rb in branch 'master': bpo-39826: add getConnection() hook to logging HTTPHandler (GH-18745) https://github.com/python/cpython/commit/22a9a546ff3bf2a63d77ca1e5494e758bc59132f -- nosy: +vinay.s

[issue39826] logging HTTPHandler does not support proxy

2020-03-02 Thread lorb
Change by lorb : -- keywords: +patch pull_requests: +18099 stage: -> patch review pull_request: https://github.com/python/cpython/pull/18745 ___ Python tracker ___ ___

[issue39826] logging HTTPHandler does not support proxy

2020-03-02 Thread lorb
New submission from lorb : The HTTPHandler does not support using a proxy. It would be necessary to subclass it and reimplement `emit` to enable passing in proxy settings. Adding a hook to make it easy to customize the connection used would solve this. -- components: Library (Lib) mess