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
287c5594
Kaydet (Commit)
287c5594
authored
Tem 21, 2017
tarafından
Utkarsh Upadhyay
Kaydeden (comit)
Victor Stinner
Tem 21, 2017
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
bpo-30822: Fix testing of datetime module. (#2530) (#2783)
Only C implementation was tested.
üst
fff2a210
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
15 additions
and
9 deletions
+15
-9
datetime.py
Lib/datetime.py
+2
-1
datetimetester.py
Lib/test/datetimetester.py
+7
-5
test_datetime.py
Lib/test/test_datetime.py
+5
-3
ACKS
Misc/ACKS
+1
-0
No files found.
Lib/datetime.py
Dosyayı görüntüle @
287c5594
...
...
@@ -2271,7 +2271,8 @@ else:
_check_tzinfo_arg
,
_check_tzname
,
_check_utc_offset
,
_cmp
,
_cmperror
,
_date_class
,
_days_before_month
,
_days_before_year
,
_days_in_month
,
_format_time
,
_is_leap
,
_isoweek1monday
,
_math
,
_ord2ymd
,
_time
,
_time_class
,
_tzinfo_class
,
_wrap_strftime
,
_ymd2ord
)
_time
,
_time_class
,
_tzinfo_class
,
_wrap_strftime
,
_ymd2ord
,
_divide_and_round
)
# XXX Since import * above excludes names that start with _,
# docstring does not get overwritten. In the future, it may be
# appropriate to maintain a single module level docstring and
...
...
Lib/test/datetimetester.py
Dosyayı görüntüle @
287c5594
...
...
@@ -61,8 +61,9 @@ class TestModule(unittest.TestCase):
self
.
assertEqual
(
datetime
.
MAXYEAR
,
9999
)
def
test_name_cleanup
(
self
):
if
'_Fast'
not
in
str
(
self
):
return
if
'_Pure'
in
self
.
__class__
.
__name__
:
self
.
skipTest
(
'Only run for Fast C implementation'
)
datetime
=
datetime_module
names
=
set
(
name
for
name
in
dir
(
datetime
)
if
not
name
.
startswith
(
'__'
)
and
not
name
.
endswith
(
'__'
))
...
...
@@ -72,8 +73,9 @@ class TestModule(unittest.TestCase):
self
.
assertEqual
(
names
-
allowed
,
set
([]))
def
test_divide_and_round
(
self
):
if
'_Fast'
in
str
(
self
):
return
if
'_Fast'
in
self
.
__class__
.
__name__
:
self
.
skipTest
(
'Only run for Pure Python implementation'
)
dar
=
datetime_module
.
_divide_and_round
self
.
assertEqual
(
dar
(
-
10
,
-
3
),
3
)
...
...
@@ -2851,7 +2853,7 @@ class TestTimeTZ(TestTime, TZInfoBase, unittest.TestCase):
self
.
assertRaises
(
TypeError
,
t
.
strftime
,
"
%
Z"
)
# Issue #6697:
if
'_Fast'
in
s
tr
(
self
)
:
if
'_Fast'
in
s
elf
.
__class__
.
__name__
:
Badtzname
.
tz
=
'
\ud800
'
self
.
assertRaises
(
ValueError
,
t
.
strftime
,
"
%
Z"
)
...
...
Lib/test/test_datetime.py
Dosyayı görüntüle @
287c5594
...
...
@@ -20,7 +20,7 @@ test_suffixes = ["_Pure", "_Fast"]
# XXX(gb) First run all the _Pure tests, then all the _Fast tests. You might
# not believe this, but in spite of all the sys.modules trickery running a _Pure
# test last will leave a mix of pure and native datetime stuff lying around.
test_classes
=
[]
all_
test_classes
=
[]
for
module
,
suffix
in
zip
(
test_modules
,
test_suffixes
):
test_classes
=
[]
...
...
@@ -34,7 +34,8 @@ for module, suffix in zip(test_modules, test_suffixes):
test_classes
.
extend
(
type
(
test
)
for
test
in
suit
)
test_classes
=
sorted
(
set
(
test_classes
),
key
=
lambda
cls
:
cls
.
__qualname__
)
for
cls
in
test_classes
:
cls
.
__name__
=
name
+
suffix
cls
.
__name__
+=
suffix
cls
.
__qualname__
+=
suffix
@classmethod
def
setUpClass
(
cls_
,
module
=
module
):
cls_
.
_save_sys_modules
=
sys
.
modules
.
copy
()
...
...
@@ -47,9 +48,10 @@ for module, suffix in zip(test_modules, test_suffixes):
sys
.
modules
.
update
(
cls_
.
_save_sys_modules
)
cls
.
setUpClass
=
setUpClass
cls
.
tearDownClass
=
tearDownClass
all_test_classes
.
extend
(
test_classes
)
def
test_main
():
run_unittest
(
*
test_classes
)
run_unittest
(
*
all_
test_classes
)
if
__name__
==
"__main__"
:
test_main
()
Misc/ACKS
Dosyayı görüntüle @
287c5594
...
...
@@ -1602,6 +1602,7 @@ Doobee R. Tzeck
Eren Türkay
Lionel Ulmer
Adnan Umer
Utkarsh Upadhyay
Roger Upole
Daniel Urban
Michael Urman
...
...
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