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
e7a2430d
Kaydet (Commit)
e7a2430d
authored
May 03, 2011
tarafından
Raymond Hettinger
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Sade Fark
Fix __hash__ in functools.cmp_to_key() to work with collections.Hashable.
üst
4e787aee
003be529
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
6 additions
and
3 deletions
+6
-3
functools.py
Lib/functools.py
+1
-2
test_functools.py
Lib/test/test_functools.py
+3
-1
NEWS
Misc/NEWS
+2
-0
No files found.
Lib/functools.py
Dosyayı görüntüle @
e7a2430d
...
...
@@ -111,8 +111,7 @@ def cmp_to_key(mycmp):
return
mycmp
(
self
.
obj
,
other
.
obj
)
>=
0
def
__ne__
(
self
,
other
):
return
mycmp
(
self
.
obj
,
other
.
obj
)
!=
0
def
__hash__
(
self
):
raise
TypeError
(
'hash not implemented'
)
__hash__
=
None
return
K
try
:
...
...
Lib/test/test_functools.py
Dosyayı görüntüle @
e7a2430d
import
functools
import
collections
import
sys
import
unittest
from
test
import
support
...
...
@@ -510,6 +511,7 @@ class TestCmpToKey(unittest.TestCase):
key
=
functools
.
cmp_to_key
(
mycmp
)
k
=
key
(
10
)
self
.
assertRaises
(
TypeError
,
hash
,
k
)
self
.
assertNotIsInstance
(
k
,
collections
.
Hashable
)
class
TestTotalOrdering
(
unittest
.
TestCase
):
...
...
@@ -718,12 +720,12 @@ class TestLRU(unittest.TestCase):
def
test_main
(
verbose
=
None
):
test_classes
=
(
TestCmpToKey
,
TestPartial
,
TestPartialSubclass
,
TestPythonPartial
,
TestUpdateWrapper
,
TestTotalOrdering
,
TestCmpToKey
,
TestWraps
,
TestReduce
,
TestLRU
,
...
...
Misc/NEWS
Dosyayı görüntüle @
e7a2430d
...
...
@@ -141,6 +141,8 @@ Library
- logging: don'
t
define
QueueListener
if
Python
has
no
thread
support
.
-
functools
.
cmp_to_key
()
now
works
with
collections
.
Hashable
().
-
Issue
#
11277
:
mmap
.
mmap
()
calls
fcntl
(
fd
,
F_FULLFSYNC
)
on
Mac
OS
X
to
get
around
a
mmap
bug
with
sparse
files
.
Patch
written
by
Steffen
Daode
Nurpmeso
.
...
...
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