commit | 09d374fd670e5ee4e72994f6c1d55ea77e95845e | [log] [tgz] |
---|---|---|
author | Georg Brandl <georg@python.org> | Sun May 11 15:21:42 2008 +0000 |
committer | Georg Brandl <georg@python.org> | Sun May 11 15:21:42 2008 +0000 |
tree | 4e7ee02839f4696991a137aefac44845dc3413b7 | |
parent | c0c3914b098bdc08abeee3403c8dc81f62384f13 [diff] [blame] |
#2803: fix heappush invocation (backport).
diff --git a/Lib/sched.py b/Lib/sched.py index 7c3235e..1643236 100644 --- a/Lib/sched.py +++ b/Lib/sched.py
@@ -114,4 +114,4 @@ void = action(*argument) delayfunc(0) # Let other threads run else: - heapq.heappush(event) + heapq.heappush(q, event)