Skip to content
Projeler
Gruplar
Parçacıklar
Yardım
Yükleniyor...
Oturum aç / Kaydol
Gezinmeyi değiştir
C
cpython
Proje
Proje
Ayrıntılar
Etkinlik
Cycle Analytics
Depo (repository)
Depo (repository)
Dosyalar
Kayıtlar (commit)
Dallar (branch)
Etiketler
Katkıda bulunanlar
Grafik
Karşılaştır
Grafikler
Konular (issue)
0
Konular (issue)
0
Liste
Pano
Etiketler
Kilometre Taşları
Birleştirme (merge) Talepleri
0
Birleştirme (merge) Talepleri
0
CI / CD
CI / CD
İş akışları (pipeline)
İşler
Zamanlamalar
Grafikler
Paketler
Paketler
Wiki
Wiki
Parçacıklar
Parçacıklar
Üyeler
Üyeler
Collapse sidebar
Close sidebar
Etkinlik
Grafik
Grafikler
Yeni bir konu (issue) oluştur
İşler
Kayıtlar (commit)
Konu (issue) Panoları
Kenar çubuğunu aç
Batuhan Osman TASKAYA
cpython
Commits
712d593e
Kaydet (Commit)
712d593e
authored
Eki 24, 2016
tarafından
Raymond Hettinger
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Issue #5830: Remove old comment. Add empty slots.
üst
e8963912
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 addition
and
5 deletions
+1
-5
sched.py
Lib/sched.py
+1
-5
No files found.
Lib/sched.py
Dosyayı görüntüle @
712d593e
...
...
@@ -23,11 +23,6 @@ The action function may be an instance method so it
has another way to reference private data (besides global variables).
"""
# XXX The timefunc and delayfunc should have been defined as methods
# XXX so you can define new kinds of schedulers using subclassing
# XXX instead of having to define a module or class just to hold
# XXX the global state of your particular time and delay functions.
import
time
import
heapq
from
collections
import
namedtuple
...
...
@@ -40,6 +35,7 @@ from time import monotonic as _time
__all__
=
[
"scheduler"
]
class
Event
(
namedtuple
(
'Event'
,
'time, priority, action, argument, kwargs'
)):
__slots__
=
[]
def
__eq__
(
s
,
o
):
return
(
s
.
time
,
s
.
priority
)
==
(
o
.
time
,
o
.
priority
)
def
__lt__
(
s
,
o
):
return
(
s
.
time
,
s
.
priority
)
<
(
o
.
time
,
o
.
priority
)
def
__le__
(
s
,
o
):
return
(
s
.
time
,
s
.
priority
)
<=
(
o
.
time
,
o
.
priority
)
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment