[issue37931] crash reimporting posix after Py_Finalize on mac

2020-10-18 Thread STINNER Victor
STINNER Victor added the comment: Right, I close the issue. -- resolution: -> fixed stage: patch review -> resolved status: open -> closed ___ Python tracker ___

[issue37931] crash reimporting posix after Py_Finalize on mac

2020-10-16 Thread Irit Katriel
Irit Katriel added the comment: Can this be closed? -- nosy: +iritkatriel ___ Python tracker ___ ___ Python-bugs-list mailing list

[issue37931] crash reimporting posix after Py_Finalize on mac

2019-12-06 Thread miss-islington
miss-islington added the comment: New changeset 836cf31a3cf468ed9598a220b8e194b366287bfe by Miss Islington (bot) in branch '3.8': bpo-37931: Fix crash on OSX re-initializing os.environ (GH-15428) https://github.com/python/cpython/commit/836cf31a3cf468ed9598a220b8e194b366287bfe --

[issue37931] crash reimporting posix after Py_Finalize on mac

2019-12-06 Thread STINNER Victor
STINNER Victor added the comment: New changeset 723f71abf7ab0a7be394f9f7b2daa9ecdf6fb1eb by Victor Stinner (Benoit Hudson) in branch 'master': bpo-37931: Fix crash on OSX re-initializing os.environ (GH-15428) https://github.com/python/cpython/commit/723f71abf7ab0a7be394f9f7b2daa9ecdf6fb1eb

[issue37931] crash reimporting posix after Py_Finalize on mac

2019-12-06 Thread miss-islington
Change by miss-islington : -- pull_requests: +16967 pull_request: https://github.com/python/cpython/pull/17488 ___ Python tracker ___

[issue37931] crash reimporting posix after Py_Finalize on mac

2019-10-10 Thread Benoit Hudson
Benoit Hudson added the comment: Ping! The patch has been ready for review for over a month. If the patch can be backported to 2.7.x before that gets end-of-lifed it would be ideal. -- versions: +Python 2.7 ___ Python tracker

[issue37931] crash reimporting posix after Py_Finalize on mac

2019-08-23 Thread Benoit Hudson
Change by Benoit Hudson : -- keywords: +patch pull_requests: +15125 stage: -> patch review pull_request: https://github.com/python/cpython/pull/15428 ___ Python tracker ___

[issue37931] crash reimporting posix after Py_Finalize on mac

2019-08-23 Thread Benoit Hudson
New submission from Benoit Hudson : On OSX, with --enable-shared, if you shut down python and reinitialize, you can get a crash. Repro steps: see attached crashy.c gcc -I. -I ../Include/ -L. crashy.c -lpython3.9 ./a.out On OSX, with --enable-shared, you get a crash! On other platforms