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
db727b4a
Kaydet (Commit)
db727b4a
authored
Nis 29, 2012
tarafından
Senthil Kumaran
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Fix issue6085 - Remove the delay caused by fqdn lookup while logging in BaseHTTPRequestHandler
üst
e990092f
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
3 additions
and
3 deletions
+3
-3
http.server.rst
Doc/library/http.server.rst
+1
-1
server.py
Lib/http/server.py
+2
-2
No files found.
Doc/library/http.server.rst
Dosyayı görüntüle @
db727b4a
...
...
@@ -229,7 +229,7 @@ of which this module provides three different variants:
to create custom error logging mechanisms. The *format* argument is a
standard printf-style format string, where the additional arguments to
:meth:`log_message` are applied as inputs to the formatting. The client
address and current date and time are prefixed to every message logged.
ip
address and current date and time are prefixed to every message logged.
.. method:: version_string()
...
...
Lib/http/server.py
Dosyayı görüntüle @
db727b4a
...
...
@@ -508,13 +508,13 @@ class BaseHTTPRequestHandler(socketserver.StreamRequestHandler):
specified as subsequent arguments (it's just like
printf!).
The client
host
and current date/time are prefixed to
The client
ip
and current date/time are prefixed to
every message.
"""
sys
.
stderr
.
write
(
"
%
s - - [
%
s]
%
s
\n
"
%
(
self
.
address_string
()
,
(
self
.
client_address
[
0
]
,
self
.
log_date_time_string
(),
format
%
args
))
...
...
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