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
e2eab5e7
Kaydet (Commit)
e2eab5e7
authored
May 14, 2012
tarafından
Antoine Pitrou
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Sade Fark
Followup to issue #14157: respect the relative ordering of values produced by time.strptime().
Patch by Hynek.
üst
4043d3de
072e4a3f
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
13 additions
and
0 deletions
+13
-0
_strptime.py
Lib/_strptime.py
+8
-0
test_strptime.py
Lib/test/test_strptime.py
+5
-0
No files found.
Lib/_strptime.py
Dosyayı görüntüle @
e2eab5e7
...
...
@@ -444,8 +444,10 @@ def _strptime(data_string, format="%a %b %d %H:%M:%S %Y"):
else
:
tz
=
value
break
leap_year_fix
=
False
if
year
is
None
and
month
==
2
and
day
==
29
:
year
=
1904
# 1904 is first leap year of 20th century
leap_year_fix
=
True
elif
year
is
None
:
year
=
1900
# If we know the week of the year and what day of that week, we can figure
...
...
@@ -476,6 +478,12 @@ def _strptime(data_string, format="%a %b %d %H:%M:%S %Y"):
else
:
gmtoff
=
None
if
leap_year_fix
:
# the caller didn't supply a year but asked for Feb 29th. We couldn't
# use the default of 1900 for computations. We set it back to ensure
# that February 29th is smaller than March 1st.
year
=
1900
return
(
year
,
month
,
day
,
hour
,
minute
,
second
,
weekday
,
julian
,
tz
,
gmtoff
,
tzname
),
fraction
...
...
Lib/test/test_strptime.py
Dosyayı görüntüle @
e2eab5e7
...
...
@@ -381,6 +381,11 @@ class StrptimeTests(unittest.TestCase):
def
test_feb29_on_leap_year_without_year
(
self
):
time
.
strptime
(
"Feb 29"
,
"
%
b
%
d"
)
def
test_mar1_comes_after_feb29_even_when_omitting_the_year
(
self
):
self
.
assertLess
(
time
.
strptime
(
"Feb 29"
,
"
%
b
%
d"
),
time
.
strptime
(
"Mar 1"
,
"
%
b
%
d"
))
class
Strptime12AMPMTests
(
unittest
.
TestCase
):
"""Test a _strptime regression in '
%
I
%
p' at 12 noon (12 PM)"""
...
...
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