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
1a8ada89
Kaydet (Commit)
1a8ada89
authored
Ock 14, 2015
tarafından
Raymond Hettinger
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
No need to rebuild a constant dictionary on every call. Move convert mapping to module level.
üst
e54dd0b9
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
17 additions
and
16 deletions
+17
-16
functools.py
Lib/functools.py
+17
-16
No files found.
Lib/functools.py
Dosyayı görüntüle @
1a8ada89
...
...
@@ -174,28 +174,29 @@ def _lt_from_ge(self, other):
return
op_result
return
not
op_result
_convert
=
{
'__lt__'
:
[(
'__gt__'
,
_gt_from_lt
),
(
'__le__'
,
_le_from_lt
),
(
'__ge__'
,
_ge_from_lt
)],
'__le__'
:
[(
'__ge__'
,
_ge_from_le
),
(
'__lt__'
,
_lt_from_le
),
(
'__gt__'
,
_gt_from_le
)],
'__gt__'
:
[(
'__lt__'
,
_lt_from_gt
),
(
'__ge__'
,
_ge_from_gt
),
(
'__le__'
,
_le_from_gt
)],
'__ge__'
:
[(
'__le__'
,
_le_from_ge
),
(
'__gt__'
,
_gt_from_ge
),
(
'__lt__'
,
_lt_from_ge
)]
}
def
total_ordering
(
cls
):
"""Class decorator that fills in missing ordering methods"""
convert
=
{
'__lt__'
:
[(
'__gt__'
,
_gt_from_lt
),
(
'__le__'
,
_le_from_lt
),
(
'__ge__'
,
_ge_from_lt
)],
'__le__'
:
[(
'__ge__'
,
_ge_from_le
),
(
'__lt__'
,
_lt_from_le
),
(
'__gt__'
,
_gt_from_le
)],
'__gt__'
:
[(
'__lt__'
,
_lt_from_gt
),
(
'__ge__'
,
_ge_from_gt
),
(
'__le__'
,
_le_from_gt
)],
'__ge__'
:
[(
'__le__'
,
_le_from_ge
),
(
'__gt__'
,
_gt_from_ge
),
(
'__lt__'
,
_lt_from_ge
)]
}
# Find user-defined comparisons (not those inherited from object).
roots
=
[
op
for
op
in
convert
if
getattr
(
cls
,
op
,
None
)
is
not
getattr
(
object
,
op
,
None
)]
roots
=
[
op
for
op
in
_
convert
if
getattr
(
cls
,
op
,
None
)
is
not
getattr
(
object
,
op
,
None
)]
if
not
roots
:
raise
ValueError
(
'must define at least one ordering operation: < > <= >='
)
root
=
max
(
roots
)
# prefer __lt__ to __le__ to __gt__ to __ge__
for
opname
,
opfunc
in
convert
[
root
]:
for
opname
,
opfunc
in
_
convert
[
root
]:
if
opname
not
in
roots
:
opfunc
.
__name__
=
opname
setattr
(
cls
,
opname
,
opfunc
)
...
...
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