summaryrefslogtreecommitdiffhomepage
path: root/tests/loop.py
diff options
context:
space:
mode:
authorJeff Forcier <jeff@bitprophet.org>2022-04-25 10:56:40 -0400
committerJeff Forcier <jeff@bitprophet.org>2022-04-25 10:56:40 -0400
commit5540514928474956c25936ab48f7fa0b59755bb1 (patch)
treed8927adc8594faa6b0571ba270a3e3dbc1234dae /tests/loop.py
parent47529be4385cffba6851f10e505f5683290d116e (diff)
parent3929166413343f0acdba44694da7bf8ee44600bb (diff)
Merge branch '2.9' into 2.10
Diffstat (limited to 'tests/loop.py')
-rw-r--r--tests/loop.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/loop.py b/tests/loop.py
index dd1f5a0c..40179a64 100644
--- a/tests/loop.py
+++ b/tests/loop.py
@@ -81,7 +81,7 @@ class LoopSocket(object):
self.__lock.acquire()
try:
self.__in_buffer += data
- self.__cv.notifyAll()
+ self.__cv.notify_all()
finally:
self.__lock.release()