[issue32588] Move _findvs into its own extension module

2018-01-18 Thread Steve Dower
Change by Steve Dower : -- resolution: -> fixed stage: patch review -> resolved status: open -> closed ___ Python tracker ___ ___ Py

[issue32588] Move _findvs into its own extension module

2018-01-18 Thread Steve Dower
Steve Dower added the comment: New changeset ccf7f05c5d3fdea89d857e775d2c6371f3e15b4a by Steve Dower in branch '3.6': [3.6] bpo-32588 Move _distutils_findvs into its own module (GH-5227) (#5228) https://github.com/python/cpython/commit/ccf7f05c5d3fdea89d857e775d2c6371f3e15b4a -- ___

[issue32588] Move _findvs into its own extension module

2018-01-18 Thread Steve Dower
Steve Dower added the comment: New changeset 2507e29a9e4e9dcac6eab46546bd3d34a69342ba by Steve Dower in branch 'master': bpo-32588: Move _findvs into its own module and add missing _queue module to installer (#5227) https://github.com/python/cpython/commit/2507e29a9e4e9dcac6eab46546bd3d34a693

[issue32588] Move _findvs into its own extension module

2018-01-17 Thread Steve Dower
Change by Steve Dower : -- pull_requests: +5075 ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://mail.p

[issue32588] Move _findvs into its own extension module

2018-01-17 Thread Steve Dower
Change by Steve Dower : -- keywords: +patch pull_requests: +5074 stage: needs patch -> patch review ___ Python tracker ___ ___ Python

[issue32588] Move _findvs into its own extension module

2018-01-17 Thread Steve Dower
Change by Steve Dower : -- assignee: -> steve.dower ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://m

[issue32588] Move _findvs into its own extension module

2018-01-17 Thread Steve Dower
Steve Dower added the comment: Actually, I'd prefer not dropping it into the Lib directory, so probably DLLs/_distutils_findvs.pyd is the way to go. -- ___ Python tracker ___

[issue32588] Move _findvs into its own extension module

2018-01-17 Thread Steve Dower
New submission from Steve Dower : The _findvs module I added for distutils has added load-time dependencies on the ole32 and oleaut32 DLLs. To reduce startup time, we should move _findvs into its own .pyd (unless I hear a better suggestion, I like "distutils._findvs.pyd"). -- componen