[issue38159] PyState_AddModule docs should say that it's not necessary to call it.

2019-11-06 Thread Petr Viktorin
Change by Petr Viktorin : -- resolution: -> fixed stage: patch review -> resolved status: open -> closed ___ Python tracker ___

[issue38159] PyState_AddModule docs should say that it's not necessary to call it.

2019-11-05 Thread miss-islington
miss-islington added the comment: New changeset 1270d2cf1d17bfa581bf2a19f82c8cb43bf793d9 by Miss Islington (bot) in branch '3.8': [3.8] bpo-38159: Clarify documentation of PyState_AddModule (GH-16101) (GH-17026)

[issue38159] PyState_AddModule docs should say that it's not necessary to call it.

2019-11-05 Thread miss-islington
miss-islington added the comment: New changeset 4342af00d87de0a0d0ef3bfda4d6edb08ac2427a by Miss Islington (bot) in branch '3.7': [3.7] bpo-38159: Clarify documentation of PyState_AddModule (GH-16101) (GH-17027)

[issue38159] PyState_AddModule docs should say that it's not necessary to call it.

2019-11-01 Thread miss-islington
Change by miss-islington : -- pull_requests: +16542 pull_request: https://github.com/python/cpython/pull/17027 ___ Python tracker ___

[issue38159] PyState_AddModule docs should say that it's not necessary to call it.

2019-11-01 Thread miss-islington
Change by miss-islington : -- pull_requests: +16541 pull_request: https://github.com/python/cpython/pull/17026 ___ Python tracker ___

[issue38159] PyState_AddModule docs should say that it's not necessary to call it.

2019-11-01 Thread Petr Viktorin
Petr Viktorin added the comment: New changeset 9bc94eca0c69a551f928692364a99e9b67c4a45b by Petr Viktorin in branch 'master': bpo-38159: Clarify documentation of PyState_AddModule (GH-16101) https://github.com/python/cpython/commit/9bc94eca0c69a551f928692364a99e9b67c4a45b --

[issue38159] PyState_AddModule docs should say that it's not necessary to call it.

2019-09-13 Thread Petr Viktorin
Change by Petr Viktorin : -- keywords: +patch pull_requests: +15720 stage: -> patch review pull_request: https://github.com/python/cpython/pull/16101 ___ Python tracker ___

[issue38159] PyState_AddModule docs should say that it's not necessary to call it.

2019-09-13 Thread Petr Viktorin
New submission from Petr Viktorin : I've seen extension modules calling PyState_AddModule on init, despite Python doing this automatically. It should be clarified that PyState_AddModule is for people who are writing alternative ways of creating/registering module objects. --