[issue37312] Remove deprecated _dummy_thread and dummy_threading modules

2019-07-26 Thread Eric Snow
Eric Snow added the comment: FTR, Antoine originally removed in b43c4caf81b10e5c7ebaeb3a712c6db584f60bbd and added back (but deprecated) a few days later in b43c4caf81b10e5c7ebaeb3a712c6db584f60bbd. [1] That happened in September 2017 for Python 3.7. [1] https://bugs.python.org/issue31370

[issue37312] Remove deprecated _dummy_thread and dummy_threading modules

2019-06-17 Thread STINNER Victor
STINNER Victor added the comment: Bye bye dummy_threading. As explained in PR 14143, I kept a reference to dummy_threading in 2to3 on purpose. Keep it there is fine, it helps to port legacy Python 2 code to Python 3. -- resolution: -> fixed stage: patch review -> resolved status: op

[issue37312] Remove deprecated _dummy_thread and dummy_threading modules

2019-06-17 Thread STINNER Victor
STINNER Victor added the comment: New changeset 8bf08ee45b7c2341f0d0175b91892843a37c23da by Victor Stinner in branch 'master': bpo-37312: Remove _dummy_thread and dummy_threading modules (GH-14143) https://github.com/python/cpython/commit/8bf08ee45b7c2341f0d0175b91892843a37c23da --

[issue37312] Remove deprecated _dummy_thread and dummy_threading modules

2019-06-17 Thread STINNER Victor
STINNER Victor added the comment: Python 3.7 has been modified to always require threading support: * https://bugs.python.org/issue31370 * https://mail.python.org/pipermail/python-dev/2017-September/149156.html commit a6a4dc816d68df04a7d592e0b6af8c7ecc4d4344 Author: Antoine Pitrou Date: Th

[issue37312] Remove deprecated _dummy_thread and dummy_threading modules

2019-06-17 Thread STINNER Victor
Change by STINNER Victor : -- keywords: +patch pull_requests: +13984 stage: -> patch review pull_request: https://github.com/python/cpython/pull/14143 ___ Python tracker ___ _

[issue37312] Remove deprecated _dummy_thread and dummy_threading modules

2019-06-17 Thread STINNER Victor
New submission from STINNER Victor : The _dummy_thread and dummy_threading modules are deprecated since Python 3.7 which now requires threading support. Attached PR removes these modules. -- components: Library (Lib) messages: 345810 nosy: vstinner priority: normal severity: normal sta