Thanks to visit codestin.com Credit goes to github.com
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 1abeda8 commit 99c0ee3Copy full SHA for 99c0ee3
1 file changed
Lib/multiprocessing/synchronize.py
@@ -270,7 +270,7 @@ def wait(self, timeout=None):
270
def notify(self, n=1):
271
assert self._lock._semlock._is_mine(), 'lock is not owned'
272
assert not self._wait_semaphore.acquire(
273
- False), ('notify: Should not have been able to acquire'
+ False), ('notify: Should not have been able to acquire '
274
+ '_wait_semaphore')
275
276
# to take account of timeouts since last notify*() we subtract
0 commit comments