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
cacb4003
Kaydet (Commit)
cacb4003
authored
Ara 26, 2012
tarafından
Kristján Valur Jónsson
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Sade Fark
Merge with 3.3
Issue #14574: Ignore socket errors raised when flushing a connection on close.
üst
ae57cec7
c8e7e2bb
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
8 additions
and
3 deletions
+8
-3
socketserver.rst
Doc/library/socketserver.rst
+2
-2
socketserver.py
Lib/socketserver.py
+6
-1
No files found.
Doc/library/socketserver.rst
Dosyayı görüntüle @
cacb4003
...
...
@@ -313,8 +313,8 @@ request.
.. method:: RequestHandler.finish()
Called after the :meth:`handle` method to perform any clean-up actions
required. The default implementation does nothing. If :meth:`setup`
or
:meth:`handle` raise
an exception, this function will not be called.
required. The default implementation does nothing. If :meth:`setup`
raises
an exception, this function will not be called.
.. method:: RequestHandler.handle()
...
...
Lib/socketserver.py
Dosyayı görüntüle @
cacb4003
...
...
@@ -718,7 +718,12 @@ class StreamRequestHandler(BaseRequestHandler):
def
finish
(
self
):
if
not
self
.
wfile
.
closed
:
self
.
wfile
.
flush
()
try
:
self
.
wfile
.
flush
()
except
socket
.
error
:
# An final socket error may have occurred here, such as
# the local error ECONNABORTED.
pass
self
.
wfile
.
close
()
self
.
rfile
.
close
()
...
...
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