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
20be53e5
Kaydet (Commit)
20be53e5
authored
Mar 14, 2016
tarafından
Berker Peksag
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Issue #16181: cookiejar.http2time() now returns None if year is higher than datetime.MAXYEAR
üst
f2b9a398
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
11 additions
and
1 deletion
+11
-1
cookiejar.py
Lib/http/cookiejar.py
+4
-1
test_http_cookiejar.py
Lib/test/test_http_cookiejar.py
+4
-0
NEWS
Misc/NEWS
+3
-0
No files found.
Lib/http/cookiejar.py
Dosyayı görüntüle @
20be53e5
...
...
@@ -143,6 +143,10 @@ def offset_from_tz_string(tz):
return
offset
def
_str2time
(
day
,
mon
,
yr
,
hr
,
min
,
sec
,
tz
):
yr
=
int
(
yr
)
if
yr
>
datetime
.
MAXYEAR
:
return
None
# translate month name to number
# month numbers start with 1 (January)
try
:
...
...
@@ -163,7 +167,6 @@ def _str2time(day, mon, yr, hr, min, sec, tz):
if
min
is
None
:
min
=
0
if
sec
is
None
:
sec
=
0
yr
=
int
(
yr
)
day
=
int
(
day
)
hr
=
int
(
hr
)
min
=
int
(
min
)
...
...
Lib/test/test_http_cookiejar.py
Dosyayı görüntüle @
20be53e5
...
...
@@ -91,6 +91,10 @@ class DateTimeTests(unittest.TestCase):
'01-01-1980 25:00:00'
,
'01-01-1980 00:61:00'
,
'01-01-1980 00:00:62'
,
'08-Oct-3697739'
,
'08-01-3697739'
,
'09 Feb 19942632 22:23:32 GMT'
,
'Wed, 09 Feb 1994834 22:23:32 GMT'
,
]:
self
.
assertIsNone
(
http2time
(
test
),
"http2time(
%
s) is not None
\n
"
...
...
Misc/NEWS
Dosyayı görüntüle @
20be53e5
...
...
@@ -91,6 +91,9 @@ Core and Builtins
Library
-------
- Issue #16181: cookiejar.http2time() now returns None if year is higher than
datetime.MAXYEAR.
- Issue #26513: Fixes platform module detection of Windows Server
- Issue #23718: Fixed parsing time in week 0 before Jan 1. Original patch by
...
...
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