Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Appearance settings

Commit c8e0b6e

Browse filesBrowse files
authored
gh-132719: Fix AMD64 FreeBSD14/15 3.x failures - test_rlock_locked_2processes used an unknown Value (GH-132774)
* Fix creation of resvariable
1 parent 01317bb commit c8e0b6e
Copy full SHA for c8e0b6e

File tree

Expand file treeCollapse file tree

1 file changed

+1
-1
lines changed
Filter options
Expand file treeCollapse file tree

1 file changed

+1
-1
lines changed

‎Lib/test/_test_multiprocessing.py

Copy file name to clipboardExpand all lines: Lib/test/_test_multiprocessing.py
+1-1Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1588,7 +1588,7 @@ def test_rlock_locked_2processes(self):
15881588

15891589
rlock = self.RLock()
15901590
event = self.Event()
1591-
res = Value('b', 0)
1591+
res = self.Value('b', 0)
15921592
# target is the same as for the test_lock_locked_2processes test.
15931593
p = self.Process(target=self._test_lock_locked_2processes,
15941594
args=(rlock, event, res))

0 commit comments

Comments
0 (0)
Morty Proxy This is a proxified and sanitized view of the page, visit original site.