[issue29687] smtplib does not support proxy

2021-03-17 Thread Ryan Hiebert
Change by Ryan Hiebert : -- nosy: +ryanhiebert ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue29533] urllib2 works slowly with proxy on windows

2021-03-05 Thread Eryk Sun
Change by Eryk Sun : -- versions: +Python 3.10, Python 3.8, Python 3.9 -Python 2.7, Python 3.6 ___ Python tracker ___ ___

[issue42627] urllib.request.getproxies() misparses Windows registry proxy settings

2021-03-05 Thread 狂男风
狂男风 added the comment: I make some black box tests with the HTTPS proxy. Set system proxy `http=https://host:port` and start a HTTPS proxy, then IE, Edge (Chromium) and benrg's code (using `urllib3`) work fine while fetching `http://website`. Then I shutdown the HTTPS proxy and start a HTTP

[issue42627] urllib.request.getproxies() misparses Windows registry proxy settings

2021-03-04 Thread 狂男风
狂男风 added the comment: We know Windows reslove: `http=host:port;https=host:port;ftp=host:port;socks=host:port` as: `http=http://host:port;https=http://host:port;ftp=http://host:port;socks=socks://host:port` means: Using HTTP type proxy for HTTP, HTTPS and FTP requests, but Socks4/4a type

[issue42627] urllib.request.getproxies() misparses Windows registry proxy settings

2021-03-04 Thread 狂男风
Change by 狂男风 : -- nosy: +CrazyBoyFeng ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue42627] urllib.request.getproxies() misparses Windows registry proxy settings

2021-02-28 Thread NateScarlet
Change by NateScarlet : -- nosy: +NateScarlet ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue42627] urllib.request.getproxies() misparses Windows registry proxy settings

2021-02-23 Thread Dong-hee Na
Change by Dong-hee Na : -- nosy: +corona10 ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue42627] urllib.request.getproxies() misparses Windows registry proxy settings

2021-02-22 Thread 双草酸酯
Change by 双草酸酯 : -- components: +Library (Lib) ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue42627] urllib.request.getproxies() misparses Windows registry proxy settings

2021-02-22 Thread 双草酸酯
Change by 双草酸酯 : -- components: +Windows -Library (Lib) ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue42627] urllib.request.getproxies() misparses Windows registry proxy settings

2021-02-21 Thread 双草酸酯
://docs.microsoft.com/en-US/troubleshoot/windows-client/networking/configure-client-proxy-server-settings-by-registry-file Also from this documentation, a proxy server could have "http://; prefix, so I guess it could also support "https://; prefix if a user set a https proxy. -- components:

[issue43074] Unable to use system proxy with HTTPS connection on Windows

2021-02-02 Thread 双草酸酯
双草酸酯 added the comment: Oh sorry I forgot requests is a third party library. -- resolution: -> third party stage: -> resolved status: open -> closed ___ Python tracker ___

[issue43074] Unable to use system proxy with HTTPS connection on Windows

2021-02-01 Thread Steve Dower
Steve Dower added the comment: requests is a third-party library that has no obligation to use urllib's functionality. If you can show the same behaviour with urllib alone, we can treat it as an issue here. Otherwise, you'll need to report it to requests. --

[issue43074] Unable to use system proxy with HTTPS connection on Windows

2021-01-29 Thread 双草酸酯
New submission from 双草酸酯 : On Windows you can only set a "host:port" http proxy as system proxy. ``` PS > Get-ItemProperty -Path 'HKCU:\Software\Microsoft\Windows\CurrentVersion\Internet Settings' | findstr ProxyServer ProxyServer : 127.0.0.1:7890 ``` But in Pytho

[issue23328] urllib.request fails for proxy credentials that contain a '/' character

2020-12-29 Thread Senthil Kumaran
Senthil Kumaran added the comment: Merged in 3.10 - https://github.com/python/cpython/commit/030a713183084594659aefd77b76fe30178e23c8 3.9 - https://github.com/python/cpython/commit/df794406a8803e3d6062af8404d7564833f9af28 3.8 -

[issue23328] urllib.request fails for proxy credentials that contain a '/' character

2020-12-29 Thread Senthil Kumaran
Change by Senthil Kumaran : -- versions: +Python 3.8, Python 3.9 ___ Python tracker ___ ___ Python-bugs-list mailing list

[issue23328] urllib.request fails for proxy credentials that contain a '/' character

2020-12-29 Thread miss-islington
Change by miss-islington : -- pull_requests: +22835 pull_request: https://github.com/python/cpython/pull/23993 ___ Python tracker ___

[issue23328] urllib.request fails for proxy credentials that contain a '/' character

2020-12-29 Thread miss-islington
Change by miss-islington : -- nosy: +miss-islington nosy_count: 5.0 -> 6.0 pull_requests: +22834 pull_request: https://github.com/python/cpython/pull/23992 ___ Python tracker

[issue23328] urllib.request fails for proxy credentials that contain a '/' character

2020-12-27 Thread Senthil Kumaran
Senthil Kumaran added the comment: https://github.com/python/cpython/pull/23973 will resolve this issue. The issue was localized to _parse_proxy method in urllib2. -- ___ Python tracker

[issue23328] urllib.request fails for proxy credentials that contain a '/' character

2020-12-27 Thread Senthil Kumaran
Change by Senthil Kumaran : -- keywords: +patch pull_requests: +22818 stage: needs patch -> patch review pull_request: https://github.com/python/cpython/pull/23973 ___ Python tracker

[issue23328] urllib.request fails for proxy credentials that contain a '/' character

2020-12-23 Thread Senthil Kumaran
Change by Senthil Kumaran : -- title: urllib2 fails for proxy credentials that contain a '/' character -> urllib.request fails for proxy credentials that contain a '/' character versions: +Python 3.10 -Python 2.7 ___ Python tracker <

[issue42627] urllib.request.getproxies() misparses Windows registry proxy settings

2020-12-12 Thread benrg
support for HTTPS-in-HTTPS proxies in version 1.26. Before that, an `https` prefix on the HTTPS proxy url was silently treated as `http`, accidentally resulting in the correct behavior. There are additional bugs in the treatment of single-proxy strings (the case when the string contains

[issue42154] Bad proxy returned immediately after BaseManager server restarted

2020-10-26 Thread john ryan
the_q def main() -> None: """main for a process serving queues forever""" mgr = QueueManager(address=('localhost', 5), authkey=b'abracadabra' ) QueueManager.register('get_queue', callable=mgr.get_queue) server_object = mgr.get_server() print('starting') se

[issue30256] Adding a SyncManager Queue proxy to a SyncManager dict or Namespace proxy raises an exception

2020-09-08 Thread Martijn Pieters
Martijn Pieters added the comment: Might it be better to just *drop* the AutoProxy object altogether? All that it adds is a delayed call to MakeProxyType(f"AutoProxy[{typeid}]", exposed) (with exposed defaulting to public_methods(instance)), per instance per process. It could be replaced

[issue7291] urllib2 cannot handle https with proxy requiring auth

2020-08-02 Thread Alexey Namyotkin
cannot be handled. And perhaps this is an obstacle to building a convenient system of authentication on a proxy server in a widely used library requests (it would be nice to be able to just provide an argument proxy_auth, similar to how it is done for server authorization). Now, if a user wants

[issue41360] method _tunnel does not allow for a standard proxy authentication solution

2020-07-30 Thread Вадим Новиков
Change by Вадим Новиков : -- nosy: +Вадим Новиков ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue7291] urllib2 cannot handle https with proxy requiring auth

2020-07-29 Thread Jessica Ridgley
Change by Jessica Ridgley : -- nosy: +Jessica Ridgley versions: +Python 3.10, Python 3.8, Python 3.9 ___ Python tracker ___ ___

[issue7291] urllib2 cannot handle https with proxy requiring auth

2020-07-29 Thread Alexey Namyotkin
Change by Alexey Namyotkin : -- nosy: +alexey.namyotkin ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue41360] method _tunnel does not allow for a standard proxy authentication solution

2020-07-21 Thread Ilia Androshchuk
Change by Ilia Androshchuk : -- nosy: +an7e ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue41360] method _tunnel does not allow for a standard proxy authentication solution

2020-07-21 Thread Alexey
procedure on the proxy server using methods similar to those used for authentication on servers (using hooks). And at the moment proxy authentication (Kerberos, Digest, NTLM - all other than Basic) is not supported by the urllib3 and accordingly requests, pip and many others. As a result, a large

[issue40523] Weakref proxy missing pass throughs for hash() and reversed()

2020-05-05 Thread Pablo Galindo Salgado
Change by Pablo Galindo Salgado : -- resolution: -> fixed stage: patch review -> resolved status: open -> closed ___ Python tracker ___

[issue40523] Weakref proxy missing pass throughs for hash() and reversed()

2020-05-05 Thread Pablo Galindo Salgado
Pablo Galindo Salgado added the comment: New changeset 96074de573f82fc66a2bd73c36905141a3f1d5c1 by Pablo Galindo in branch 'master': bpo-40523: Add pass-throughs for hash() and reversed() to weakref.proxy objects (GH-19946)

[issue40523] Weakref proxy missing pass throughs for hash() and reversed()

2020-05-05 Thread Pablo Galindo Salgado
Change by Pablo Galindo Salgado : -- keywords: +patch nosy: +pablogsal nosy_count: 1.0 -> 2.0 pull_requests: +19261 stage: -> patch review pull_request: https://github.com/python/cpython/pull/19946 ___ Python tracker

[issue40523] Weakref proxy missing pass throughs for hash() and reversed()

2020-05-05 Thread Raymond Hettinger
New submission from Raymond Hettinger : from weakref import proxy class Alpha: def __len__(self): return 3 def __reversed__(self): return iter('cba') def __hash__(self): return hash('abc') a = Alpha() # Direct use of the instance works print(len(a)) print

[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:

[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

[issue30256] Adding a SyncManager Queue proxy to a SyncManager dict or Namespace proxy raises an exception

2020-02-03 Thread Philipp Rehs
Change by Philipp Rehs : -- type: -> behavior ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue30256] Adding a SyncManager Queue proxy to a SyncManager dict or Namespace proxy raises an exception

2020-01-30 Thread Philipp Rehs
Philipp Rehs added the comment: Are there any reasons why it does not get merged? This issue is open since more than two years and the fix is quiet small -- nosy: +Philipp Rehs versions: +Python 3.8 ___ Python tracker

Re: Speeding up a test process with a local pypi and/or web proxy?

2019-11-19 Thread Dan Stromberg
to look at is setting up a local pypi, and > building some of the packages that're compiled from C/C++ every time we do > a full test run. (We're using docker and building dependencies for each > full test run) > > Also, we could conceivably set up a web proxy...? > > D

Speeding up a test process with a local pypi and/or web proxy?

2019-11-15 Thread Dan Stromberg
++ every time we do a full test run. (We're using docker and building dependencies for each full test run) Also, we could conceivably set up a web proxy...? Does having a local pypi obviate the web proxy? And what local pypi servers do folks recommend for speed? We need support mostly for CPython 3.x

[issue30256] Adding a SyncManager Queue proxy to a SyncManager dict or Namespace proxy raises an exception

2019-09-23 Thread finefoot
Change by finefoot : -- pull_requests: +15918 pull_request: https://github.com/python/cpython/pull/16341 ___ Python tracker ___ ___

[issue30256] Adding a SyncManager Queue proxy to a SyncManager dict or Namespace proxy raises an exception

2019-09-21 Thread Michael Tippie
Michael Tippie added the comment: I am getting this error now, too. I'm not sure what's causing it - when I use multiprocessing with a Manager.Queue, if I am passing around an object on the queue stack, I get this error. Would really like it to "just work". -- nosy: +Locane

[issue25068] The proxy key's string should ignore case.

2019-09-13 Thread miss-islington
miss-islington added the comment: New changeset 590ed09a5b422d59cc1f049c64ac30733545eef0 by Miss Islington (bot) in branch '3.8': bpo-25068: urllib.request.ProxyHandler now lowercases the dict keys (GH-13489) https://github.com/python/cpython/commit/590ed09a5b422d59cc1f049c64ac30733545eef0

[issue25068] The proxy key's string should ignore case.

2019-09-13 Thread Stéphane Wirtel
Stéphane Wirtel added the comment: Thank you for your contribution, your PR has been merged into master but not in 3.8. -- resolution: -> fixed stage: patch review -> resolved status: open -> closed ___ Python tracker

[issue25068] The proxy key's string should ignore case.

2019-09-13 Thread miss-islington
Change by miss-islington : -- pull_requests: +15725 pull_request: https://github.com/python/cpython/pull/16107 ___ Python tracker ___

[issue25068] The proxy key's string should ignore case.

2019-09-13 Thread Stéphane Wirtel
Stéphane Wirtel added the comment: New changeset b761e3aed1fbada4572a776f6a0d3c4be491d595 by Stéphane Wirtel (Zackery Spytz) in branch 'master': bpo-25068: urllib.request.ProxyHandler now lowercases the dict keys (GH-13489)

[issue37900] [urllib] proxy_bypass_registry doesn't handle invalid proxy override values

2019-08-20 Thread Kevin Wojniak
messages: 350038 nosy: kwojniak_box, paul.moore, steve.dower, tim.golden, zach.ware priority: normal severity: normal status: open title: [urllib] proxy_bypass_registry doesn't handle invalid proxy override values type: crash versions: Python 2.7, Python 3.7

[issue30256] Adding a SyncManager Queue proxy to a SyncManager dict or Namespace proxy raises an exception

2019-06-23 Thread finefoot
finefoot added the comment: This is still an issue: https://stackoverflow.com/questions/56716470/python-multiprocessing-nested-shared-objects-doesnt-work-with-queue Is there a specific reason, why https://github.com/python/cpython/pull/4819 doesn't get reviewed? -- nosy: +finefoot

[issue37027] Return a safe proxy over a socket from get_extra_info('socket')

2019-05-27 Thread miss-islington
miss-islington added the comment: New changeset 8cd5165ba05ff57cfdbbc71c393bddad1ce1ab87 by Miss Islington (bot) (Yury Selivanov) in branch 'master': bpo-37027: Return a proxy socket object from transp.get_extra_info('socket') (GH-13530) https://github.com/python/cpython/commit

[issue37027] Return a safe proxy over a socket from get_extra_info('socket')

2019-05-27 Thread Andrew Svetlov
Change by Andrew Svetlov : -- resolution: -> fixed stage: patch review -> resolved status: open -> closed ___ Python tracker ___

[issue37027] Return a safe proxy over a socket from get_extra_info('socket')

2019-05-23 Thread Yury Selivanov
Change by Yury Selivanov : -- keywords: +patch pull_requests: +13444 stage: -> patch review ___ Python tracker ___ ___

[issue37027] Return a safe proxy over a socket from get_extra_info('socket')

2019-05-23 Thread Yury Selivanov
Change by Yury Selivanov : -- components: +asyncio nosy: +asvetlov versions: +Python 3.8 ___ Python tracker ___ ___

[issue37027] Return a safe proxy over a socket from get_extra_info('socket')

2019-05-23 Thread Yury Selivanov
: open title: Return a safe proxy over a socket from get_extra_info('socket') ___ Python tracker <https://bugs.python.org/issue37027> ___ ___ Python-bugs-list mailing list Unsub

[issue25068] The proxy key's string should ignore case.

2019-05-22 Thread Zackery Spytz
Change by Zackery Spytz : -- nosy: +ZackerySpytz versions: +Python 3.8 -Python 3.6 ___ Python tracker ___ ___ Python-bugs-list

[issue25068] The proxy key's string should ignore case.

2019-05-22 Thread Zackery Spytz
Change by Zackery Spytz : -- keywords: +patch pull_requests: +13405 stage: needs patch -> patch review ___ Python tracker ___ ___

[issue30790] Can't use proxy to connect internet on windows

2019-05-21 Thread Cheryl Sabella
New submission from Cheryl Sabella : Please provide an example showing a scenario where this change would be needed. Also, a test case needs to be added to the pull request that would fail without the change and pass with the change. Thanks! -- nosy: +cheryl.sabella resolution:

[issue36930] Windows proxy settings automatically used ... partly

2019-05-16 Thread Immo Wetzel
Immo Wetzel added the comment: issue is only on urllib2 and requests (external lib) ticket opened: https://github.com/kennethreitz/requests/issues/5095 -- stage: test needed -> resolved status: open -> closed ___ Python tracker

[issue36930] Windows proxy settings automatically used ... partly

2019-05-16 Thread Immo Wetzel
Immo Wetzel added the comment: thanks for pointing this out. I've retested urllib3 with success. requests with no success. so I'll write a new issue on requests. Thanks a lot -- ___ Python tracker

[issue36930] Windows proxy settings automatically used ... partly

2019-05-16 Thread Steve Dower
Steve Dower added the comment: requests is a third-party library, so if they're finding your settings you probably need to report it to them. urllib2 is only part of Python 2.x. Do you have a repro with urllib on Python 3? -- ___ Python tracker

[issue36930] Windows proxy settings automatically used ... partly

2019-05-16 Thread Immo Wetzel
Immo Wetzel added the comment: >Can you clarify how you are setting your proxy configuration and how >Python >is finding out about it? The windows host get his proxy configuration via group police from the Active Directory. The group policy points to a specific file wpad.dat forme

[issue36930] Windows proxy settings automatically used ... partly

2019-05-16 Thread Steve Dower
Steve Dower added the comment: Can you clarify how you are setting your proxy configuration and how Python is finding out about it? Also, which libraries are you using? As far as I'm aware, Python itself does nothing special to load proxy settings from normal Windows configuration. Doing

[issue36930] Windows proxy settings automatically used ... partly

2019-05-16 Thread SilentGhost
Change by SilentGhost : -- versions: +Python 3.8 ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue36930] Windows proxy settings automatically used ... partly

2019-05-16 Thread SilentGhost
SilentGhost added the comment: Immo, please be careful when editing the fields. You've set the values that were explicitly removed by the developer. Library is fine. -- assignee: terry.reedy -> components: -IDLE, IO nosy: +SilentGhost, orsenthil -terry.reedy type: -> behavior

[issue36930] Windows proxy settings automatically used ... partly

2019-05-16 Thread Immo Wetzel
Immo Wetzel added the comment: ok where should I place this . IO or Library ? If this is not a bug I really have to do some soul-searching -- assignee: -> terry.reedy components: +IDLE nosy: +terry.reedy versions: +Python 3.6 -Python 3.8 ___

[issue36930] Windows proxy settings automatically used ... partly

2019-05-15 Thread Terry J. Reedy
Terry J. Reedy added the comment: As far as I can see, this issue has nothing to do with IDLE as such. Someone else should decide if this is a bug report or an enhancement request. -- assignee: terry.reedy -> components: -IDLE stage: -> test needed versions: +Python 3.8 -Python

[issue36930] Windows proxy settings automatically used ... partly

2019-05-15 Thread Terry J. Reedy
Change by Terry J. Reedy : -- nosy: -terry.reedy ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue36930] Windows proxy settings automatically used ... partly

2019-05-15 Thread Immo Wetzel
New submission from Immo Wetzel : I do run python 2.7/3.7 on a windows 7 host. This host is AD managed. As part of the group policy the internet settings are set to automatically proxy configuration. The configuration works. cos IE and Chrome can reach external and internal hosts. Some

[issue34038] urllib2.urlopen fails if http_proxy(s) is set to a sock5 proxy

2019-05-04 Thread Daniel Wallace
2, in _call_chain result = func(*args) File "/Users/dwallace/workspace/cpython/Lib/urllib/request.py", line 804, in meth(r, proxy, type)) File "/Users/dwallace/workspace/cpython/Lib/urllib/request.py", line 832, in proxy_open return self.parent.open(req, tim

[issue9643] urllib2 - Basic, Digest Proxy Auth Handlers failure will give 401 code instead of 407

2019-04-27 Thread Karthikeyan Singaravelan
improve test case since changing the hard coded status code from 401 to 407 doesn't seem to cause any failure. https://tools.ietf.org/html/rfc7235#section-3.2 3.2. 407 Proxy Authentication Required The 407 (Proxy Authentication Required) status code is similar to 401 (Unauthorized

[issue9643] urllib2 - Basic, Digest Proxy Auth Handlers failure will give 401 code instead of 407

2019-04-27 Thread Mark Lawrence
Change by Mark Lawrence : -- nosy: -BreamoreBoy ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue12480] urllib2 doesn't use proxy (fieddler2), configed the proxy with ProxyHandler

2019-04-27 Thread Mark Lawrence
Change by Mark Lawrence : -- nosy: -BreamoreBoy ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue36669] weakref proxy doesn't support the matrix multiplication operator

2019-04-26 Thread Mark Dickinson
Mark Dickinson added the comment: Now fixed for 3.8. Although this was an oversight, I'm erring on the side of regarding this as a new feature for 3.8 (and I think the omission is unlikely to bite anyone for Python 3.7 or 3.6), so I wouldn't recommend backporting this. Thanks for the

[issue36669] weakref proxy doesn't support the matrix multiplication operator

2019-04-26 Thread Mark Dickinson
Mark Dickinson added the comment: New changeset 7abb6c05afd02c17c7a941b64db5756b161b3cf7 by Mark Dickinson in branch 'master': bpo-36669: add matmul support to weakref.proxy (GH-12932) https://github.com/python/cpython/commit/7abb6c05afd02c17c7a941b64db5756b161b3cf7 --

[issue36669] weakref proxy doesn't support the matrix multiplication operator

2019-04-24 Thread Nathaniel Smith
Nathaniel Smith added the comment: Yeah, seems like a simple oversight to me. (Actually this is the first I've heard of weakref.proxy...) -- ___ Python tracker ___

[issue36669] weakref proxy doesn't support the matrix multiplication operator

2019-04-24 Thread Mark Dickinson
Change by Mark Dickinson : -- assignee: -> mark.dickinson ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue36669] weakref proxy doesn't support the matrix multiplication operator

2019-04-24 Thread Mark Dickinson
Mark Dickinson added the comment: Adding Nathaniel Smith (the matrix multiplication PEP author), just in case he knows some reason why weakref.proxy objects should _not_ support the matrix multiplication operator. -- nosy: +njs ___ Python tracker

[issue36669] weakref proxy doesn't support the matrix multiplication operator

2019-04-24 Thread Mark Dickinson
Change by Mark Dickinson : -- keywords: +patch pull_requests: +12857 stage: -> patch review ___ Python tracker ___ ___

[issue36669] weakref proxy doesn't support the matrix multiplication operator

2019-04-24 Thread Mark Dickinson
Mark Dickinson added the comment: > It's not obvious why it should. I'd say that it's not obvious why it shouldn't. The "weakproxy" type currently supports every single "PyNumberMethods" slot *except* matrix multiplication: see

[issue36669] weakref proxy doesn't support the matrix multiplication operator

2019-04-20 Thread SilentGhost
Change by SilentGhost : -- status: open -> pending ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue36669] weakref proxy doesn't support the matrix multiplication operator

2019-04-19 Thread SilentGhost
New submission from SilentGhost : It's not obvious why it should. Do you care to show a use case you had in mind? -- components: +Library (Lib) nosy: +SilentGhost, fdrake type: -> enhancement versions: +Python 3.8 ___ Python tracker

[issue36669] weakref proxy doesn't support the matrix multiplication operator

2019-04-19 Thread Dan Snider
Change by Dan Snider : -- nosy: bup priority: normal severity: normal status: open title: weakref proxy doesn't support the matrix multiplication operator ___ Python tracker <https://bugs.python.org/issue36

[issue11511] Proposal for exposing proxy bypass settings in ProxyHandler

2019-03-15 Thread Mark Lawrence
Change by Mark Lawrence : -- nosy: -BreamoreBoy ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue19547] HTTPS proxy support missing without warning

2019-03-15 Thread Mark Lawrence
Change by Mark Lawrence : -- nosy: -BreamoreBoy ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue16095] urllib2 failing with squid proxy and digest authentication

2019-03-15 Thread Mark Lawrence
Change by Mark Lawrence : -- nosy: -BreamoreBoy ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe:

Re: Help, Can't find the default proxy in requests by config

2019-02-21 Thread Evi1 T1me
n send > timeout=timeout > File "/usr/local/lib/python3.7/site-packages/urllib3/connectionpool.py", > line 638, in urlopen > _stacktrace=sys.exc_info()[2]) > File "/usr/local/lib/python3.7/site-packages/urllib3/util/retry.py", line > 398, in incre

Help, Can't find the default proxy in requests by config

2019-02-21 Thread Evi1 T1me
se MaxRetryError(_pool, url, error or ResponseError(cause)) urllib3.exceptions.MaxRetryError: HTTPSConnectionPool(host='www.baidu.com', port=443): Max retries exceeded with url: / (Caused by ProxyError('Cannot connect to proxy.', NewConnectionError(': Failed to establish a new connection: [Errno

[issue31704] HTTP check lowercase response from proxy

2018-09-11 Thread Benjamin Peterson
Benjamin Peterson added the comment: The spec, https://tools.ietf.org/html/rfc7230#section-2.6, is quite clear that the HTTP version is case sensitive. In practice, not every client is lax. Firefox does a case-insensitive comparison, but libcurl requires uppercase. That makes me think we

[issue34505] urllib2 fails for proxy credentials that contains a '/' character

2018-09-03 Thread Karthikeyan Singaravelan
Karthikeyan Singaravelan added the comment: Can you please add some more detail on the problem and maybe a small script explaining what you expect and what the current output is? Clicking on the pinterest link gives no details. Thanks -- nosy: +xtreak

[issue34505] urllib2 fails for proxy credentials that contains a '/' character

2018-09-02 Thread Xiang Zhang
Change by Xiang Zhang : -- type: crash -> behavior ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue34505] urllib2 fails for proxy credentials that contains a '/' character

2018-08-25 Thread Balibax
New submission from Balibax : How can solve thishttps://www.pinterest.com/CoreTricks/;>? -- components: Build messages: 324111 nosy: Balibax5445 priority: normal severity: normal status: open title: urllib2 fails for proxy credentials that contains a '/' character type: cr

[issue17518] urllib2 cannnot handle https and BasicAuth via Proxy.

2018-07-11 Thread Mark Lawrence
Change by Mark Lawrence : -- nosy: -BreamoreBoy ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue17518] urllib2 cannnot handle https and BasicAuth via Proxy.

2018-07-11 Thread Serhiy Storchaka
Change by Serhiy Storchaka : -- type: crash -> behavior ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue34038] urllib2.urlopen fails if http_proxy(s) is set to a sock5 proxy

2018-07-03 Thread T L
everity: normal status: open title: urllib2.urlopen fails if http_proxy(s) is set to a sock5 proxy type: behavior versions: Python 2.7 ___ Python tracker <https://bugs.python.org/issue34038> ___ ___

[issue30256] Adding a SyncManager Queue proxy to a SyncManager dict or Namespace proxy raises an exception

2018-07-02 Thread Xiang Zhang
Change by Xiang Zhang : -- nosy: +davin, pitrou, xiang.zhang ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue33088] Cannot pass a SyncManager proxy to a multiprocessing subprocess on Windows

2018-03-16 Thread Ned Deily
Change by Ned Deily : -- nosy: +davin, pitrou ___ Python tracker ___ ___ Python-bugs-list

[issue33088] Cannot pass a SyncManager proxy to a multiprocessing subprocess on Windows

2018-03-16 Thread Jeff DuMonthier
components: Windows messages: 313964 nosy: jjdmon, paul.moore, steve.dower, tim.golden, zach.ware priority: normal severity: normal status: open title: Cannot pass a SyncManager proxy to a multiprocessing subprocess on Windows type: behavior versions: Python 3.6 _

Re: How to reset system proxy using pyhton code

2018-02-19 Thread Thomas Jollans
On 2018-02-19 09:57, Sum J wrote: > Hi, > > I am using below python code (Python 2.7) to reset the proxy of my Ubuntu > (Cent OS 6) system, but I am unable to reset the proxy: I'm sure you know this, but CentOS and Ubuntu are two different things. > > Code : > impor

How to reset system proxy using pyhton code

2018-02-19 Thread Sum J
Hi, I am using below python code (Python 2.7) to reset the proxy of my Ubuntu (Cent OS 6) system, but I am unable to reset the proxy: Code : import os print "Unsetting http..." os.system("unset http_proxy") os.system("echo $http_proxy")

[issue30256] Adding a SyncManager Queue proxy to a SyncManager dict or Namespace proxy raises an exception

2018-02-04 Thread Hrvoje Nikšić
Hrvoje Nikšić added the comment: The issue is also present in Python 3.7.0b1. -- versions: +Python 3.7 ___ Python tracker ___

<    1   2   3   4   5   6   7   8   9   10   >