~pythonregexp2.7/python/issue2636

« back to all changes in this revision

Viewing changes to Lib/sched.py

  • Committer: Jeffrey C. "The TimeHorse" Jacobs
  • Date: 2008-05-24 16:05:21 UTC
  • mfrom: (39021.1.401 Regexp-2.6)
  • Revision ID: darklord@timehorse.com-20080524160521-1xenj7p6u3wb89et
Merged in changes from the latest python source snapshot.

Show diffs side-by-side

added added

removed removed

Lines of Context:
117
117
                    action(*argument)
118
118
                    delayfunc(0)   # Let other threads run
119
119
                else:
120
 
                    heapq.heappush(event)
 
120
                    heapq.heappush(q, event)
121
121
 
122
122
    @property
123
123
    def queue(self):