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
5ef4fc24
Kaydet (Commit)
5ef4fc24
authored
Ara 25, 2018
tarafından
Cheryl Sabella
Kaydeden (comit)
Raymond Hettinger
Ara 25, 2018
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
bpo-35565: Add detail to assertion failure message in wsgiref (GH-11293)
üst
32d96a2b
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
15 additions
and
1 deletion
+15
-1
test_wsgiref.py
Lib/test/test_wsgiref.py
+13
-0
handlers.py
Lib/wsgiref/handlers.py
+2
-1
No files found.
Lib/test/test_wsgiref.py
Dosyayı görüntüle @
5ef4fc24
...
...
@@ -193,6 +193,19 @@ class IntegrationTests(TestCase):
))
self
.
assertEqual
(
err
.
splitlines
()[
-
2
],
exc_message
)
@unittest.skipIf
(
support
.
python_is_optimized
(),
"Python was compiled with optimizations"
)
def
test_hop_by_hop_validation_error
(
self
):
def
bad_app
(
environ
,
start_response
):
start_response
(
"200 OK"
,
[(
'Content-Type'
,
'text/plain'
),
(
'Connection'
,
'close'
)])
return
[
"Hello, world!"
]
out
,
err
=
run_amock
(
bad_app
)
self
.
assertTrue
(
out
.
endswith
(
b
"A server error occurred. Please contact the administrator."
))
self
.
assertRaises
(
AssertionError
)
def
test_wsgi_input
(
self
):
def
bad_app
(
e
,
s
):
e
[
"wsgi.input"
]
.
read
()
...
...
Lib/wsgiref/handlers.py
Dosyayı görüntüle @
5ef4fc24
...
...
@@ -233,7 +233,8 @@ class BaseHandler:
for
name
,
val
in
headers
:
name
=
self
.
_convert_string_type
(
name
,
"Header name"
)
val
=
self
.
_convert_string_type
(
val
,
"Header value"
)
assert
not
is_hop_by_hop
(
name
),
"Hop-by-hop headers not allowed"
assert
not
is_hop_by_hop
(
name
),
\
f
"Hop-by-hop header, '{name}: {val}', not allowed"
return
self
.
write
...
...
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