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
a19baf58
Kaydet (Commit)
a19baf58
authored
May 22, 2010
tarafından
Georg Brandl
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Underscore the name of an internal utility function.
üst
5d0ca2c8
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
3 deletions
+3
-3
cookielib.py
Lib/cookielib.py
+3
-3
No files found.
Lib/cookielib.py
Dosyayı görüntüle @
a19baf58
...
...
@@ -434,7 +434,7 @@ def join_header_words(lists):
if
attr
:
headers
.
append
(
"; "
.
join
(
attr
))
return
", "
.
join
(
headers
)
def
strip_quotes
(
text
):
def
_
strip_quotes
(
text
):
if
text
.
startswith
(
'"'
):
text
=
text
[
1
:]
if
text
.
endswith
(
'"'
):
...
...
@@ -478,11 +478,11 @@ def parse_ns_headers(ns_headers):
k
=
lc
if
k
==
"version"
:
# This is an RFC 2109 cookie.
v
=
strip_quotes
(
v
)
v
=
_
strip_quotes
(
v
)
version_set
=
True
if
k
==
"expires"
:
# convert expires date to seconds since epoch
v
=
http2time
(
strip_quotes
(
v
))
# None if invalid
v
=
http2time
(
_
strip_quotes
(
v
))
# None if invalid
pairs
.
append
((
k
,
v
))
if
pairs
:
...
...
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