summaryrefslogtreecommitdiffstats
path: root/Doc/c-api
diff options
context:
space:
mode:
authorMasayuki Yamamoto <ma3yuki.8mamo10@gmail.com>2017-10-24 12:58:16 (GMT)
committerNick Coghlan <ncoghlan@gmail.com>2017-10-24 12:58:16 (GMT)
commit831d61d56c5b0f15cfcfd5083638aa111cddb72b (patch)
tree3ae04d24a8fdd975bb360778ca2e788c436c3597 /Doc/c-api
parente968bc735794a7123f28f26d68fdf5dc8c845280 (diff)
downloadcpython-831d61d56c5b0f15cfcfd5083638aa111cddb72b.zip
cpython-831d61d56c5b0f15cfcfd5083638aa111cddb72b.tar.gz
cpython-831d61d56c5b0f15cfcfd5083638aa111cddb72b.tar.bz2
Fix wording about Py_tss_NEEDS_INIT in docs (GH-4096)
Make more sense to replace the word "default value" with "initializer" for Py_tss_NEEDS_INIT.
Diffstat (limited to 'Doc/c-api')
-rw-r--r--Doc/c-api/init.rst2
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/c-api/init.rst b/Doc/c-api/init.rst
index 7792058..dc1939d 100644
--- a/Doc/c-api/init.rst
+++ b/Doc/c-api/init.rst
@@ -1246,7 +1246,7 @@ CPython interpreter. This API uses a new type :c:type:`Py_tss_t` instead of
.. c:macro:: Py_tss_NEEDS_INIT
- This macro expands to the default value for :c:type:`Py_tss_t` variables.
+ This macro expands to the initializer for :c:type:`Py_tss_t` variables.
Note that this macro won't be defined with :ref:`Py_LIMITED_API <stable>`.