[issue36097] Use only public C-API in _xxsubinterpreters module.

2019-03-29 Thread Eric Snow
Change by Eric Snow : -- resolution: -> fixed stage: patch review -> resolved status: open -> closed ___ Python tracker ___ ___

[issue36097] Use only public C-API in _xxsubinterpreters module.

2019-03-15 Thread Eric Snow
Eric Snow added the comment: New changeset c11183cdcff6af13c4339fdcce84ab63f7930ddc by Eric Snow in branch 'master': bpo-36097: Use only public C-API in the_xxsubinterpreters module (adding as necessary). (gh-12359)

[issue36097] Use only public C-API in _xxsubinterpreters module.

2019-03-15 Thread Eric Snow
Change by Eric Snow : -- pull_requests: +12326 stage: needs patch -> patch review ___ Python tracker ___ ___ Python-bugs-list

[issue36097] Use only public C-API in _xxsubinterpreters module.

2019-03-05 Thread Eric Snow
Eric Snow added the comment: Actually, this is independent of that change. It had to be reverted because the PR was based on the earlier PR from #33608. So I may merge this separately...or not, since it would mean having to sort out merge conflicts. :) -- stage: -> needs patch

[issue36097] Use only public C-API in _xxsubinterpreters module.

2019-03-05 Thread Eric Snow
Eric Snow added the comment: I'll re-merge this once this problem in issue #33608 is resolved. -- resolution: fixed -> stage: resolved -> status: closed -> open ___ Python tracker

[issue36097] Use only public C-API in _xxsubinterpreters module.

2019-03-04 Thread STINNER Victor
STINNER Victor added the comment: New changeset 4d61e6e3b802399be62a521d6fa785698cb670b5 by Victor Stinner in branch 'master': Revert: bpo-33608: Factor out a private, per-interpreter _Py_AddPendingCall(). (GH-11617) (GH-12159)

[issue36097] Use only public C-API in _xxsubinterpreters module.

2019-03-01 Thread Eric Snow
Change by Eric Snow : -- resolution: -> fixed stage: patch review -> resolved status: open -> closed ___ Python tracker ___ ___

[issue36097] Use only public C-API in _xxsubinterpreters module.

2019-03-01 Thread Eric Snow
Eric Snow added the comment: New changeset bcfa450f210074e16feb761ae5b3e966a2532fcf by Eric Snow in branch 'master': bpo-36097: Use only public C-API in the_xxsubinterpreters module (adding as necessary). (#12003)

[issue36097] Use only public C-API in _xxsubinterpreters module.

2019-02-23 Thread Eric Snow
Change by Eric Snow : -- keywords: +patch pull_requests: +12034 stage: needs patch -> patch review ___ Python tracker ___ ___

[issue36097] Use only public C-API in _xxsubinterpreters module.

2019-02-23 Thread Eric Snow
New submission from Eric Snow : After discussions about our use of the public C-API in stdlib extension modules, I realized that I'd written the _xxsubinterpreters module using internal C-API. However, there's no reason not to stick to the public C-API. Fixing this will require adding a