[issue34301] Add _PyInterpreterState_Get() helper function

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

[issue34301] Add _PyInterpreterState_Get() helper function

2018-08-03 Thread STINNER Victor
STINNER Victor added the comment: New changeset caba55b3b735405b280273f7d99866a046c18281 by Victor Stinner in branch 'master': bpo-34301: Add _PyInterpreterState_Get() helper function (GH-8592) https://github.com/python/cpython/commit/caba55b3b735405b280273f7d99866a046c18281 --

[issue34301] Add _PyInterpreterState_Get() helper function

2018-07-31 Thread STINNER Victor
Change by STINNER Victor : -- keywords: +patch pull_requests: +8102 stage: -> patch review ___ Python tracker ___ ___

[issue34301] Add _PyInterpreterState_Get() helper function

2018-07-31 Thread STINNER Victor
New submission from STINNER Victor : Add _PyInterpreterState_Get() helper function: IMHO it's more explicit to call _PyInterpreterState_Get() than having to write PyThreadState_GET()->interp or PyThreadState_Get()->interp. -- components: Interpreter Core messages: 322827 nosy: