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
27f29d84
Kaydet (Commit)
27f29d84
authored
Nis 22, 2012
tarafından
Brett Cannon
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Sade Fark
merge
üst
0d05a769
f7582287
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
12 additions
and
1 deletion
+12
-1
cookies.py
Lib/http/cookies.py
+1
-1
test_http_cookies.py
Lib/test/test_http_cookies.py
+9
-0
NEWS
Misc/NEWS
+2
-0
No files found.
Lib/http/cookies.py
Dosyayı görüntüle @
27f29d84
...
...
@@ -159,7 +159,7 @@ class CookieError(Exception):
# _LegalChars is the list of chars which don't require "'s
# _Translator hash-table for fast quoting
#
_LegalChars
=
string
.
ascii_letters
+
string
.
digits
+
"!#$
%
&'*+-.^_`|~"
_LegalChars
=
string
.
ascii_letters
+
string
.
digits
+
"!#$
%
&'*+-.^_`|~
:
"
_Translator
=
{
'
\000
'
:
'
\\
000'
,
'
\001
'
:
'
\\
001'
,
'
\002
'
:
'
\\
002'
,
'
\003
'
:
'
\\
003'
,
'
\004
'
:
'
\\
004'
,
'
\005
'
:
'
\\
005'
,
...
...
Lib/test/test_http_cookies.py
Dosyayı görüntüle @
27f29d84
...
...
@@ -34,6 +34,15 @@ class CookieTests(unittest.TestCase):
'dict'
:
{
'keebler'
:
'E=mc2'
},
'repr'
:
"<SimpleCookie: keebler='E=mc2'>"
,
'output'
:
'Set-Cookie: keebler=E=mc2'
},
# Cookies with ':' character in their name. Though not mentioned in
# RFC, servers / browsers allow it.
{
'data'
:
'key:term=value:term'
,
'dict'
:
{
'key:term'
:
'value:term'
},
'repr'
:
"<SimpleCookie: key:term='value:term'>"
,
'output'
:
'Set-Cookie: key:term=value:term'
},
]
for
case
in
cases
:
...
...
Misc/NEWS
Dosyayı görüntüle @
27f29d84
...
...
@@ -61,6 +61,8 @@ Core and Builtins
Library
-------
- Issue #2193: Allow ":" character in Cookie NAME values.
- Issue #14629: tokenizer.detect_encoding will specify the filename in the
SyntaxError exception if found at readline.__self__.name.
...
...
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