Fix typo in message from assert statement (GH-21283)
The error message was missing space between the action "acquire" and "_wait_semaphore" which is an attribute for instances of Condition.
This commit is contained in:
parent
1abeda80f7
commit
99c0ee3c89
|
@ -270,7 +270,7 @@ class Condition(object):
|
||||||
def notify(self, n=1):
|
def notify(self, n=1):
|
||||||
assert self._lock._semlock._is_mine(), 'lock is not owned'
|
assert self._lock._semlock._is_mine(), 'lock is not owned'
|
||||||
assert not self._wait_semaphore.acquire(
|
assert not self._wait_semaphore.acquire(
|
||||||
False), ('notify: Should not have been able to acquire'
|
False), ('notify: Should not have been able to acquire '
|
||||||
+ '_wait_semaphore')
|
+ '_wait_semaphore')
|
||||||
|
|
||||||
# to take account of timeouts since last notify*() we subtract
|
# to take account of timeouts since last notify*() we subtract
|
||||||
|
|
Loading…
Reference in New Issue