<div dir="ltr">Thanks Serhiy, I missed adding PyThread_tss_* to Doc/data/refcounts.dat. I opened a PR to fix it.<br><a href="https://github.com/python/cpython/pull/7038">https://github.com/python/cpython/pull/7038</a><br><br>Regards,<br>Masayuki<br></div><div class="gmail_extra"><br><div class="gmail_quote">2018-05-21 21:41 GMT+09:00 Serhiy Storchaka <span dir="ltr"><<a href="mailto:storchaka@gmail.com" target="_blank">storchaka@gmail.com</a>></span>:<br><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">Please don't forgot to perform the following steps when add a  new public C API:<br>
<br>
* Document it in Doc/c-api/.<br>
<br>
* Add an entry in the What's New document.<br>
<br>
* Add it in Doc/data/refcounts.dat.<br>
<br>
* Add it in PC/python3.def.<br>
<br>
If you want to include it in the limited API, wrap its declaration with:<br>
<br>
   #if !defined(Py_LIMITED_API) || Py_LIMITED_API+0 >= 0x03080000<br>
   #endif<br>
<br>
(use the correct Python version of introducing a feature in the comparison)<br>
<br>
If you don't want to include it in the limited API, wrap its declaration with:<br>
<br>
   #ifndef Py_LIMITED_API<br>
   #endif<br>
<br>
You are free of adding private C API, but its name should start with _Py or _PY and its declaration should be wrapped with:<br>
<br>
   #ifndef Py_LIMITED_API<br>
   #endif<br>
<br>
______________________________<wbr>_________________<br>
Python-Dev mailing list<br>
<a href="mailto:Python-Dev@python.org" target="_blank">Python-Dev@python.org</a><br>
<a href="https://mail.python.org/mailman/listinfo/python-dev" rel="noreferrer" target="_blank">https://mail.python.org/mailma<wbr>n/listinfo/python-dev</a><br>
Unsubscribe: <a href="https://mail.python.org/mailman/options/python-dev/ma3yuki.8mamo10%40gmail.com" rel="noreferrer" target="_blank">https://mail.python.org/mailma<wbr>n/options/python-dev/ma3yuki.<wbr>8mamo10%40gmail.com</a><br>
</blockquote></div><br></div>