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
24a3c726
Kaydet (Commit)
24a3c726
authored
Haz 24, 2014
tarafından
R David Murray
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Sade Fark
merge: #20155: use fake HTTP method names so windows doesn't hang the tests.
üst
777aa64e
14199f93
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
8 additions
and
2 deletions
+8
-2
test_httpservers.py
Lib/test/test_httpservers.py
+3
-2
ACKS
Misc/ACKS
+1
-0
NEWS
Misc/NEWS
+4
-0
No files found.
Lib/test/test_httpservers.py
Dosyayı görüntüle @
24a3c726
...
...
@@ -125,7 +125,7 @@ class BaseHTTPServerTestCase(BaseTestCase):
def
test_request_line_trimming
(
self
):
self
.
con
.
_http_vsn_str
=
'HTTP/1.1
\n
'
self
.
con
.
putrequest
(
'
GET
'
,
'/'
)
self
.
con
.
putrequest
(
'
XYZBOGUS
'
,
'/'
)
self
.
con
.
endheaders
()
res
=
self
.
con
.
getresponse
()
self
.
assertEqual
(
res
.
status
,
501
)
...
...
@@ -152,8 +152,9 @@ class BaseHTTPServerTestCase(BaseTestCase):
self
.
assertEqual
(
res
.
status
,
501
)
def
test_version_none
(
self
):
# Test that a valid method is rejected when not HTTP/1.x
self
.
con
.
_http_vsn_str
=
''
self
.
con
.
putrequest
(
'
PUT
'
,
'/'
)
self
.
con
.
putrequest
(
'
CUSTOM
'
,
'/'
)
self
.
con
.
endheaders
()
res
=
self
.
con
.
getresponse
()
self
.
assertEqual
(
res
.
status
,
400
)
...
...
Misc/ACKS
Dosyayı görüntüle @
24a3c726
...
...
@@ -29,6 +29,7 @@ Yaniv Aknin
Jyrki Alakuijala
Steve Alexander
Fred Allen
Jeff Allen
Ray Allen
Billy G. Allie
Kevin Altis
...
...
Misc/NEWS
Dosyayı görüntüle @
24a3c726
...
...
@@ -612,6 +612,10 @@ Documentation
Tests
-----
- Issue #20155: Changed HTTP method names in failing tests in test_httpservers
so that packet filtering software (specifically Windows Base Filtering Engine)
does not interfere with the transaction semantics expected by the tests.
- Issue #19493: Refactored the ctypes test package to skip tests explicitly
rather than silently.
...
...
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