diff options
author | Matt Wozniski <mwozniski@bloomberg.net> | 2020-12-18 13:05:46 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-12-18 13:05:46 (GMT) |
commit | 84ebcf271a2cc8bfd1762acb279502b8b6ef236e (patch) | |
tree | eb138291e757831811486e9850ad216c13ef715f /Misc | |
parent | b9735420aa8ecd2555fe3dc000863bc50487334b (diff) | |
download | cpython-84ebcf271a2cc8bfd1762acb279502b8b6ef236e.zip cpython-84ebcf271a2cc8bfd1762acb279502b8b6ef236e.tar.gz cpython-84ebcf271a2cc8bfd1762acb279502b8b6ef236e.tar.bz2 |
bpo-17140: Document multiprocessing's ThreadPool (GH-23812)
Up until now, the `multiprocessing.pool.ThreadPool` class has gone
undocumented, despite being a public class in multiprocessing that is
included in `multiprocessing.pool.__all__`.
Diffstat (limited to 'Misc')
-rw-r--r-- | Misc/NEWS.d/next/Documentation/2020-12-16-21-06-16.bpo-17140.1leSEg.rst | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/Misc/NEWS.d/next/Documentation/2020-12-16-21-06-16.bpo-17140.1leSEg.rst b/Misc/NEWS.d/next/Documentation/2020-12-16-21-06-16.bpo-17140.1leSEg.rst new file mode 100644 index 0000000..cb1fd23 --- /dev/null +++ b/Misc/NEWS.d/next/Documentation/2020-12-16-21-06-16.bpo-17140.1leSEg.rst @@ -0,0 +1 @@ +Add documentation for the :class:`multiprocessing.pool.ThreadPool` class. |