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
9c2930e4
Kaydet (Commit)
9c2930e4
authored
Agu 23, 2010
tarafından
Benjamin Peterson
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
run total_ordering() tests, and fix the function (default comparisons shouldn't be considered)
üst
73117297
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
6 additions
and
2 deletions
+6
-2
functools.py
Lib/functools.py
+4
-1
test_functools.py
Lib/test/test_functools.py
+2
-1
No files found.
Lib/functools.py
Dosyayı görüntüle @
9c2930e4
...
...
@@ -65,6 +65,7 @@ def wraps(wrapped,
return
partial
(
update_wrapper
,
wrapped
=
wrapped
,
assigned
=
assigned
,
updated
=
updated
)
_object_defaults
=
{
object
.
__lt__
,
object
.
__le__
,
object
.
__gt__
,
object
.
__ge__
}
def
total_ordering
(
cls
):
"""Class decorator that fills in missing ordering methods"""
convert
=
{
...
...
@@ -81,7 +82,9 @@ def total_ordering(cls):
(
'__gt__'
,
lambda
self
,
other
:
not
other
>=
self
),
(
'__lt__'
,
lambda
self
,
other
:
not
self
>=
other
)]
}
roots
=
set
(
dir
(
cls
))
&
set
(
convert
)
roots
=
(
set
(
dir
(
cls
))
&
set
(
convert
))
# Remove default comparison operations defined on object.
roots
-=
{
meth
for
meth
in
roots
if
getattr
(
cls
,
meth
)
in
_object_defaults
}
if
not
roots
:
raise
ValueError
(
'must define at least one ordering operation: < > <= >='
)
root
=
max
(
roots
)
# prefer __lt__ to __le__ to __gt__ to __ge__
...
...
Lib/test/test_functools.py
Dosyayı görüntüle @
9c2930e4
...
...
@@ -481,7 +481,7 @@ class TestTotalOrdering(unittest.TestCase):
# new methods should not overwrite existing
@functools.total_ordering
class
A
(
int
):
raise
Exception
()
pass
self
.
assert_
(
A
(
1
)
<
A
(
2
))
self
.
assert_
(
A
(
2
)
>
A
(
1
))
self
.
assert_
(
A
(
1
)
<=
A
(
2
))
...
...
@@ -564,6 +564,7 @@ def test_main(verbose=None):
TestPartialSubclass
,
TestPythonPartial
,
TestUpdateWrapper
,
TestTotalOrdering
,
TestWraps
,
TestReduce
,
TestLRU
,
...
...
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