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
a094f04e
Kaydet (Commit)
a094f04e
authored
Eyl 28, 2013
tarafından
Benjamin Peterson
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
fix duplicate test names (closes #19115)
Patch by Xavier de Gaye.
üst
cfa55744
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
5 additions
and
5 deletions
+5
-5
test_fixers.py
Lib/lib2to3/tests/test_fixers.py
+5
-5
No files found.
Lib/lib2to3/tests/test_fixers.py
Dosyayı görüntüle @
a094f04e
...
@@ -1405,27 +1405,27 @@ class Test_dict(FixerTestCase):
...
@@ -1405,27 +1405,27 @@ class Test_dict(FixerTestCase):
a
=
"d.values()"
a
=
"d.values()"
self
.
check
(
b
,
a
)
self
.
check
(
b
,
a
)
def
test_
14
(
self
):
def
test_
28
(
self
):
b
=
"[i for i in d.viewkeys()]"
b
=
"[i for i in d.viewkeys()]"
a
=
"[i for i in d.keys()]"
a
=
"[i for i in d.keys()]"
self
.
check
(
b
,
a
)
self
.
check
(
b
,
a
)
def
test_
15
(
self
):
def
test_
29
(
self
):
b
=
"(i for i in d.viewkeys())"
b
=
"(i for i in d.viewkeys())"
a
=
"(i for i in d.keys())"
a
=
"(i for i in d.keys())"
self
.
check
(
b
,
a
)
self
.
check
(
b
,
a
)
def
test_
17
(
self
):
def
test_
30
(
self
):
b
=
"iter(d.viewkeys())"
b
=
"iter(d.viewkeys())"
a
=
"iter(d.keys())"
a
=
"iter(d.keys())"
self
.
check
(
b
,
a
)
self
.
check
(
b
,
a
)
def
test_
18
(
self
):
def
test_
31
(
self
):
b
=
"list(d.viewkeys())"
b
=
"list(d.viewkeys())"
a
=
"list(d.keys())"
a
=
"list(d.keys())"
self
.
check
(
b
,
a
)
self
.
check
(
b
,
a
)
def
test_
19
(
self
):
def
test_
32
(
self
):
b
=
"sorted(d.viewkeys())"
b
=
"sorted(d.viewkeys())"
a
=
"sorted(d.keys())"
a
=
"sorted(d.keys())"
self
.
check
(
b
,
a
)
self
.
check
(
b
,
a
)
...
...
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