diff options
author | Terry Jan Reedy <tjreedy@udel.edu> | 2021-11-20 18:21:14 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-11-20 18:21:14 (GMT) |
commit | 985233914504c73f14a23af1c68a3709079e6913 (patch) | |
tree | 5db2873f9cfae32cacf27219c9249c056cd5a1c8 | |
parent | 79ff0d1687e3f823fb121a19f0297ad052871b1b (diff) | |
download | cpython-985233914504c73f14a23af1c68a3709079e6913.zip cpython-985233914504c73f14a23af1c68a3709079e6913.tar.gz cpython-985233914504c73f14a23af1c68a3709079e6913.tar.bz2 |
bpo-44844: Remove unresponsive web link (GH-29651)
Threading notes by Aahz from OSCON 2001.
-rw-r--r-- | Doc/faq/library.rst | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/Doc/faq/library.rst b/Doc/faq/library.rst index e92973a..78f5a06 100644 --- a/Doc/faq/library.rst +++ b/Doc/faq/library.rst @@ -240,9 +240,6 @@ Be sure to use the :mod:`threading` module and not the :mod:`_thread` module. The :mod:`threading` module builds convenient abstractions on top of the low-level primitives provided by the :mod:`_thread` module. -Aahz has a set of slides from his threading tutorial that are helpful; see -http://www.pythoncraft.com/OSCON2001/. - None of my threads seem to run: why? ------------------------------------ |