[issue42343] threading.local documentation should be on the net...

2022-01-27 Thread Matt B
Matt B added the comment: @ztane, if you are interested in trying your hand at a PR, these will be generally useful: * https://devguide.python.org/ * https://devguide.python.org/documenting/ -- ___ Python tracker

[issue42343] threading.local documentation should be on the net...

2022-01-27 Thread Matt B
Matt B added the comment: @rhettinger, the docstring[1] alluded to in the docs is quite lengthy. Are you suggesting copying it straight across to the standard library documentation? If not, can you give (or link to) some documentation standards or other guidance on constructing a viable PR?

[issue42343] threading.local documentation should be on the net...

2020-11-14 Thread Raymond Hettinger
Raymond Hettinger added the comment: Would you like to make a PR to fix it? -- keywords: +newcomer friendly nosy: +rhettinger ___ Python tracker ___ __

[issue42343] threading.local documentation should be on the net...

2020-11-13 Thread Antti Haapala
New submission from Antti Haapala : The current documentation of `thread.local` is Thread-Local Data Thread-local data is data whose values are thread specific. To manage thread-local data, just create an instance of local (or a subclass) and store attributes on it: mydata = threading