Skip to content

Commit 57070f2

Browse files
committed
Add ref to issue
1 parent 864ca9d commit 57070f2

1 file changed

Lines changed: 2 additions & 0 deletions

File tree

Lib/test/_test_multiprocessing.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2131,6 +2131,7 @@ def test_event(self):
21312131
p.join()
21322132

21332133
def test_repr(self) -> None:
2134+
# Change repr, see gh-149399.
21342135
event = self.Event()
21352136
if self.TYPE == 'processes':
21362137
self.assertIn("<Event(unset)>", repr(event))
@@ -2505,6 +2506,7 @@ def test_thousand(self):
25052506
self.assertEqual(conn.recv(), i)
25062507

25072508
def test_repr(self):
2509+
# Add repr, see gh-149399.
25082510
b = self.barrier
25092511
if self.TYPE == 'process':
25102512
self.assertIn(f"waiters=0/{self.N}", repr(b))

0 commit comments

Comments
 (0)