[issue10741] PyGILState_GetThisThreadState() lacks a doc entry

2011-08-07 Thread Sandro Tosi
Sandro Tosi added the comment: I just committed an improved version of the proposed patch (thanks Ezio for the review and help!). -- resolution: -> fixed stage: patch review -> committed/rejected status: open -> closed ___ Python tracker

[issue10741] PyGILState_GetThisThreadState() lacks a doc entry

2011-08-07 Thread Roundup Robot
Roundup Robot added the comment: New changeset 8852e4a9aa1e by Sandro Tosi in branch '2.7': #10741: add documentation for PyGILState_GetThisThreadState() http://hg.python.org/cpython/rev/8852e4a9aa1e New changeset 53b8260b9ea7 by Sandro Tosi in branch '3.2': #10741: add documentation for PyGILS

[issue10741] PyGILState_GetThisThreadState() lacks a doc entry

2011-08-07 Thread Sandro Tosi
Sandro Tosi added the comment: Here attached a very simple patch, made by slightly re-editing the comment in pystate.h. -- keywords: +patch nosy: +ezio.melotti, sandro.tosi stage: -> patch review versions: +Python 3.3 -Python 3.1 Added file: http://bugs.python.org/file22858/issue10741

[issue10741] PyGILState_GetThisThreadState() lacks a doc entry

2010-12-20 Thread Antoine Pitrou
New submission from Antoine Pitrou : PyGILState_GetThisThreadState() is "documented" in Include/pystate.h but not in the official docs. It should be documented along PyGILState_Ensure() and friends. -- assignee: d...@python components: Documentation messages: 124394 nosy: d...@python,