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
f1182cd4
Kaydet (Commit)
f1182cd4
authored
Kas 05, 2011
tarafından
Raymond Hettinger
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Sade Fark
Merge
üst
748d7ae2
4e6bf419
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
12 additions
and
2 deletions
+12
-2
__init__.py
Lib/collections/__init__.py
+6
-2
test_collections.py
Lib/test/test_collections.py
+6
-0
No files found.
Lib/collections/__init__.py
Dosyayı görüntüle @
f1182cd4
...
...
@@ -585,8 +585,12 @@ class Counter(dict):
def
__repr__
(
self
):
if
not
self
:
return
'
%
s()'
%
self
.
__class__
.
__name__
items
=
', '
.
join
(
map
(
'
%
r:
%
r'
.
__mod__
,
self
.
most_common
()))
return
'
%
s({
%
s})'
%
(
self
.
__class__
.
__name__
,
items
)
try
:
items
=
', '
.
join
(
map
(
'
%
r:
%
r'
.
__mod__
,
self
.
most_common
()))
return
'
%
s({
%
s})'
%
(
self
.
__class__
.
__name__
,
items
)
except
TypeError
:
# handle case where values are not orderable
return
'{0}({1!r})'
.
format
(
self
.
__class__
.
__name__
,
dict
(
self
))
# Multiset-style mathematical operations discussed in:
# Knuth TAOCP Volume II section 4.6.3 exercise 19
...
...
Lib/test/test_collections.py
Dosyayı görüntüle @
f1182cd4
...
...
@@ -969,6 +969,12 @@ class TestCounter(unittest.TestCase):
self
.
assertEqual
(
dict
(
+
c
),
dict
(
c
=
5
,
d
=
10
,
e
=
15
,
g
=
40
))
self
.
assertEqual
(
dict
(
-
c
),
dict
(
a
=
5
))
def
test_repr_nonsortable
(
self
):
c
=
Counter
(
a
=
2
,
b
=
None
)
r
=
repr
(
c
)
self
.
assertIn
(
"'a': 2"
,
r
)
self
.
assertIn
(
"'b': None"
,
r
)
def
test_helper_function
(
self
):
# two paths, one for real dicts and one for other mappings
elems
=
list
(
'abracadabra'
)
...
...
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