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.

classification
Title: thread native id netbsd support
Type: Stage: resolved
Components: Interpreter Core Versions: Python 3.9, Python 3.8
process
Status: closed Resolution: fixed
Dependencies: Superseder:
Assigned To: Nosy List: David Carlier, miss-islington, vstinner
Priority: normal Keywords: patch

Created on 2019-06-05 07:14 by David Carlier, last changed 2022-04-11 14:59 by admin. This issue is now closed.

Pull Requests
URL Status Linked Edit
PR 13835 merged David Carlier, 2019-06-05 07:14
PR 14021 merged miss-islington, 2019-06-12 15:38
Messages (4)
msg345373 - (view) Author: STINNER Victor (vstinner) * (Python committer) Date: 2019-06-12 15:38
New changeset 5287022eeeb3c017d49fc8580b52e18377bf23f3 by Victor Stinner (David Carlier) in branch 'master':
bpo-37160: Thread native ID NetBSD support (GH-13835)
https://github.com/python/cpython/commit/5287022eeeb3c017d49fc8580b52e18377bf23f3
msg345374 - (view) Author: STINNER Victor (vstinner) * (Python committer) Date: 2019-06-12 15:39
Since threading.get_native_id() is a new feature in Python 3.8 and the PR is small enough, IMHO it's fine to backport the change to 3.8.
msg345375 - (view) Author: miss-islington (miss-islington) Date: 2019-06-12 16:03
New changeset c9ca96dd968176580a011e852066c95a48aab7e0 by Miss Islington (bot) in branch '3.8':
bpo-37160: Thread native ID NetBSD support (GH-13835)
https://github.com/python/cpython/commit/c9ca96dd968176580a011e852066c95a48aab7e0
msg345376 - (view) Author: STINNER Victor (vstinner) * (Python committer) Date: 2019-06-12 16:12
Thanks David Carlier! It's now merged into 3.8 and master.
History
Date User Action Args
2022-04-11 14:59:16adminsetgithub: 81341
2019-06-12 16:12:00vstinnersetstatus: open -> closed
resolution: fixed
messages: + msg345376

stage: patch review -> resolved
2019-06-12 16:03:28miss-islingtonsetnosy: + miss-islington
messages: + msg345375
2019-06-12 15:39:12vstinnersetmessages: + msg345374
versions: + Python 3.8
2019-06-12 15:38:29miss-islingtonsetkeywords: + patch
stage: patch review
pull_requests: + pull_request13886
2019-06-12 15:38:01vstinnersetnosy: + vstinner
messages: + msg345373
2019-06-05 07:14:33David Carliercreate