[issue30832] Remove own implementation for thread-local storage

2017-07-05 Thread STINNER Victor
STINNER Victor added the comment: New changeset 8207c17486baece8ed0ac42d9f8d69ecec4ba7e4 by Victor Stinner in branch 'master': Revert "bpo-30822: Fix testing of datetime module." (#2588) https://github.com/python/cpython/commit/8207c17486baece8ed0ac42d9f8d69ecec4ba7e4 --

[issue30832] Remove own implementation for thread-local storage

2017-07-03 Thread STINNER Victor
STINNER Victor added the comment: Well done, I didn't see any major outdage (compilation error) on 3.x buildbots ;-) -- resolution: -> fixed stage: -> resolved status: open -> closed ___ Python tracker _

[issue30832] Remove own implementation for thread-local storage

2017-07-03 Thread STINNER Victor
STINNER Victor added the comment: New changeset aa0aa0492c5fffe750a26d2ab13737a1a6d7d63c by Victor Stinner (Masayuki Yamamoto) in branch 'master': bpo-30832: Remove own implementation for thread-local storage (#2537) https://github.com/python/cpython/commit/aa0aa0492c5fffe750a26d2ab13737a1a6d7d

[issue30832] Remove own implementation for thread-local storage

2017-07-03 Thread STINNER Victor
STINNER Victor added the comment: This change is related to the PEP 539: the new Thread-Local Storage (TLS) API. -- ___ Python tracker ___ ___

[issue30832] Remove own implementation for thread-local storage

2017-07-03 Thread Masayuki Yamamoto
Changes by Masayuki Yamamoto : -- pull_requests: +2604 ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://

[issue30832] Remove own implementation for thread-local storage

2017-07-03 Thread Masayuki Yamamoto
New submission from Masayuki Yamamoto: 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 d