[issue36928] linkt threading.settrace to sys.settrace

2019-05-17 Thread Stéphane Wirtel
Stéphane Wirtel added the comment: Thank you for your contribution -- nosy: +matrixise ___ Python tracker ___ ___ Python-bugs-list

[issue36928] linkt threading.settrace to sys.settrace

2019-05-17 Thread SilentGhost
Change by SilentGhost : -- resolution: -> fixed stage: patch review -> resolved status: open -> closed ___ Python tracker ___ ___

[issue36928] linkt threading.settrace to sys.settrace

2019-05-17 Thread miss-islington
Change by miss-islington : -- pull_requests: +13291 ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue36928] linkt threading.settrace to sys.settrace

2019-05-15 Thread Stefan Hölzl
Change by Stefan Hölzl : -- keywords: +patch pull_requests: +13255 stage: needs patch -> patch review ___ Python tracker ___ ___

[issue36928] linkt threading.settrace to sys.settrace

2019-05-15 Thread SilentGhost
SilentGhost added the comment: Would you care to submit a PR implementing this fix? There are some guidelines available at https://devguide.python.org/pullrequest/ -- nosy: +SilentGhost stage: -> needs patch type: -> behavior versions: +Python 3.7 -Python 3.9

[issue36928] linkt threading.settrace to sys.settrace

2019-05-15 Thread Stefan Hölzl
New submission from Stefan Hölzl : The documentation of sys.settrace suggest to call it from every created thread to enable tracing within threads. I would suggest to add a link to threading.settrace which automatically sets a trace function for every by threading module created thread. link