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
3d37ea25
Kaydet (Commit)
3d37ea25
authored
May 01, 2019
tarafından
Petter Strandmark
Kaydeden (comit)
Berker Peksag
May 01, 2019
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
bpo-27682: Handle client connection terminations in wsgiref (GH-9713)
üst
18029d80
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
24 additions
and
0 deletions
+24
-0
test_wsgiref.py
Lib/test/test_wsgiref.py
+18
-0
handlers.py
Lib/wsgiref/handlers.py
+4
-0
2018-10-05-16-01-00.bpo-34547.abbaa.rst
...WS.d/next/Library/2018-10-05-16-01-00.bpo-34547.abbaa.rst
+2
-0
No files found.
Lib/test/test_wsgiref.py
Dosyayı görüntüle @
3d37ea25
...
...
@@ -788,6 +788,24 @@ class HandlerTests(TestCase):
b
"Hello, world!"
,
written
)
def
testClientConnectionTerminations
(
self
):
environ
=
{
"SERVER_PROTOCOL"
:
"HTTP/1.0"
}
for
exception
in
(
ConnectionAbortedError
,
BrokenPipeError
,
ConnectionResetError
,
):
with
self
.
subTest
(
exception
=
exception
):
class
AbortingWriter
:
def
write
(
self
,
b
):
raise
exception
stderr
=
StringIO
()
h
=
SimpleHandler
(
BytesIO
(),
AbortingWriter
(),
stderr
,
environ
)
h
.
run
(
hello_app
)
self
.
assertFalse
(
stderr
.
getvalue
())
if
__name__
==
"__main__"
:
unittest
.
main
()
Lib/wsgiref/handlers.py
Dosyayı görüntüle @
3d37ea25
...
...
@@ -136,6 +136,10 @@ class BaseHandler:
self
.
setup_environ
()
self
.
result
=
application
(
self
.
environ
,
self
.
start_response
)
self
.
finish_response
()
except
(
ConnectionAbortedError
,
BrokenPipeError
,
ConnectionResetError
):
# We expect the client to close the connection abruptly from time
# to time.
return
except
:
try
:
self
.
handle_error
()
...
...
Misc/NEWS.d/next/Library/2018-10-05-16-01-00.bpo-34547.abbaa.rst
0 → 100644
Dosyayı görüntüle @
3d37ea25
:class:`wsgiref.handlers.BaseHandler` now handles abrupt client connection
terminations gracefully. Patch by Petter Strandmark.
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