8000
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1b1ae07 commit c9028b2Copy full SHA for c9028b2
Lib/test/test_logging.py
@@ -4496,6 +4496,17 @@ def test_multiprocessing(self):
4496
if multiprocessing_imported:
4497
import multiprocessing
4498
4499
+ def test_multiprocessing_again(self):
4500
+ # https://bugs.python.org/issue45128
4501
+ import sys
4502
+ import multiprocessing.queues
4503
+
4504
+ self.test_multiprocessing()
4505
4506
+ import multiprocessing
4507
+ import multiprocessing.connection
4508
+ from multiprocessing.connection import wait
4509
+ connection = multiprocessing.connection # It was AttributeError here
4510
4511
def test_optional(self):
4512
r = logging.makeLogRecord({})
0 commit comments