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
8876145f
Kaydet (Commit)
8876145f
authored
Ara 27, 2012
tarafından
Serhiy Storchaka
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Issue #16793. Replace deprecated unittest asserts with modern counterparts.
üst
270767b2
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
12 additions
and
12 deletions
+12
-12
test_bitfields.py
Lib/ctypes/test/test_bitfields.py
+4
-4
test_calendar.py
Lib/test/test_calendar.py
+1
-1
test_int.py
Lib/test/test_int.py
+5
-5
test_mutex.py
Lib/test/test_mutex.py
+1
-1
test_tarfile.py
Lib/test/test_tarfile.py
+1
-1
No files found.
Lib/ctypes/test/test_bitfields.py
Dosyayı görüntüle @
8876145f
...
...
@@ -246,9 +246,9 @@ class BitFieldTest(unittest.TestCase):
_fields_
=
[(
"a"
,
c_uint32
,
32
)]
x
=
X
()
x
.
a
=
10
self
.
assertEqual
s
(
x
.
a
,
10
)
self
.
assertEqual
(
x
.
a
,
10
)
x
.
a
=
0xFDCBA987
self
.
assertEqual
s
(
x
.
a
,
0xFDCBA987
)
self
.
assertEqual
(
x
.
a
,
0xFDCBA987
)
@unittest.skipUnless
(
hasattr
(
ctypes
,
"c_uint64"
),
"c_int64 is required"
)
def
test_uint64
(
self
):
...
...
@@ -256,9 +256,9 @@ class BitFieldTest(unittest.TestCase):
_fields_
=
[(
"a"
,
c_uint64
,
64
)]
x
=
X
()
x
.
a
=
10
self
.
assertEqual
s
(
x
.
a
,
10
)
self
.
assertEqual
(
x
.
a
,
10
)
x
.
a
=
0xFEDCBA9876543211
self
.
assertEqual
s
(
x
.
a
,
0xFEDCBA9876543211
)
self
.
assertEqual
(
x
.
a
,
0xFEDCBA9876543211
)
if
__name__
==
"__main__"
:
unittest
.
main
()
Lib/test/test_calendar.py
Dosyayı görüntüle @
8876145f
...
...
@@ -261,7 +261,7 @@ class CalendarTestCase(unittest.TestCase):
return
calendar
.
LocaleHTMLCalendar
(
locale
=
''
)
.
formatmonthname
(
2010
,
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
):
# ensure itermonthdates doesn't overflow after datetime.MAXYEAR
...
...
Lib/test/test_int.py
Dosyayı görüntüle @
8876145f
...
...
@@ -347,8 +347,8 @@ class IntTestCases(IntLongCommonTests, unittest.TestCase):
for
x
in
values
:
msg
=
'x has value
%
s and type
%
s'
%
(
x
,
type
(
x
)
.
__name__
)
try
:
self
.
assertEqual
s
(
int
(
x
),
100
,
msg
=
msg
)
self
.
assertEqual
s
(
int
(
x
,
2
),
4
,
msg
=
msg
)
self
.
assertEqual
(
int
(
x
),
100
,
msg
=
msg
)
self
.
assertEqual
(
int
(
x
,
2
),
4
,
msg
=
msg
)
except
TypeError
,
err
:
raise
AssertionError
(
'For
%
s got TypeError:
%
s'
%
(
type
(
x
)
.
__name__
,
err
))
...
...
@@ -373,10 +373,10 @@ class IntTestCases(IntLongCommonTests, unittest.TestCase):
# expects x to be a string if base is given.
@test_support.cpython_only
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.
self
.
assertEqual
s
(
int
(
base
=
1
),
0
)
self
.
assertEqual
s
(
int
(
base
=
1000
),
0
)
self
.
assertEqual
(
int
(
base
=
1
),
0
)
self
.
assertEqual
(
int
(
base
=
1000
),
0
)
@test_support.cpython_only
def
test_small_ints
(
self
):
...
...
Lib/test/test_mutex.py
Dosyayı görüntüle @
8876145f
...
...
@@ -14,7 +14,7 @@ class MutexTest(unittest.TestCase):
m
.
lock
(
called_by_mutex2
,
"eggs"
)
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
(
ready_for_2
,
"called_by_mutex2 called too soon"
)
...
...
Lib/test/test_tarfile.py
Dosyayı görüntüle @
8876145f
...
...
@@ -858,7 +858,7 @@ class WriteTest(WriteTestBase):
tar
=
tarfile
.
open
(
tmpname
,
"r"
)
for
t
in
tar
:
self
.
assert
_
(
t
.
name
==
"."
or
t
.
name
.
startswith
(
"./"
))
self
.
assert
True
(
t
.
name
==
"."
or
t
.
name
.
startswith
(
"./"
))
tar
.
close
()
finally
:
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