From: Masayuki Yamamoto Date: Tue, 24 Oct 2017 12:58:16 +0000 (+0900) Subject: Fix wording about Py_tss_NEEDS_INIT in docs (GH-4096) X-Git-Tag: v3.7.0a3~316 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=831d61d56c5b0f15cfcfd5083638aa111cddb72b;p=thirdparty%2FPython%2Fcpython.git 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. --- diff --git a/Doc/c-api/init.rst b/Doc/c-api/init.rst index 7792058683da..dc1939db17e4 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 `.