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
162d7191
Kaydet (Commit)
162d7191
authored
Mar 23, 2008
tarafından
Neal Norwitz
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Speed up the test by avoiding socket timeouts.
üst
1f2995b0
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
5 additions
and
3 deletions
+5
-3
test_xmlrpc.py
Lib/test/test_xmlrpc.py
+5
-3
No files found.
Lib/test/test_xmlrpc.py
Dosyayı görüntüle @
162d7191
...
...
@@ -462,12 +462,14 @@ class SimpleServerTestCase(unittest.TestCase):
self
.
fail
(
"
%
s
\n
%
s"
%
(
e
,
getattr
(
e
,
"headers"
,
""
)))
def
test_dotted_attribute
(
self
):
# this will raise AttirebuteError because code don't want us to use
# private methods
# Raises an AttributeError because private methods are not allowed.
self
.
assertRaises
(
AttributeError
,
SimpleXMLRPCServer
.
resolve_dotted_attribute
,
str
,
'__add'
)
self
.
assert_
(
SimpleXMLRPCServer
.
resolve_dotted_attribute
(
str
,
'title'
))
# Get the test to run faster by sending a request with test_simple1.
# This avoids waiting for the socket timeout.
self
.
test_simple1
()
# This is a contrived way to make a failure occur on the server side
# in order to test the _send_traceback_header flag on the server
...
...
@@ -483,7 +485,7 @@ class FailingServerTestCase(unittest.TestCase):
def
setUp
(
self
):
self
.
evt
=
threading
.
Event
()
# start server thread to handle requests
serv_args
=
(
self
.
evt
,
2
)
serv_args
=
(
self
.
evt
,
1
)
threading
.
Thread
(
target
=
http_server
,
args
=
serv_args
)
.
start
()
# wait for the server to be ready
...
...
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