Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
C
cpython
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kirill Smelkov
cpython
Commits
ee71f4a8
Commit
ee71f4a8
authored
Mar 02, 2013
by
Ezio Melotti
Browse files
Options
Browse Files
Download
Plain Diff
#17334: merge with 3.3.
parents
5c67e221
bce9a5d5
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
11 additions
and
21 deletions
+11
-21
Lib/test/test_index.py
Lib/test/test_index.py
+8
-21
Misc/NEWS
Misc/NEWS
+3
-0
No files found.
Lib/test/test_index.py
View file @
ee71f4a8
...
...
@@ -56,7 +56,7 @@ class BaseTestCase(unittest.TestCase):
self
.
assertRaises
(
TypeError
,
slice
(
self
.
n
).
indices
,
0
)
class
SeqTestCase
(
unittest
.
TestCase
)
:
class
SeqTestCase
:
# This test case isn't run directly. It just defines common tests
# to the different sequence types below
def
setUp
(
self
):
...
...
@@ -126,7 +126,7 @@ class SeqTestCase(unittest.TestCase):
self
.
assertRaises
(
TypeError
,
sliceobj
,
self
.
n
,
self
)
class
ListTestCase
(
SeqTestCase
):
class
ListTestCase
(
SeqTestCase
,
unittest
.
TestCase
):
seq
=
[
0
,
10
,
20
,
30
,
40
,
50
]
def
test_setdelitem
(
self
):
...
...
@@ -182,19 +182,19 @@ class NewSeq:
return
self
.
_list
[
index
]
class
TupleTestCase
(
SeqTestCase
):
class
TupleTestCase
(
SeqTestCase
,
unittest
.
TestCase
):
seq
=
(
0
,
10
,
20
,
30
,
40
,
50
)
class
ByteArrayTestCase
(
SeqTestCase
):
class
ByteArrayTestCase
(
SeqTestCase
,
unittest
.
TestCase
):
seq
=
bytearray
(
b"this is a test"
)
class
BytesTestCase
(
SeqTestCase
):
class
BytesTestCase
(
SeqTestCase
,
unittest
.
TestCase
):
seq
=
b"this is a test"
class
StringTestCase
(
SeqTestCase
):
class
StringTestCase
(
SeqTestCase
,
unittest
.
TestCase
):
seq
=
"this is a test"
class
NewSeqTestCase
(
SeqTestCase
):
class
NewSeqTestCase
(
SeqTestCase
,
unittest
.
TestCase
):
seq
=
NewSeq
((
0
,
10
,
20
,
30
,
40
,
50
))
...
...
@@ -237,18 +237,5 @@ class OverflowTestCase(unittest.TestCase):
self
.
assertRaises
(
OverflowError
,
lambda
:
"a"
*
self
.
neg
)
def
test_main
():
support
.
run_unittest
(
BaseTestCase
,
ListTestCase
,
TupleTestCase
,
BytesTestCase
,
ByteArrayTestCase
,
StringTestCase
,
NewSeqTestCase
,
RangeTestCase
,
OverflowTestCase
,
)
if
__name__
==
"__main__"
:
test_
main
()
unittest
.
main
()
Misc/NEWS
View file @
ee71f4a8
...
...
@@ -899,6 +899,9 @@ Tests
-
Issue
#
16836
:
Enable
IPv6
support
even
if
IPv6
is
disabled
on
the
build
host
.
-
Issue
#
17334
:
test_index
now
works
with
unittest
test
discovery
.
Patch
by
Zachary
Ware
.
-
Issue
#
17333
:
test_imaplib
now
works
with
unittest
test
discovery
.
Patch
by
Zachary
Ware
.
...
...
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