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
99d73f2c
Kaydet (Commit)
99d73f2c
authored
Ara 08, 2007
tarafından
Christian Heimes
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Disabled test_404, see issue #1572
üst
e7f9f465
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
3 deletions
+2
-3
test_xmlrpc.py
Lib/test/test_xmlrpc.py
+2
-3
No files found.
Lib/test/test_xmlrpc.py
Dosyayı görüntüle @
99d73f2c
...
@@ -328,12 +328,11 @@ class SimpleServerTestCase(unittest.TestCase):
...
@@ -328,12 +328,11 @@ class SimpleServerTestCase(unittest.TestCase):
# protocol error; provide additional information in test output
# protocol error; provide additional information in test output
self
.
fail
(
"
%
s
\n
%
s"
%
(
e
,
e
.
headers
))
self
.
fail
(
"
%
s
\n
%
s"
%
(
e
,
e
.
headers
))
def
test_404
(
self
):
def
DISABLED_
test_404
(
self
):
# send POST with httplib, it should return 404 header and
# send POST with httplib, it should return 404 header and
# 'Not Found' message.
# 'Not Found' message.
import
pdb
;
pdb
.
set_trace
()
conn
=
httplib
.
HTTPConnection
(
'localhost'
,
PORT
)
conn
=
httplib
.
HTTPConnection
(
'localhost'
,
PORT
)
conn
.
request
(
b
'POST'
,
b
'/this-is-not-valid'
)
conn
.
request
(
'POST'
,
'/this-is-not-valid'
)
response
=
conn
.
getresponse
()
response
=
conn
.
getresponse
()
conn
.
close
()
conn
.
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