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
71cc46e7
Kaydet (Commit)
71cc46e7
authored
Nis 03, 2002
tarafından
Fred Drake
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Slight modernization.
üst
cd874eda
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
3 additions
and
5 deletions
+3
-5
xmlrpc_handler.py
Demo/xmlrpc/xmlrpc_handler.py
+2
-4
xmlrpcserver.py
Demo/xmlrpc/xmlrpcserver.py
+1
-1
No files found.
Demo/xmlrpc/xmlrpc_handler.py
Dosyayı görüntüle @
71cc46e7
...
...
@@ -12,8 +12,6 @@
import
http_server
import
xmlrpclib
import
regex
import
string
import
sys
class
xmlrpc_handler
:
...
...
@@ -43,7 +41,7 @@ class xmlrpc_handler:
except
:
# report exception back to server
response
=
xmlrpclib
.
dumps
(
xmlrpclib
.
Fault
(
1
,
"
%
s:
%
s"
%
(
sys
.
exc_type
,
sys
.
exc_value
)
)
xmlrpclib
.
Fault
(
1
,
"
%
s:
%
s"
%
sys
.
exc_info
()[:
2
]
)
)
else
:
response
=
xmlrpclib
.
dumps
(
response
,
methodresponse
=
1
)
...
...
@@ -76,7 +74,7 @@ class collector:
if
not
cl
:
request
.
error
(
411
)
else
:
cl
=
string
.
atoi
(
cl
)
cl
=
int
(
cl
)
# using a 'numeric' terminator
self
.
request
.
channel
.
set_terminator
(
cl
)
...
...
Demo/xmlrpc/xmlrpcserver.py
Dosyayı görüntüle @
71cc46e7
...
...
@@ -42,7 +42,7 @@ class RequestHandler(BaseHTTPServer.BaseHTTPRequestHandler):
except
:
# report exception back to server
response
=
xmlrpclib
.
dumps
(
xmlrpclib
.
Fault
(
1
,
"
%
s:
%
s"
%
(
sys
.
exc_type
,
sys
.
exc_value
)
)
xmlrpclib
.
Fault
(
1
,
"
%
s:
%
s"
%
sys
.
exc_info
()[:
2
]
)
)
else
:
response
=
xmlrpclib
.
dumps
(
...
...
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