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
75d26ccd
Kaydet (Commit)
75d26ccd
authored
Şub 15, 2007
tarafından
Guido van Rossum
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Some more test now pass.
üst
d81206d1
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
3 additions
and
4 deletions
+3
-4
BROKEN
BROKEN
+1
-2
UserDict.py
Lib/UserDict.py
+1
-1
test_richcmp.py
Lib/test/test_richcmp.py
+1
-1
No files found.
BROKEN
Dosyayı görüntüle @
75d26ccd
test_bsddb test_bsddb3 test_compile test_dumbdbm
test_bsddb test_bsddb3 test_compile test_dumbdbm
test_importhooks test_iter test_iterlen test_minidom test_mutants
test_importhooks test_iter test_iterlen test_minidom test_mutants
test_os test_pickletools test_plistlib test_richcmp test_shelve
test_os test_plistlib
test_unittest test_userdict
Lib/UserDict.py
Dosyayı görüntüle @
75d26ccd
...
@@ -117,7 +117,7 @@ class DictMixin:
...
@@ -117,7 +117,7 @@ class DictMixin:
def
items
(
self
):
def
items
(
self
):
return
list
(
self
.
iteritems
())
return
list
(
self
.
iteritems
())
def
clear
(
self
):
def
clear
(
self
):
for
key
in
self
.
keys
(
):
for
key
in
list
(
self
.
iterkeys
()
):
del
self
[
key
]
del
self
[
key
]
def
setdefault
(
self
,
key
,
default
=
None
):
def
setdefault
(
self
,
key
,
default
=
None
):
try
:
try
:
...
...
Lib/test/test_richcmp.py
Dosyayı görüntüle @
75d26ccd
...
@@ -265,7 +265,7 @@ class DictTest(unittest.TestCase):
...
@@ -265,7 +265,7 @@ class DictTest(unittest.TestCase):
imag1a
=
{}
imag1a
=
{}
for
i
in
range
(
50
):
for
i
in
range
(
50
):
imag1a
[
random
.
randrange
(
100
)
*
1
j
]
=
random
.
randrange
(
100
)
*
1
j
imag1a
[
random
.
randrange
(
100
)
*
1
j
]
=
random
.
randrange
(
100
)
*
1
j
items
=
imag1a
.
items
(
)
items
=
list
(
imag1a
.
items
()
)
random
.
shuffle
(
items
)
random
.
shuffle
(
items
)
imag1b
=
{}
imag1b
=
{}
for
k
,
v
in
items
:
for
k
,
v
in
items
:
...
...
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