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
490602d6
Kaydet (Commit)
490602d6
authored
Ara 26, 2002
tarafından
Neal Norwitz
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Fix julian day problem with strptime. Note: XXX about using 0, suggestions?
üst
4c0db788
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
15 additions
and
1 deletion
+15
-1
_strptime.py
Lib/_strptime.py
+3
-1
test_strptime.py
Lib/test/test_strptime.py
+12
-0
No files found.
Lib/_strptime.py
Dosyayı görüntüle @
490602d6
...
...
@@ -306,12 +306,14 @@ class TimeRE(dict):
def
__init__
(
self
,
locale_time
=
LocaleTime
()):
"""Init inst with non-locale regexes and store LocaleTime object."""
# XXX: should 0 be valid for:
# day (d), julian day (j), month (m), and hour12 (I)?
super
(
TimeRE
,
self
)
.
__init__
({
# The " \d" option is to make %c from ANSI C work
'd'
:
r"(?P<d>3[0-1]|[0-2]\d|\d| \d)"
,
'H'
:
r"(?P<H>2[0-3]|[0-1]\d|\d)"
,
'I'
:
r"(?P<I>0\d|1[0-2]|\d)"
,
'j'
:
r"(?P<j>(?:3[0-5]\d|
6[0-6])|[0-2]
\d\d|\d)"
,
'j'
:
r"(?P<j>(?:3[0-5]\d|
36[0-6])|[0-2]\d\d|
\d\d|\d)"
,
'm'
:
r"(?P<m>0\d|1[0-2]|\d)"
,
'M'
:
r"(?P<M>[0-5]\d|\d)"
,
'S'
:
r"(?P<S>6[0-1]|[0-5]\d|\d)"
,
...
...
Lib/test/test_strptime.py
Dosyayı görüntüle @
490602d6
...
...
@@ -379,6 +379,17 @@ class Strptime12AMPMTests(unittest.TestCase):
eq
(
_strptime
.
strptime
(
'12 AM'
,
'
%
I
%
p'
)[
3
],
0
)
class
JulianTests
(
unittest
.
TestCase
):
"""Test a _strptime regression that all julian (1-366) are accepted"""
def
test_all_julian_days
(
self
):
eq
=
self
.
assertEqual
# XXX: should 0 be accepted?
for
i
in
range
(
1
,
367
):
# use 2004, since it is a leap year, we have 366 days
eq
(
_strptime
.
strptime
(
'
%
d 2004'
%
i
,
'
%
j
%
Y'
)[
7
],
i
)
def
test_main
():
suite
=
unittest
.
TestSuite
()
suite
.
addTest
(
unittest
.
makeSuite
(
LocaleTime_Tests
))
...
...
@@ -386,6 +397,7 @@ def test_main():
suite
.
addTest
(
unittest
.
makeSuite
(
StrptimeTests
))
suite
.
addTest
(
unittest
.
makeSuite
(
FxnTests
))
suite
.
addTest
(
unittest
.
makeSuite
(
Strptime12AMPMTests
))
suite
.
addTest
(
unittest
.
makeSuite
(
JulianTests
))
test_support
.
run_suite
(
suite
)
...
...
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