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
65ab98c4
Kaydet (Commit)
65ab98c4
authored
Agu 07, 1995
tarafından
Guido van Rossum
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
use mimetools; add close()
üst
e7808778
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
8 additions
and
2 deletions
+8
-2
httplib.py
Lib/httplib.py
+8
-2
No files found.
Lib/httplib.py
Dosyayı görüntüle @
65ab98c4
...
@@ -33,7 +33,7 @@ import socket
...
@@ -33,7 +33,7 @@ import socket
import
string
import
string
import
regex
import
regex
import
regsub
import
regsub
import
rfc822
import
mimetools
HTTP_VERSION
=
'HTTP/1.0'
HTTP_VERSION
=
'HTTP/1.0'
HTTP_PORT
=
80
HTTP_PORT
=
80
...
@@ -46,6 +46,7 @@ class HTTP:
...
@@ -46,6 +46,7 @@ class HTTP:
def
__init__
(
self
,
host
=
''
,
port
=
0
):
def
__init__
(
self
,
host
=
''
,
port
=
0
):
self
.
debuglevel
=
0
self
.
debuglevel
=
0
self
.
file
=
None
if
host
:
self
.
connect
(
host
,
port
)
if
host
:
self
.
connect
(
host
,
port
)
def
set_debuglevel
(
self
,
debuglevel
):
def
set_debuglevel
(
self
,
debuglevel
):
...
@@ -90,12 +91,17 @@ class HTTP:
...
@@ -90,12 +91,17 @@ class HTTP:
errcode
,
errmsg
=
replyprog
.
group
(
1
,
2
)
errcode
,
errmsg
=
replyprog
.
group
(
1
,
2
)
errcode
=
string
.
atoi
(
errcode
)
errcode
=
string
.
atoi
(
errcode
)
errmsg
=
string
.
strip
(
errmsg
)
errmsg
=
string
.
strip
(
errmsg
)
self
.
headers
=
rfc822
.
Message
(
self
.
file
,
0
)
self
.
headers
=
mimetools
.
Message
(
self
.
file
,
0
)
return
errcode
,
errmsg
,
self
.
headers
return
errcode
,
errmsg
,
self
.
headers
def
getfile
(
self
):
def
getfile
(
self
):
return
self
.
file
return
self
.
file
def
close
(
self
):
if
self
.
file
:
self
.
file
.
close
()
self
.
file
=
None
def
test
():
def
test
():
import
sys
import
sys
...
...
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