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
e3656135
Kaydet (Commit)
e3656135
authored
Ock 09, 2010
tarafından
Mark Dickinson
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Issue #7532: Add additional slicing test cases for new- and old-style
classes. Patch by Florent Xicluna.
üst
dd6d92a5
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
97 additions
and
2 deletions
+97
-2
test_index.py
Lib/test/test_index.py
+97
-2
No files found.
Lib/test/test_index.py
Dosyayı görüntüle @
e3656135
...
...
@@ -89,6 +89,24 @@ class SeqTestCase(unittest.TestCase):
self
.
assertEqual
(
self
.
seq
[
self
.
o
:
self
.
o2
],
self
.
seq
[
1
:
3
])
self
.
assertEqual
(
self
.
seq
[
self
.
n
:
self
.
n2
],
self
.
seq
[
2
:
4
])
def
test_slice_bug7532
(
self
):
seqlen
=
len
(
self
.
seq
)
self
.
o
.
ind
=
int
(
seqlen
*
1.5
)
self
.
n
.
ind
=
seqlen
+
2
self
.
assertEqual
(
self
.
seq
[
self
.
o
:],
self
.
seq
[
0
:
0
])
self
.
assertEqual
(
self
.
seq
[:
self
.
o
],
self
.
seq
)
self
.
assertEqual
(
self
.
seq
[
self
.
n
:],
self
.
seq
[
0
:
0
])
self
.
assertEqual
(
self
.
seq
[:
self
.
n
],
self
.
seq
)
if
isinstance
(
self
.
seq
,
ClassicSeq
):
return
# These tests fail for ClassicSeq (see bug #7532)
self
.
o2
.
ind
=
-
seqlen
-
2
self
.
n2
.
ind
=
-
int
(
seqlen
*
1.5
)
self
.
assertEqual
(
self
.
seq
[
self
.
o2
:],
self
.
seq
)
self
.
assertEqual
(
self
.
seq
[:
self
.
o2
],
self
.
seq
[
0
:
0
])
self
.
assertEqual
(
self
.
seq
[
self
.
n2
:],
self
.
seq
)
self
.
assertEqual
(
self
.
seq
[:
self
.
n2
],
self
.
seq
[
0
:
0
])
def
test_repeat
(
self
):
self
.
o
.
ind
=
3
self
.
n
.
ind
=
2
...
...
@@ -156,6 +174,40 @@ class ListTestCase(SeqTestCase):
self
.
assertEqual
(
lst
,
[
5
,
6
,
7
,
8
,
9
,
11
]
*
3
)
class
_BaseSeq
:
def
__init__
(
self
,
iterable
):
self
.
_list
=
list
(
iterable
)
def
__repr__
(
self
):
return
repr
(
self
.
_list
)
def
__eq__
(
self
,
other
):
return
self
.
_list
==
other
def
__len__
(
self
):
return
len
(
self
.
_list
)
def
__mul__
(
self
,
n
):
return
self
.
__class__
(
self
.
_list
*
n
)
__rmul__
=
__mul__
def
__getitem__
(
self
,
index
):
return
self
.
_list
[
index
]
class
_GetSliceMixin
:
def
__getslice__
(
self
,
i
,
j
):
return
self
.
_list
.
__getslice__
(
i
,
j
)
class
ClassicSeq
(
_BaseSeq
):
pass
class
NewSeq
(
_BaseSeq
,
object
):
pass
class
ClassicSeqDeprecated
(
_GetSliceMixin
,
ClassicSeq
):
pass
class
NewSeqDeprecated
(
_GetSliceMixin
,
NewSeq
):
pass
class
TupleTestCase
(
SeqTestCase
):
seq
=
(
0
,
10
,
20
,
30
,
40
,
50
)
...
...
@@ -165,6 +217,18 @@ class StringTestCase(SeqTestCase):
class
UnicodeTestCase
(
SeqTestCase
):
seq
=
u"this is a test"
class
ClassicSeqTestCase
(
SeqTestCase
):
seq
=
ClassicSeq
((
0
,
10
,
20
,
30
,
40
,
50
))
class
NewSeqTestCase
(
SeqTestCase
):
seq
=
NewSeq
((
0
,
10
,
20
,
30
,
40
,
50
))
class
ClassicSeqDeprecatedTestCase
(
SeqTestCase
):
seq
=
ClassicSeqDeprecated
((
0
,
10
,
20
,
30
,
40
,
50
))
class
NewSeqDeprecatedTestCase
(
SeqTestCase
):
seq
=
NewSeqDeprecated
((
0
,
10
,
20
,
30
,
40
,
50
))
class
XRangeTestCase
(
unittest
.
TestCase
):
...
...
@@ -185,6 +249,20 @@ class OverflowTestCase(unittest.TestCase):
self
.
assertEqual
(
self
.
neg
.
__index__
(),
self
.
neg
)
def
_getitem_helper
(
self
,
base
):
class
GetItem
(
base
):
def
__len__
(
self
):
return
maxint
# cannot return long here
def
__getitem__
(
self
,
key
):
return
key
x
=
GetItem
()
self
.
assertEqual
(
x
[
self
.
pos
],
self
.
pos
)
self
.
assertEqual
(
x
[
self
.
neg
],
self
.
neg
)
self
.
assertEqual
(
x
[
self
.
neg
:
self
.
pos
]
.
indices
(
maxsize
),
(
0
,
maxsize
,
1
))
self
.
assertEqual
(
x
[
self
.
neg
:
self
.
pos
:
1
]
.
indices
(
maxsize
),
(
0
,
maxsize
,
1
))
def
_getslice_helper_deprecated
(
self
,
base
):
class
GetItem
(
base
):
def
__len__
(
self
):
return
maxint
#cannot return long here
...
...
@@ -196,14 +274,22 @@ class OverflowTestCase(unittest.TestCase):
self
.
assertEqual
(
x
[
self
.
pos
],
self
.
pos
)
self
.
assertEqual
(
x
[
self
.
neg
],
self
.
neg
)
self
.
assertEqual
(
x
[
self
.
neg
:
self
.
pos
],
(
maxint
+
minsize
,
maxsize
))
self
.
assertEqual
(
x
[
self
.
neg
:
self
.
pos
:
1
]
.
indices
(
maxsize
),
(
0
,
maxsize
,
1
))
self
.
assertEqual
(
x
[
self
.
neg
:
self
.
pos
:
1
]
.
indices
(
maxsize
),
(
0
,
maxsize
,
1
))
def
test_getitem
(
self
):
self
.
_getitem_helper
(
object
)
# Silence Py3k warning
with
test_support
.
check_warnings
():
self
.
_getslice_helper_deprecated
(
object
)
def
test_getitem_classic
(
self
):
class
Empty
:
pass
self
.
_getitem_helper
(
Empty
)
# XXX This test fails (see bug #7532)
#self._getitem_helper(Empty)
# Silence Py3k warning
with
test_support
.
check_warnings
():
self
.
_getslice_helper_deprecated
(
Empty
)
def
test_sequence_repeat
(
self
):
self
.
assertRaises
(
OverflowError
,
lambda
:
"a"
*
self
.
pos
)
...
...
@@ -217,9 +303,18 @@ def test_main():
TupleTestCase
,
StringTestCase
,
UnicodeTestCase
,
ClassicSeqTestCase
,
NewSeqTestCase
,
XRangeTestCase
,
OverflowTestCase
,
)
# Silence Py3k warning
with
test_support
.
check_warnings
():
test_support
.
run_unittest
(
ClassicSeqDeprecatedTestCase
,
NewSeqDeprecatedTestCase
,
)
if
__name__
==
"__main__"
:
test_main
()
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