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
73691326
Kaydet (Commit)
73691326
authored
Ock 08, 2011
tarafından
Victor Stinner
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Issue #1777412: test large years value for strftime('%Y')
üst
73ea29cb
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
10 additions
and
5 deletions
+10
-5
test_time.py
Lib/test/test_time.py
+10
-5
No files found.
Lib/test/test_time.py
Dosyayı görüntüle @
73691326
...
...
@@ -280,7 +280,7 @@ class _TestAsctimeYear:
return
time
.
asctime
((
y
,)
+
(
0
,)
*
8
)
.
split
()[
-
1
]
def
test_large_year
(
self
):
# Check that it doesn't crash
with
year > 9999
# Check that it doesn't crash
for
year > 9999
self
.
assertEqual
(
self
.
yearstr
(
12345
),
'12345'
)
self
.
assertEqual
(
self
.
yearstr
(
123456789
),
'123456789'
)
...
...
@@ -289,16 +289,21 @@ class _TestStrftimeYear:
return
time
.
strftime
(
'
%
Y'
,
(
y
,)
+
(
0
,)
*
8
)
.
split
()[
-
1
]
def
test_large_year
(
self
):
# Just check that it doesn't crash with year > 9999: it may or may not
# raise an error depending on the OS and compiler
# Check that it doesn't crash for year > 9999
try
:
self
.
yearstr
(
12345
)
text
=
self
.
yearstr
(
12345
)
except
ValueError
:
# If Python is compiled with Visual Studio,
# year is limited to [1; 9999]
pass
else
:
self
.
assertEqual
(
text
,
'12345'
)
try
:
self
.
yearstr
(
123456
)
text
=
self
.
yearstr
(
123456789
)
except
ValueError
:
pass
else
:
self
.
assertEqual
(
text
,
'123456789'
)
class
_Test2dYear
(
_BaseYearTest
):
accept2dyear
=
1
...
...
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