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
d5b47fb8
Kaydet (Commit)
d5b47fb8
authored
Tem 10, 2016
tarafından
Senthil Kumaran
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Issue #27466: Change time format returned by http.cookie.time2netscape,
confirming the netscape cookie format.
üst
1a2b24f0
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
27 additions
and
1 deletion
+27
-1
cookiejar.py
Lib/http/cookiejar.py
+1
-1
test_http_cookiejar.py
Lib/test/test_http_cookiejar.py
+22
-0
NEWS
Misc/NEWS
+4
-0
No files found.
Lib/http/cookiejar.py
Dosyayı görüntüle @
d5b47fb8
...
...
@@ -120,7 +120,7 @@ def time2netscape(t=None):
dt
=
datetime
.
datetime
.
utcnow
()
else
:
dt
=
datetime
.
datetime
.
utcfromtimestamp
(
t
)
return
"
%
s
%02
d-
%
s-
%04
d
%02
d:
%02
d:
%02
d GMT"
%
(
return
"
%
s
,
%02
d-
%
s-
%04
d
%02
d:
%02
d:
%02
d GMT"
%
(
DAYS
[
dt
.
weekday
()],
dt
.
day
,
MONTHS
[
dt
.
month
-
1
],
dt
.
year
,
dt
.
hour
,
dt
.
minute
,
dt
.
second
)
...
...
Lib/test/test_http_cookiejar.py
Dosyayı görüntüle @
d5b47fb8
...
...
@@ -31,6 +31,28 @@ class DateTimeTests(unittest.TestCase):
self
.
assertRegex
(
text
,
r"^\d{4}-\d\d-\d\d \d\d:\d\d:\d\dZ$"
,
"bad time2isoz format:
%
s
%
s"
%
(
az
,
bz
))
def
test_time2netscape
(
self
):
base
=
1019227000
day
=
24
*
3600
self
.
assertEqual
(
time2netscape
(
base
),
"Fri, 19-Apr-2002 14:36:40 GMT"
)
self
.
assertEqual
(
time2netscape
(
base
+
day
),
"Sat, 20-Apr-2002 14:36:40 GMT"
)
self
.
assertEqual
(
time2netscape
(
base
+
2
*
day
),
"Sun, 21-Apr-2002 14:36:40 GMT"
)
self
.
assertEqual
(
time2netscape
(
base
+
3
*
day
),
"Mon, 22-Apr-2002 14:36:40 GMT"
)
az
=
time2netscape
()
bz
=
time2netscape
(
500000
)
for
text
in
(
az
,
bz
):
# Format "%s, %02d-%s-%04d %02d:%02d:%02d GMT"
self
.
assertRegex
(
text
,
r"[a-zA-Z]{3}, \d{2}-[a-zA-Z]{3}-\d{4} \d{2}:\d{2}:\d{2} GMT$"
,
"bad time2netscape format:
%
s
%
s"
%
(
az
,
bz
))
def
test_http2time
(
self
):
def
parse_date
(
text
):
return
time
.
gmtime
(
http2time
(
text
))[:
6
]
...
...
Misc/NEWS
Dosyayı görüntüle @
d5b47fb8
...
...
@@ -16,6 +16,10 @@ Core and Builtins
Library
-------
- Issue #27466: Change time format returned by http.cookie.time2netscape,
confirming the netscape cookie format and making it consistent with
documentation.
- Issue #26664: Fix activate.fish by removing mis-use of ``$``.
- Issue #22115: Fixed tracing Tkinter variables: trace_vdelete() with wrong
...
...
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