Skip to content

Commit

Permalink
Add PyThread_tss_* to Doc/data/refcounts.dat. (GH-7038)
Browse files Browse the repository at this point in the history
Thread Specific Storage (TSS) API is a public C API (new in 3.7).
(cherry picked from commit 55bfe69)

Co-authored-by: Masayuki Yamamoto <ma3yuki.8mamo10@gmail.com>
  • Loading branch information
miss-islington and ma8ma committed May 22, 2018
1 parent e1a78ca commit 3718f92
Showing 1 changed file with 21 additions and 0 deletions.
21 changes: 21 additions & 0 deletions Doc/data/refcounts.dat
Expand Up @@ -1383,6 +1383,27 @@ PyThreadState_New:PyInterpreterState*:interp::
PyThreadState_Swap:PyThreadState*:::
PyThreadState_Swap:PyThreadState*:tstate::

PyThread_tss_alloc:Py_tss_t*:::

PyThread_tss_create:int:::
PyThread_tss_create:Py_tss_t*:key::

PyThread_tss_delete:void:::
PyThread_tss_delete:Py_tss_t*:key::

PyThread_tss_free:void:::
PyThread_tss_free:Py_tss_t*:key::

PyThread_tss_get:void*:::
PyThread_tss_get:Py_tss_t*:key::

PyThread_tss_is_created:int:::
PyThread_tss_is_created:Py_tss_t*:key::

PyThread_tss_set:int:::
PyThread_tss_set:Py_tss_t*:key::
PyThread_tss_set:void*:value::

PyTime_FromTime:PyObject*::+1:
PyTime_FromTime:int:hour::
PyTime_FromTime:int:minute::
Expand Down

0 comments on commit 3718f92

Please sign in to comment.