[issue28095] test_startup_imports of test_site fails on OS X due to new import of enum in re

2017-07-28 Thread Ned Deily
Ned Deily added the comment: The changes for bpo-29585 to speed up startup removed the import of _osx_support, and of re, from site.py so the disabled test does not fail in 3.7 and is now re-enabled. It's not appropriate to try to backport the startup speedup changes to 3.6, so the disabled

[issue28095] test_startup_imports of test_site fails on OS X due to new import of enum in re

2017-07-28 Thread Ned Deily
Ned Deily added the comment: New changeset c22bd58d933efaec26d1f77f263b2845473b7e15 by Ned Deily in branch 'master': bpo-28095: Re-enable temporarily disabled part of test_startup_imports on macOS (#2927) https://github.com/python/cpython/commit/c22bd58d933efaec26d1f77f263b2845473b7e15

[issue28095] test_startup_imports of test_site fails on OS X due to new import of enum in re

2017-07-28 Thread Ned Deily
Changes by Ned Deily : -- pull_requests: +2978 ___ Python tracker ___ ___ Python-bugs-list

[issue28095] test_startup_imports of test_site fails on OS X due to new import of enum in re

2016-09-11 Thread Ned Deily
Changes by Ned Deily : -- dependencies: +_osx_support imports many modules ___ Python tracker ___

[issue28095] test_startup_imports of test_site fails on OS X due to new import of enum in re

2016-09-11 Thread Roundup Robot
Roundup Robot added the comment: New changeset 9f0016055820 by Ned Deily in branch 'default': Issue #28095: Temporarily disable part of test_startup_imports on OS X. https://hg.python.org/cpython/rev/9f0016055820 -- nosy: +python-dev ___ Python

[issue28095] test_startup_imports of test_site fails on OS X due to new import of enum in re

2016-09-11 Thread Ned Deily
New submission from Ned Deily: Issue28082, for 3.6.0b1, modified the re module to use enum.IntFlag. As described in Issue19325, on interpreter startup site.py imports sysconfig which, on OS X, imports _osx_support which imports, among other things, re. Now that re imports enum, a number of