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
56f9a022
Kaydet (Commit)
56f9a022
authored
Mar 21, 2011
tarafından
Victor Stinner
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Sade Fark
merge 3.1
üst
6f0e4f99
628225c0
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
15 additions
and
6 deletions
+15
-6
cookiejar.py
Lib/http/cookiejar.py
+12
-6
NEWS
Misc/NEWS
+3
-0
No files found.
Lib/http/cookiejar.py
Dosyayı görüntüle @
56f9a022
...
...
@@ -29,6 +29,7 @@ __all__ = ['Cookie', 'CookieJar', 'CookiePolicy', 'DefaultCookiePolicy',
'FileCookieJar'
,
'LWPCookieJar'
,
'LoadError'
,
'MozillaCookieJar'
]
import
copy
import
datetime
import
re
import
time
import
urllib.parse
,
urllib
.
request
...
...
@@ -97,10 +98,12 @@ def time2isoz(t=None):
1994-11-24 08:49:37Z
"""
if
t
is
None
:
t
=
time
.
time
()
year
,
mon
,
mday
,
hour
,
min
,
sec
=
time
.
gmtime
(
t
)[:
6
]
if
t
is
None
:
dt
=
datetime
.
datetime
.
utcnow
()
else
:
dt
=
datetime
.
datetime
.
utcfromtimestamp
(
t
)
return
"
%04
d-
%02
d-
%02
d
%02
d:
%02
d:
%02
dZ"
%
(
year
,
mon
,
mday
,
hour
,
min
,
sec
)
dt
.
year
,
dt
.
month
,
dt
.
day
,
dt
.
hour
,
dt
.
minute
,
dt
.
second
)
def
time2netscape
(
t
=
None
):
"""Return a string representing time in seconds since epoch, t.
...
...
@@ -113,10 +116,13 @@ def time2netscape(t=None):
Wed, DD-Mon-YYYY HH:MM:SS GMT
"""
if
t
is
None
:
t
=
time
.
time
()
year
,
mon
,
mday
,
hour
,
min
,
sec
,
wday
=
time
.
gmtime
(
t
)[:
7
]
if
t
is
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"
%
(
DAYS
[
wday
],
mday
,
MONTHS
[
mon
-
1
],
year
,
hour
,
min
,
sec
)
DAYS
[
dt
.
weekday
()],
dt
.
day
,
MONTHS
[
dt
.
month
-
1
],
dt
.
year
,
dt
.
hour
,
dt
.
minute
,
dt
.
second
)
UTC_ZONES
=
{
"GMT"
:
None
,
"UTC"
:
None
,
"UT"
:
None
,
"Z"
:
None
}
...
...
Misc/NEWS
Dosyayı görüntüle @
56f9a022
...
...
@@ -49,6 +49,9 @@ Core and Builtins
Library
-------
-
Issue
#
5537
:
Fix
time2isoz
()
and
time2netscape
()
functions
of
httplib
.
cookiejar
for
expiration
year
greater
than
2038
on
32
-
bit
systems
.
-
Issue
#
11563
:
Connection
:
close
header
is
sent
by
requests
using
URLOpener
class
which
helps
in
closing
of
sockets
after
connection
is
over
.
Patch
contributions
by
Jeff
McNeil
and
Nadeem
Vawda
.
...
...
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