Skip to content
Projeler
Gruplar
Parçacıklar
Yardım
Yükleniyor...
Oturum aç / Kaydol
Gezinmeyi değiştir
D
django
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
django
Commits
1a76257b
Kaydet (Commit)
1a76257b
authored
Tem 31, 2015
tarafından
Tim Graham
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Fixed #25204 -- Added missing space in runserver logging.
üst
f93e7f56
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
11 additions
and
1 deletion
+11
-1
basehttp.py
django/core/servers/basehttp.py
+1
-1
test_basehttp.py
tests/servers/test_basehttp.py
+10
-0
No files found.
django/core/servers/basehttp.py
Dosyayı görüntüle @
1a76257b
...
...
@@ -104,7 +104,7 @@ class WSGIRequestHandler(simple_server.WSGIRequestHandler, object):
def
log_message
(
self
,
format
,
*
args
):
msg
=
"[
%
s]"
%
self
.
log_date_time_string
()
msg
=
"[
%
s]
"
%
self
.
log_date_time_string
()
try
:
msg
+=
"
%
s
\n
"
%
(
format
%
args
)
except
UnicodeDecodeError
:
...
...
tests/servers/test_basehttp.py
Dosyayı görüntüle @
1a76257b
...
...
@@ -13,6 +13,16 @@ class Stub(object):
class
WSGIRequestHandlerTestCase
(
SimpleTestCase
):
def
test_log_message
(
self
):
request
=
WSGIRequest
(
RequestFactory
()
.
get
(
'/'
)
.
environ
)
request
.
makefile
=
lambda
*
args
,
**
kwargs
:
BytesIO
()
handler
=
WSGIRequestHandler
(
request
,
'192.168.0.2'
,
None
)
with
captured_stderr
()
as
stderr
:
handler
.
log_message
(
'GET
%
s
%
s'
,
'A'
,
'B'
)
self
.
assertIn
(
'] GET A B'
,
stderr
.
getvalue
())
def
test_https
(
self
):
request
=
WSGIRequest
(
RequestFactory
()
.
get
(
'/'
)
.
environ
)
request
.
makefile
=
lambda
*
args
,
**
kwargs
:
BytesIO
()
...
...
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