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
5ebfa2ae
Kaydet (Commit)
5ebfa2ae
authored
Şub 23, 2000
tarafından
Andrew M. Kuchling
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Add tests to exercise sequence operations (multiplication, indexing,
slicing) using long integers
üst
0f223d24
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
25 additions
and
0 deletions
+25
-0
test_types.py
Lib/test/test_types.py
+25
-0
No files found.
Lib/test/test_types.py
Dosyayı görüntüle @
5ebfa2ae
...
...
@@ -130,7 +130,9 @@ if len([1,]) <> 1: raise TestFailed, 'len([1,])'
if
len
([
1
,
2
,
3
,
4
,
5
,
6
])
<>
6
:
raise
TestFailed
,
'len([1,2,3,4,5,6])'
if
[
1
,
2
]
+
[
3
,
4
]
<>
[
1
,
2
,
3
,
4
]:
raise
TestFailed
,
'list concatenation'
if
[
1
,
2
]
*
3
<>
[
1
,
2
,
1
,
2
,
1
,
2
]:
raise
TestFailed
,
'list repetition *3'
if
[
1
,
2
]
*
3L
<>
[
1
,
2
,
1
,
2
,
1
,
2
]:
raise
TestFailed
,
'list repetition *3L'
if
0
*
[
1
,
2
,
3
]
<>
[]:
raise
TestFailed
,
'list repetition 0*'
if
0L
*
[
1
,
2
,
3
]
<>
[]:
raise
TestFailed
,
'list repetition 0L*'
if
min
([
1
,
2
])
<>
1
or
max
([
1
,
2
])
<>
2
:
raise
TestFailed
,
'min/max list'
if
0
in
[
0
,
1
,
2
]
and
1
in
[
0
,
1
,
2
]
and
2
in
[
0
,
1
,
2
]
and
3
not
in
[
0
,
1
,
2
]:
pass
else
:
raise
TestFailed
,
'in/not in list'
...
...
@@ -150,10 +152,17 @@ if a != [1, 1, 2, 3, 4, 5, 5]:
print
'6.5.3a Additional list operations'
a
=
[
0
,
1
,
2
,
3
,
4
]
a
[
0L
]
=
1
a
[
1L
]
=
2
a
[
2L
]
=
3
if
a
<>
[
1
,
2
,
3
,
3
,
4
]:
raise
TestFailed
,
'list item assignment [0L], [1L], [2L]'
a
[
0
]
=
5
a
[
1
]
=
6
a
[
2
]
=
7
if
a
<>
[
5
,
6
,
7
,
3
,
4
]:
raise
TestFailed
,
'list item assignment [0], [1], [2]'
a
[
-
2L
]
=
88
a
[
-
1L
]
=
99
if
a
<>
[
5
,
6
,
7
,
88
,
99
]:
raise
TestFailed
,
'list item assignment [-2L], [-1L]'
a
[
-
2
]
=
8
a
[
-
1
]
=
9
if
a
<>
[
5
,
6
,
7
,
8
,
9
]:
raise
TestFailed
,
'list item assignment [-2], [-1]'
...
...
@@ -161,12 +170,21 @@ a[:2] = [0,4]
a
[
-
3
:]
=
[]
a
[
1
:
1
]
=
[
1
,
2
,
3
]
if
a
<>
[
0
,
1
,
2
,
3
,
4
]:
raise
TestFailed
,
'list slice assignment'
a
[
1L
:
4L
]
=
[
7
,
8
,
9
]
if
a
<>
[
0
,
7
,
8
,
9
,
4
]:
raise
TestFailed
,
'list slice assignment using long ints'
del
a
[
1
:
4
]
if
a
<>
[
0
,
4
]:
raise
TestFailed
,
'list slice deletion'
del
a
[
0
]
if
a
<>
[
4
]:
raise
TestFailed
,
'list item deletion [0]'
del
a
[
-
1
]
if
a
<>
[]:
raise
TestFailed
,
'list item deletion [-1]'
a
=
range
(
0
,
5
)
del
a
[
1L
:
4L
]
if
a
<>
[
0
,
4
]:
raise
TestFailed
,
'list slice deletion'
del
a
[
0L
]
if
a
<>
[
4
]:
raise
TestFailed
,
'list item deletion [0]'
del
a
[
-
1L
]
if
a
<>
[]:
raise
TestFailed
,
'list item deletion [-1]'
a
.
append
(
0
)
a
.
append
(
1
)
a
.
append
(
2
)
...
...
@@ -192,6 +210,13 @@ def myComparison(x,y):
z
=
range
(
12
)
z
.
sort
(
myComparison
)
# Test extreme cases with long ints
a
=
[
0
,
1
,
2
,
3
,
4
]
if
a
[
-
pow
(
2
,
128L
):
3
]
!=
[
0
,
1
,
2
]:
raise
TestFailed
,
"list slicing with too-small long integer"
if
a
[
3
:
pow
(
2
,
145L
)
]
!=
[
3
,
4
]:
raise
TestFailed
,
"list slicing with too-large long integer"
print
'6.6 Mappings == Dictionaries'
d
=
{}
if
d
.
keys
()
<>
[]:
raise
TestFailed
,
'{}.keys()'
...
...
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