[issue40193] thread.get_native_id() support for solaris

2020-04-04 Thread Batuhan Taskaya
New submission from Batuhan Taskaya : Solaris supports accessing the native id of thread via pthread_self() https://docs.oracle.com/cd/E19455-01/806-5257/6je9h032i/index.html#tlib-89129 -- messages: 365808 nosy: BTaskaya priority: normal severity: normal status: open title: thread.get_n

[issue40191] tempfile.mkstemp() | Documentation Error

2020-04-04 Thread Steven D'Aprano
Steven D'Aprano added the comment: I think you may have misread the documentation. It says: "an OS-level handle to an open file" which is what you call a file descriptor. Not a file object, which is what you get by calling the builtin `open`, but a file handle like you get from calling `os.

[issue40193] thread.get_native_id() support for solaris

2020-04-04 Thread Batuhan Taskaya
Batuhan Taskaya added the comment: Looks like neither pthread_self nor thr_self gives the native id. Closing the issue... -- resolution: -> wont fix stage: -> resolved status: open -> closed ___ Python tracker

[issue1635741] Py_Finalize() doesn't clear all Python objects at exit

2020-04-04 Thread Dong-hee Na
Change by Dong-hee Na : -- pull_requests: +18745 pull_request: https://github.com/python/cpython/pull/19382 ___ Python tracker ___ ___

[issue37207] Use PEP 590 vectorcall to speed up calls to range(), list() and dict()

2020-04-04 Thread Dong-hee Na
Dong-hee Na added the comment: IMHO, we can close this PR. Summary: The PEP 590 vectorcall is applied to list, tuple, dict, set, frozenset and range If someone wants to apply PEP 590 to other cases. Please open a new issue for it! Thank you, Mark, Jeroen, Petr and everyone who works for this

<    1   2