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
75260275
Kaydet (Commit)
75260275
authored
Eki 12, 1999
tarafından
Jeremy Hylton
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
update to use threading module instead of thread.
üst
2539451f
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
4 deletions
+4
-4
SocketServer.py
Lib/SocketServer.py
+4
-4
No files found.
Lib/SocketServer.py
Dosyayı görüntüle @
75260275
...
...
@@ -325,14 +325,14 @@ class ForkingMixIn:
class
ThreadingMixIn
:
"""Mix-in class to handle each request in a new thread."""
def
process_request
(
self
,
request
,
client_address
):
"""Start a new thread to process the request."""
import
thread
thread
.
start_new_thread
(
self
.
finish_request
,
(
request
,
client_address
))
import
threading
t
=
threading
.
Thread
(
target
=
self
.
finish_request
,
args
=
(
request
,
client_address
))
t
.
start
()
class
ForkingUDPServer
(
ForkingMixIn
,
UDPServer
):
pass
...
...
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