[issue36157] Document PyInterpreterState_Main().

2019-04-01 Thread Eric Snow
Eric Snow added the comment: Thanks for working on this, Joannah! :) -- resolution: -> fixed stage: patch review -> resolved status: open -> closed ___ Python tracker ___

[issue36157] Document PyInterpreterState_Main().

2019-04-01 Thread miss-islington
miss-islington added the comment: New changeset 35fc38e5e82d18ceec95af9af2103319497e2eaf by Miss Islington (bot) in branch '3.7': bpo-36157:Document PyInterpreterState_Main() (GH-12238) https://github.com/python/cpython/commit/35fc38e5e82d18ceec95af9af2103319497e2eaf --

[issue36157] Document PyInterpreterState_Main().

2019-04-01 Thread miss-islington
Change by miss-islington : -- keywords: +patch pull_requests: +12581 stage: commit review -> patch review ___ Python tracker ___

[issue36157] Document PyInterpreterState_Main().

2019-04-01 Thread miss-islington
miss-islington added the comment: New changeset 8c61739defd88c7f79e86537886c33745843ce01 by Miss Islington (bot) (Joannah Nanjekye) in branch 'master': bpo-36157:Document PyInterpreterState_Main() (GH-12238) https://github.com/python/cpython/commit/8c61739defd88c7f79e86537886c33745843ce01

[issue36157] Document PyInterpreterState_Main().

2019-03-30 Thread Joannah Nanjekye
Joannah Nanjekye added the comment: I will work on this in a separate PR. I opened #issue36487 (https://bugs.python.org/issue36487) to track this. -- ___ Python tracker ___

[issue36157] Document PyInterpreterState_Main().

2019-03-29 Thread Eric Snow
Eric Snow added the comment: As I noted on the PR, this might be a good chance to make sure the C-API docs are clear about what the "main" interpreter is. -- ___ Python tracker

[issue36157] Document PyInterpreterState_Main().

2019-03-12 Thread Cheryl Sabella
Change by Cheryl Sabella : -- stage: needs patch -> commit review ___ Python tracker ___ ___ Python-bugs-list mailing list

[issue36157] Document PyInterpreterState_Main().

2019-03-08 Thread Joannah Nanjekye
Joannah Nanjekye added the comment: Since there was no response, I decided to open a PR for this. -- keywords: -patch stage: patch review -> needs patch ___ Python tracker

[issue36157] Document PyInterpreterState_Main().

2019-03-08 Thread Joannah Nanjekye
Change by Joannah Nanjekye : -- keywords: +patch pull_requests: +12226 stage: needs patch -> patch review ___ Python tracker ___

[issue36157] Document PyInterpreterState_Main().

2019-03-01 Thread Joannah Nanjekye
Joannah Nanjekye added the comment: @Mariatta do you want to keep this for the mentored sprint at PyCon? -- nosy: +nanjekyejoannah ___ Python tracker ___

[issue36157] Document PyInterpreterState_Main().

2019-03-01 Thread Eric Snow
New submission from Eric Snow : PyInterpreterState_Main() is a function in the public C-API that returns a pointer to the main interpreter's state. The main interpreter is the first one created by the CPython runtime during startup (e.g. when the "python" command is run). Documentation for