Re: [Python-Dev] RE 25939 - _ssl.enum_certificates broken on Windows

2016-02-18 Thread Paul Moore
On 17 February 2016 at 23:26, Dave Hirschfeld wrote: > I've run into issue 25939 (https://bugs.python.org/issue25939) when trying > to deploy a python webapp with IIS on Windows. This issue is preventing us > from deploying the app to production as the workaround AFAICT requires > running the app

Re: [Python-Dev] Disabling changing sys.argv[0] with runpy.run_module(...alter_sys=True)

2016-02-18 Thread Mike Kaplinskiy
Done: http://bugs.python.org/issue26388 On Wed, Feb 17, 2016 at 10:44 AM, Brett Cannon wrote: > > > On Tue, 16 Feb 2016 at 20:59 Mike Kaplinskiy > wrote: > >> Hey folks, >> >> I hope this is the right list for this sort of thing (python-ideas seemed >> more far-fetched). >> >> For some context:

Re: [Python-Dev] RE 25939 - _ssl.enum_certificates broken on Windows

2016-02-18 Thread Dave Hirschfeld
Paul Moore gmail.com> writes: > > On 17 February 2016 at 23:26, Dave Hirschfeld gmail.com> wrote: > > I've run into issue 25939 (https://bugs.python.org/issue25939) when trying > > to deploy a python webapp with IIS on Windows. This issue is preventing us > > from deploying the app to produc

Re: [Python-Dev] RE 25939 - _ssl.enum_certificates broken on Windows

2016-02-18 Thread Steve Dower
I think the test is blocked on my question of whether we are allowed to rely on ctypes in the test suite. If so, it's fine as I recall. Fairly sure it's a Windows-specific test anyway, so ctypes can basically be assumed for all Windows platforms we currently care about. Top-posted from my Wind

Re: [Python-Dev] RE 25939 - _ssl.enum_certificates broken on Windows

2016-02-18 Thread Eric V. Smith
There are already many tests that require ctypes. See for example test_uuid.py. -- Eric. > On Feb 18, 2016, at 7:18 PM, Steve Dower wrote: > > I think the test is blocked on my question of whether we are allowed to rely > on ctypes in the test suite. > > If so, it's fine as I recall. Fairly