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
8876145f
Commit
8876145f
authored
Dec 28, 2012
by
Serhiy Storchaka
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Issue #16793. Replace deprecated unittest asserts with modern counterparts.
parent
270767b2
Changes
5
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
12 additions
and
12 deletions
+12
-12
Lib/ctypes/test/test_bitfields.py
Lib/ctypes/test/test_bitfields.py
+4
-4
Lib/test/test_calendar.py
Lib/test/test_calendar.py
+1
-1
Lib/test/test_int.py
Lib/test/test_int.py
+5
-5
Lib/test/test_mutex.py
Lib/test/test_mutex.py
+1
-1
Lib/test/test_tarfile.py
Lib/test/test_tarfile.py
+1
-1
No files found.
Lib/ctypes/test/test_bitfields.py
View file @
8876145f
...
@@ -246,9 +246,9 @@ class BitFieldTest(unittest.TestCase):
...
@@ -246,9 +246,9 @@ class BitFieldTest(unittest.TestCase):
_fields_
=
[(
"a"
,
c_uint32
,
32
)]
_fields_
=
[(
"a"
,
c_uint32
,
32
)]
x
=
X
()
x
=
X
()
x
.
a
=
10
x
.
a
=
10
self
.
assertEqual
s
(
x
.
a
,
10
)
self
.
assertEqual
(
x
.
a
,
10
)
x
.
a
=
0xFDCBA987
x
.
a
=
0xFDCBA987
self
.
assertEqual
s
(
x
.
a
,
0xFDCBA987
)
self
.
assertEqual
(
x
.
a
,
0xFDCBA987
)
@
unittest
.
skipUnless
(
hasattr
(
ctypes
,
"c_uint64"
),
"c_int64 is required"
)
@
unittest
.
skipUnless
(
hasattr
(
ctypes
,
"c_uint64"
),
"c_int64 is required"
)
def
test_uint64
(
self
):
def
test_uint64
(
self
):
...
@@ -256,9 +256,9 @@ class BitFieldTest(unittest.TestCase):
...
@@ -256,9 +256,9 @@ class BitFieldTest(unittest.TestCase):
_fields_
=
[(
"a"
,
c_uint64
,
64
)]
_fields_
=
[(
"a"
,
c_uint64
,
64
)]
x
=
X
()
x
=
X
()
x
.
a
=
10
x
.
a
=
10
self
.
assertEqual
s
(
x
.
a
,
10
)
self
.
assertEqual
(
x
.
a
,
10
)
x
.
a
=
0xFEDCBA9876543211
x
.
a
=
0xFEDCBA9876543211
self
.
assertEqual
s
(
x
.
a
,
0xFEDCBA9876543211
)
self
.
assertEqual
(
x
.
a
,
0xFEDCBA9876543211
)
if
__name__
==
"__main__"
:
if
__name__
==
"__main__"
:
unittest
.
main
()
unittest
.
main
()
Lib/test/test_calendar.py
View file @
8876145f
...
@@ -261,7 +261,7 @@ class CalendarTestCase(unittest.TestCase):
...
@@ -261,7 +261,7 @@ class CalendarTestCase(unittest.TestCase):
return
return
calendar
.
LocaleHTMLCalendar
(
locale
=
''
).
formatmonthname
(
2010
,
10
)
calendar
.
LocaleHTMLCalendar
(
locale
=
''
).
formatmonthname
(
2010
,
10
)
new_october
=
calendar
.
TextCalendar
().
formatmonthname
(
2010
,
10
,
10
)
new_october
=
calendar
.
TextCalendar
().
formatmonthname
(
2010
,
10
,
10
)
self
.
assertEqual
s
(
old_october
,
new_october
)
self
.
assertEqual
(
old_october
,
new_october
)
def
test_itermonthdates
(
self
):
def
test_itermonthdates
(
self
):
# ensure itermonthdates doesn't overflow after datetime.MAXYEAR
# ensure itermonthdates doesn't overflow after datetime.MAXYEAR
...
...
Lib/test/test_int.py
View file @
8876145f
...
@@ -347,8 +347,8 @@ class IntTestCases(IntLongCommonTests, unittest.TestCase):
...
@@ -347,8 +347,8 @@ class IntTestCases(IntLongCommonTests, unittest.TestCase):
for
x
in
values
:
for
x
in
values
:
msg
=
'x has value %s and type %s'
%
(
x
,
type
(
x
).
__name__
)
msg
=
'x has value %s and type %s'
%
(
x
,
type
(
x
).
__name__
)
try
:
try
:
self
.
assertEqual
s
(
int
(
x
),
100
,
msg
=
msg
)
self
.
assertEqual
(
int
(
x
),
100
,
msg
=
msg
)
self
.
assertEqual
s
(
int
(
x
,
2
),
4
,
msg
=
msg
)
self
.
assertEqual
(
int
(
x
,
2
),
4
,
msg
=
msg
)
except
TypeError
,
err
:
except
TypeError
,
err
:
raise
AssertionError
(
'For %s got TypeError: %s'
%
raise
AssertionError
(
'For %s got TypeError: %s'
%
(
type
(
x
).
__name__
,
err
))
(
type
(
x
).
__name__
,
err
))
...
@@ -373,10 +373,10 @@ class IntTestCases(IntLongCommonTests, unittest.TestCase):
...
@@ -373,10 +373,10 @@ class IntTestCases(IntLongCommonTests, unittest.TestCase):
# expects x to be a string if base is given.
# expects x to be a string if base is given.
@
test_support
.
cpython_only
@
test_support
.
cpython_only
def
test_int_base_without_x_returns_0
(
self
):
def
test_int_base_without_x_returns_0
(
self
):
self
.
assertEqual
s
(
int
(
base
=
6
),
0
)
self
.
assertEqual
(
int
(
base
=
6
),
0
)
# Even invalid bases don't raise an exception.
# Even invalid bases don't raise an exception.
self
.
assertEqual
s
(
int
(
base
=
1
),
0
)
self
.
assertEqual
(
int
(
base
=
1
),
0
)
self
.
assertEqual
s
(
int
(
base
=
1000
),
0
)
self
.
assertEqual
(
int
(
base
=
1000
),
0
)
@
test_support
.
cpython_only
@
test_support
.
cpython_only
def
test_small_ints
(
self
):
def
test_small_ints
(
self
):
...
...
Lib/test/test_mutex.py
View file @
8876145f
...
@@ -14,7 +14,7 @@ class MutexTest(unittest.TestCase):
...
@@ -14,7 +14,7 @@ class MutexTest(unittest.TestCase):
m
.
lock
(
called_by_mutex2
,
"eggs"
)
m
.
lock
(
called_by_mutex2
,
"eggs"
)
def
called_by_mutex2
(
some_data
):
def
called_by_mutex2
(
some_data
):
self
.
assertEqual
s
(
some_data
,
"eggs"
)
self
.
assertEqual
(
some_data
,
"eggs"
)
self
.
assertTrue
(
m
.
test
(),
"mutex not held"
)
self
.
assertTrue
(
m
.
test
(),
"mutex not held"
)
self
.
assertTrue
(
ready_for_2
,
self
.
assertTrue
(
ready_for_2
,
"called_by_mutex2 called too soon"
)
"called_by_mutex2 called too soon"
)
...
...
Lib/test/test_tarfile.py
View file @
8876145f
...
@@ -858,7 +858,7 @@ class WriteTest(WriteTestBase):
...
@@ -858,7 +858,7 @@ class WriteTest(WriteTestBase):
tar
=
tarfile
.
open
(
tmpname
,
"r"
)
tar
=
tarfile
.
open
(
tmpname
,
"r"
)
for
t
in
tar
:
for
t
in
tar
:
self
.
assert
_
(
t
.
name
==
"."
or
t
.
name
.
startswith
(
"./"
))
self
.
assert
True
(
t
.
name
==
"."
or
t
.
name
.
startswith
(
"./"
))
tar
.
close
()
tar
.
close
()
finally
:
finally
:
os
.
chdir
(
cwd
)
os
.
chdir
(
cwd
)
...
...
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