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
0aa93cda
Kaydet (Commit)
0aa93cda
authored
Ara 08, 2007
tarafından
Christian Heimes
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Fixed two of the three failing xml rpc tests
üst
9bbac506
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
2 additions
and
2 deletions
+2
-2
SimpleXMLRPCServer.py
Lib/SimpleXMLRPCServer.py
+1
-1
test_xmlrpc.py
Lib/test/test_xmlrpc.py
+1
-1
No files found.
Lib/SimpleXMLRPCServer.py
Dosyayı görüntüle @
0aa93cda
...
...
@@ -479,7 +479,7 @@ class SimpleXMLRPCRequestHandler(BaseHTTPServer.BaseHTTPRequestHandler):
def
report_404
(
self
):
# Report a 404 error
self
.
send_response
(
404
)
response
=
'No such page'
response
=
b
'No such page'
self
.
send_header
(
"Content-type"
,
"text/plain"
)
self
.
send_header
(
"Content-length"
,
str
(
len
(
response
)))
self
.
end_headers
()
...
...
Lib/test/test_xmlrpc.py
Dosyayı görüntüle @
0aa93cda
...
...
@@ -424,7 +424,7 @@ class SimpleServerTestCase(unittest.TestCase):
self
.
assertEqual
(
result
.
results
[
0
][
'faultCode'
],
1
)
self
.
assertEqual
(
result
.
results
[
0
][
'faultString'
],
'<type
\'
exceptions.
Exception
\'
>:method "this_is_not_exists" '
'<type
\'
Exception
\'
>:method "this_is_not_exists" '
'is not supported'
)
except
xmlrpclib
.
ProtocolError
as
e
:
# ignore failures due to non-blocking socket 'unavailable' errors
...
...
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