[issue17522] Add api PyGILState_Check

2014-04-04 Thread Kristján Valur Jónsson
Changes by Kristján Valur Jónsson : -- resolution: -> fixed ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: ht

[issue17522] Add api PyGILState_Check

2014-04-04 Thread Kristján Valur Jónsson
Changes by Kristján Valur Jónsson : -- status: open -> closed ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: h

[issue17522] Add api PyGILState_Check

2013-03-23 Thread Kristján Valur Jónsson
Kristján Valur Jónsson added the comment: Thanks, Antoine. -- ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: h

[issue17522] Add api PyGILState_Check

2013-03-23 Thread Roundup Robot
Roundup Robot added the comment: New changeset 772d57aac162 by Kristján Valur Jónsson in branch 'default': Issue #17522: Minor documentation fix http://hg.python.org/cpython/rev/772d57aac162 -- ___ Python tracker _

[issue17522] Add api PyGILState_Check

2013-03-23 Thread Roundup Robot
Roundup Robot added the comment: New changeset 2e92d1567ad7 by Kristján Valur Jónsson in branch 'default': Issue #17522: Add the PyGILState_Check() API. http://hg.python.org/cpython/rev/2e92d1567ad7 -- nosy: +python-dev ___ Python tracker

[issue17522] Add api PyGILState_Check

2013-03-23 Thread Antoine Pitrou
Antoine Pitrou added the comment: A small detail: you should add a "versionadded" tag in the function doc. -- ___ Python tracker ___ _

[issue17522] Add api PyGILState_Check

2013-03-23 Thread Kristján Valur Jónsson
Kristján Valur Jónsson added the comment: Sure, thanks. -- ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http

[issue17522] Add api PyGILState_Check

2013-03-22 Thread Antoine Pitrou
Antoine Pitrou added the comment: You probably want to add some docs to c-api/init.rst. -- nosy: +pitrou ___ Python tracker ___ ___ Py

[issue17522] Add api PyGILState_Check

2013-03-22 Thread Brett Cannon
Brett Cannon added the comment: Seems fine to me -- nosy: +brett.cannon ___ Python tracker ___ ___ Python-bugs-list mailing list Unsub

[issue17522] Add api PyGILState_Check

2013-03-22 Thread Kristján Valur Jónsson
New submission from Kristján Valur Jónsson: Here is a function that is used by specialized part of our code. Often it is useful for e.g. IO callbacks or memory hooks to know if the GIL is in place in order to know if certain things can be done or not. Putting this here to see if anyone has str