summaryrefslogtreecommitdiffstats
path: root/Doc/data
diff options
context:
space:
mode:
authorMasayuki Yamamoto <ma3yuki.8mamo10@gmail.com>2018-05-22 08:21:25 (GMT)
committerSerhiy Storchaka <storchaka@gmail.com>2018-05-22 08:21:25 (GMT)
commit55bfe690d570958a66ee6c7b15fc8daca0f9c2d3 (patch)
treec30fd1b14bfb7e80ab5b7e4be40d7942220712bf /Doc/data
parentf5b1183610d5888db3bbd639b1a0c945dbd8f8dd (diff)
downloadcpython-55bfe690d570958a66ee6c7b15fc8daca0f9c2d3.zip
cpython-55bfe690d570958a66ee6c7b15fc8daca0f9c2d3.tar.gz
cpython-55bfe690d570958a66ee6c7b15fc8daca0f9c2d3.tar.bz2
Add PyThread_tss_* to Doc/data/refcounts.dat. (GH-7038)
Thread Specific Storage (TSS) API is a public C API (new in 3.7).
Diffstat (limited to 'Doc/data')
-rw-r--r--Doc/data/refcounts.dat21
1 files changed, 21 insertions, 0 deletions
diff --git a/Doc/data/refcounts.dat b/Doc/data/refcounts.dat
index 6dc86fc..f403c16 100644
--- a/Doc/data/refcounts.dat
+++ b/Doc/data/refcounts.dat
@@ -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::