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
56de7e2a
Kaydet (Commit)
56de7e2a
authored
Nis 10, 2010
tarafından
Raymond Hettinger
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Issue 8361: Remove assert from functools.total_ordering
üst
c075f07a
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
2 deletions
+3
-2
functools.py
Lib/functools.py
+3
-2
No files found.
Lib/functools.py
Dosyayı görüntüle @
56de7e2a
...
@@ -67,8 +67,9 @@ def total_ordering(cls):
...
@@ -67,8 +67,9 @@ def total_ordering(cls):
(
'__lt__'
,
lambda
self
,
other
:
not
self
>=
other
)]
(
'__lt__'
,
lambda
self
,
other
:
not
self
>=
other
)]
}
}
roots
=
set
(
dir
(
cls
))
&
set
(
convert
)
roots
=
set
(
dir
(
cls
))
&
set
(
convert
)
assert
roots
,
'must define at least one ordering operation: < > <= >='
if
not
roots
:
root
=
max
(
roots
)
# prefer __lt __ to __le__ to __gt__ to __ge__
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
:
if
opname
not
in
roots
:
opfunc
.
__name__
=
opname
opfunc
.
__name__
=
opname
...
...
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