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.
Created on 2017年07月03日 08:23 by masamoto, last changed 2022年04月11日 14:58 by admin. This issue is now closed.
| Pull Requests | |||
|---|---|---|---|
| URL | Status | Linked | Edit |
| PR 2537 | merged | masamoto, 2017年07月03日 08:49 | |
| Messages (5) | |||
|---|---|---|---|
| msg297543 - (view) | Author: Masayuki Yamamoto (masamoto) * | Date: 2017年07月03日 08:23 | |
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 |
|||
| msg297547 - (view) | Author: STINNER Victor (vstinner) * (Python committer) | Date: 2017年07月03日 08:54 | |
This change is related to the PEP 539: the new Thread-Local Storage (TLS) API. |
|||
| msg297572 - (view) | Author: STINNER Victor (vstinner) * (Python committer) | Date: 2017年07月03日 11:34 | |
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/aa0aa0492c5fffe750a26d2ab13737a1a6d7d63c |
|||
| msg297588 - (view) | Author: STINNER Victor (vstinner) * (Python committer) | Date: 2017年07月03日 14:00 | |
Well done, I didn't see any major outdage (compilation error) on 3.x buildbots ;-) |
|||
| msg297749 - (view) | Author: STINNER Victor (vstinner) * (Python committer) | Date: 2017年07月05日 13:44 | |
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 |
|||
| History | |||
|---|---|---|---|
| Date | User | Action | Args |
| 2022年04月11日 14:58:48 | admin | set | github: 75015 |
| 2017年07月05日 13:44:56 | vstinner | set | messages: + msg297749 |
| 2017年07月03日 14:00:29 | vstinner | set | status: open -> closed resolution: fixed messages: + msg297588 stage: resolved |
| 2017年07月03日 11:34:40 | vstinner | set | messages: + msg297572 |
| 2017年07月03日 08:54:59 | vstinner | set | messages: + msg297547 |
| 2017年07月03日 08:49:11 | masamoto | set | pull_requests: + pull_request2604 |
| 2017年07月03日 08:23:53 | masamoto | create | |