[issue42815] new thread doesn't copy context of the parent thread

2021-08-04 Thread Adrian Garcia Badaracco
Change by Adrian Garcia Badaracco : -- nosy: +adriangb ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https:

[issue42815] new thread doesn't copy context of the parent thread

2021-07-31 Thread Guido van Rossum
Guido van Rossum added the comment: Trust me, it's too late to fix this in 3.10. -- nosy: +gvanrossum ___ Python tracker ___ ___ Py

[issue42815] new thread doesn't copy context of the parent thread

2021-07-31 Thread Jesús Cea Avión
Change by Jesús Cea Avión : -- nosy: +jcea ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://mail.python

[issue42815] new thread doesn't copy context of the parent thread

2021-01-03 Thread STINNER Victor
Change by STINNER Victor : -- nosy: +yselivanov ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://mail.

[issue42815] new thread doesn't copy context of the parent thread

2021-01-03 Thread Yurii Karabas
Change by Yurii Karabas <1998uri...@gmail.com>: -- keywords: +patch pull_requests: +22907 stage: -> patch review pull_request: https://github.com/python/cpython/pull/24074 ___ Python tracker

[issue42815] new thread doesn't copy context of the parent thread

2021-01-03 Thread Yurii Karabas
New submission from Yurii Karabas <1998uri...@gmail.com>: New thread doesn't copy context of the parent thread. The minimal example to reproduce the issue: ``` from threading import Thread from contextvars import ContextVar foo: ContextVar[str] = ContextVar("foo") def temp(): print(foo.g