This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author masamoto
Recipients masamoto, vstinner
Date 2017-07-03.08:23:52
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1499070233.45.0.628514473579.issue30832@psf.upfronthosting.co.za>
In-reply-to
Content
CPython has provided the own implementation for thread-local storage (TLS) on Python/thread.c, it's used in the case which a platform has not supplied native TLS.  However, currently all supported platforms (NT and pthreads) have provided native TLS and defined the Py_HAVE_NATIVE_TLS macro with unconditional in any case.
Therefore, I'd propose removing outdated code.

python-dev: https://mail.python.org/pipermail/python-dev/2017-July/148534.html
History
Date User Action Args
2017-07-03 08:23:53masamotosetrecipients: + masamoto, vstinner
2017-07-03 08:23:53masamotosetmessageid: <1499070233.45.0.628514473579.issue30832@psf.upfronthosting.co.za>
2017-07-03 08:23:53masamotolinkissue30832 messages
2017-07-03 08:23:52masamotocreate