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
cffb9dee
Kaydet (Commit)
cffb9dee
authored
Agu 09, 2003
tarafından
Raymond Hettinger
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
SF patch #747364: BaseHTTPServer doesn't need StringIO intermediary
(Contributed by Andrew Dalke.)
üst
12c484da
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 addition
and
11 deletions
+1
-11
BaseHTTPServer.py
Lib/BaseHTTPServer.py
+1
-11
No files found.
Lib/BaseHTTPServer.py
Dosyayı görüntüle @
cffb9dee
...
...
@@ -75,7 +75,6 @@ import time
import
socket
# For gethostbyaddr()
import
mimetools
import
SocketServer
import
cStringIO
# Default error message
DEFAULT_ERROR_MESSAGE
=
"""
\
...
...
@@ -276,17 +275,8 @@ class BaseHTTPRequestHandler(SocketServer.StreamRequestHandler):
return
False
self
.
command
,
self
.
path
,
self
.
request_version
=
command
,
path
,
version
# Deal with pipelining
bytes
=
""
while
1
:
line
=
self
.
rfile
.
readline
()
bytes
=
bytes
+
line
if
line
==
'
\r\n
'
or
line
==
'
\n
'
or
line
==
''
:
break
# Examine the headers and look for a Connection directive
hfile
=
cStringIO
.
StringIO
(
bytes
)
self
.
headers
=
self
.
MessageClass
(
hfile
)
self
.
headers
=
self
.
MessageClass
(
self
.
rfile
,
0
)
conntype
=
self
.
headers
.
get
(
'Connection'
,
""
)
if
conntype
.
lower
()
==
'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