[issue35233] _PyMainInterpreterConfig_Copy() doesn't copy install_signal_handlers

2018-11-19 Thread STINNER Victor
STINNER Victor added the comment: New changeset 0e1312c959dcfd0193ed0c7ab3fd45d440da6d78 by Victor Stinner in branch '3.7': bpo-35233: test_embed: fix filesystem encoding (GH-10597) https://github.com/python/cpython/commit/0e1312c959dcfd0193ed0c7ab3fd45d440da6d78 --

[issue35233] _PyMainInterpreterConfig_Copy() doesn't copy install_signal_handlers

2018-11-19 Thread STINNER Victor
Change by STINNER Victor : -- pull_requests: +9842 ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue35233] _PyMainInterpreterConfig_Copy() doesn't copy install_signal_handlers

2018-11-14 Thread STINNER Victor
STINNER Victor added the comment: New changeset 9ee1d42f019ac827f73479ce241e95733d050e67 by Victor Stinner in branch '3.7': bpo-35233: InitConfigTests tests more config vars (GH-10541) (GH-10546) https://github.com/python/cpython/commit/9ee1d42f019ac827f73479ce241e95733d050e67 --

[issue35233] _PyMainInterpreterConfig_Copy() doesn't copy install_signal_handlers

2018-11-14 Thread STINNER Victor
Change by STINNER Victor : -- pull_requests: +9794 ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue35233] _PyMainInterpreterConfig_Copy() doesn't copy install_signal_handlers

2018-11-14 Thread STINNER Victor
STINNER Victor added the comment: New changeset 01de89cb59107d4f889aa503a1c0350dae4aebaf by Victor Stinner in branch 'master': bpo-35233: InitConfigTests tests more config vars (GH-10541) https://github.com/python/cpython/commit/01de89cb59107d4f889aa503a1c0350dae4aebaf --

[issue35233] _PyMainInterpreterConfig_Copy() doesn't copy install_signal_handlers

2018-11-14 Thread STINNER Victor
Change by STINNER Victor : -- pull_requests: +9791 ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue35233] _PyMainInterpreterConfig_Copy() doesn't copy install_signal_handlers

2018-11-14 Thread STINNER Victor
STINNER Victor added the comment: New changeset bc09ee8bc9c0ce4873cdaab6ca524a3ee3a36be1 by Victor Stinner in branch '3.7': bpo-35233: Fix test_embed.InitConfigTests on macOS (GH-10539) https://github.com/python/cpython/commit/bc09ee8bc9c0ce4873cdaab6ca524a3ee3a36be1 --

[issue35233] _PyMainInterpreterConfig_Copy() doesn't copy install_signal_handlers

2018-11-14 Thread STINNER Victor
Change by STINNER Victor : -- pull_requests: +9790 ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue35233] _PyMainInterpreterConfig_Copy() doesn't copy install_signal_handlers

2018-11-13 Thread STINNER Victor
Change by STINNER Victor : -- resolution: -> fixed stage: patch review -> resolved status: open -> closed ___ Python tracker ___

[issue35233] _PyMainInterpreterConfig_Copy() doesn't copy install_signal_handlers

2018-11-13 Thread STINNER Victor
STINNER Victor added the comment: New changeset 88cbea4c6ff4987ce31f4fe6f73c2d04a3d37829 by Victor Stinner in branch '3.7': bpo-35233: Fix _PyMainInterpreterConfig_Copy() (GH-10537) https://github.com/python/cpython/commit/88cbea4c6ff4987ce31f4fe6f73c2d04a3d37829 --

[issue35233] _PyMainInterpreterConfig_Copy() doesn't copy install_signal_handlers

2018-11-13 Thread STINNER Victor
Change by STINNER Victor : -- pull_requests: +9788 ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue35233] _PyMainInterpreterConfig_Copy() doesn't copy install_signal_handlers

2018-11-13 Thread STINNER Victor
STINNER Victor added the comment: New changeset 35c28d562ec7249f2a6aef8e326eadac130a1656 by Victor Stinner in branch '3.7': [3.7] bpo-35233: Rewrite test_embed.InitConfigTests (GH-10524) (GH-10529) https://github.com/python/cpython/commit/35c28d562ec7249f2a6aef8e326eadac130a1656 --

[issue35233] _PyMainInterpreterConfig_Copy() doesn't copy install_signal_handlers

2018-11-13 Thread STINNER Victor
Change by STINNER Victor : -- pull_requests: +9785 ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue35233] _PyMainInterpreterConfig_Copy() doesn't copy install_signal_handlers

2018-11-13 Thread STINNER Victor
STINNER Victor added the comment: New changeset 7ddd56f4d835c6107b20a0b4233185bb59270142 by Victor Stinner in branch 'master': bpo-35233: Rewrite test_embed.InitConfigTests (GH-10524) https://github.com/python/cpython/commit/7ddd56f4d835c6107b20a0b4233185bb59270142 --

[issue35233] _PyMainInterpreterConfig_Copy() doesn't copy install_signal_handlers

2018-11-13 Thread STINNER Victor
Change by STINNER Victor : -- pull_requests: +9784 ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue35233] _PyMainInterpreterConfig_Copy() doesn't copy install_signal_handlers

2018-11-13 Thread STINNER Victor
STINNER Victor added the comment: New changeset 00b137c72f90fbc39a6cd7e48b37c58d19977180 by Victor Stinner in branch 'master': bpo-35233: Fix _PyMainInterpreterConfig_Copy() (GH-10519) https://github.com/python/cpython/commit/00b137c72f90fbc39a6cd7e48b37c58d19977180 --

[issue35233] _PyMainInterpreterConfig_Copy() doesn't copy install_signal_handlers

2018-11-13 Thread STINNER Victor
Change by STINNER Victor : -- keywords: +patch pull_requests: +9778 stage: -> patch review ___ Python tracker ___ ___

[issue35233] _PyMainInterpreterConfig_Copy() doesn't copy install_signal_handlers

2018-11-13 Thread STINNER Victor
New submission from STINNER Victor : _PyMainInterpreterConfig_Copy() doesn't copy the install_signal_handlers attribute and so config->install_signal_handlers is always -1. Bug spotted by Francis Hart: https://github.com/python/cpython/pull/10516 Attached PR fix the issue. --