bpo-31370: Remove references to threadless builds (#8805) · python/cpython@eef0596 · GitHub
Skip to content

Commit eef0596

Browse files
ZackerySpytzbriancurtin
authored andcommitted
bpo-31370: Remove references to threadless builds (#8805)
Support for threadless builds was removed in a6a4dc8.
1 parent 508d820 commit eef0596

4 files changed

Lines changed: 10 additions & 19 deletions

File tree

Doc/c-api/init.rst

Lines changed: 8 additions & 8 deletions

Doc/library/queue.rst

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -11,9 +11,7 @@
1111
The :mod:`queue` module implements multi-producer, multi-consumer queues.
1212
It is especially useful in threaded programming when information must be
1313
exchanged safely between multiple threads. The :class:`Queue` class in this
14-
module implements all the required locking semantics. It depends on the
15-
availability of thread support in Python; see the :mod:`threading`
16-
module.
14+
module implements all the required locking semantics.
1715

1816
The module implements three types of queue, which differ only in the order in
1917
which the entries are retrieved. In a :abbr:`FIFO (first-in, first-out)`

Lib/test/_test_multiprocessing.py

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -30,9 +30,6 @@
3030
_multiprocessing = test.support.import_module('_multiprocessing')
3131
# Skip tests if sem_open implementation is broken.
3232
test.support.import_module('multiprocessing.synchronize')
33-
# import threading after _multiprocessing to raise a more relevant error
34-
# message: "No module named _multiprocessing". _multiprocessing is not compiled
35-
# without thread support.
3633
import threading
3734

3835
import multiprocessing.connection

Python/ceval.c

Lines changed: 1 addition & 5 deletions

0 commit comments

Comments
 (0)