summaryrefslogtreecommitdiff
path: root/Lib/sched.py
diff options
context:
space:
mode:
authorGuido van Rossum <guido@python.org>1992-01-01 19:35:13 +0000
committerGuido van Rossum <guido@python.org>1992-01-01 19:35:13 +0000
commit9ac216e566fe7f81609722902571ecb799d0d23c (patch)
tree7e5f0d52b8c44e623b12e8f4b5cd645c361e5aeb /Lib/sched.py
parentcfdf58ff71d272899abb9a20d4ee8298571fcb07 (diff)
downloadcpython-9ac216e566fe7f81609722902571ecb799d0d23c.tar.gz
New == syntax
Diffstat (limited to 'Lib/sched.py')
-rw-r--r--Lib/sched.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/Lib/sched.py b/Lib/sched.py
index e7d2b87112..4a4530953d 100644
--- a/Lib/sched.py
+++ b/Lib/sched.py
@@ -49,7 +49,7 @@ class scheduler:
for i in range(len(q)):
qtime, qpri, qact, qarg = q[i]
if time < qtime: break
- if time = qtime and priority < qpri: break
+ if time == qtime and priority < qpri: break
else:
i = len(q)
q.insert(i, event)
@@ -72,7 +72,7 @@ class scheduler:
# Check whether the queue is empty.
#
def empty(self):
- return len(self.queue) = 0
+ return len(self.queue) == 0
#
# Run: execute events until the queue is empty.
#