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
d33344a0
Kaydet (Commit)
d33344a0
authored
Tem 14, 2011
tarafından
Victor Stinner
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Add cgi.closelog() function to close the log file
üst
f64f9e9e
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
13 additions
and
8 deletions
+13
-8
cgi.py
Lib/cgi.py
+10
-1
test_cgi.py
Lib/test/test_cgi.py
+1
-7
NEWS
Misc/NEWS
+2
-0
No files found.
Lib/cgi.py
Dosyayı görüntüle @
d33344a0
...
...
@@ -76,7 +76,7 @@ def initlog(*allargs):
send an error message).
"""
global
log
fp
,
log
global
log
,
logfile
,
logfp
if
logfile
and
not
logfp
:
try
:
logfp
=
open
(
logfile
,
"a"
)
...
...
@@ -96,6 +96,15 @@ def nolog(*allargs):
"""Dummy function, assigned to log when logging is disabled."""
pass
def
closelog
():
"""Close the log file."""
global
log
,
logfile
,
logfp
logfile
=
''
if
logfp
:
logfp
.
close
()
logfp
=
None
log
=
initlog
log
=
initlog
# The current logging function
...
...
Lib/test/test_cgi.py
Dosyayı görüntüle @
d33344a0
...
...
@@ -155,13 +155,7 @@ class CgiTests(unittest.TestCase):
cgi
.
logfp
=
None
cgi
.
logfile
=
"/dev/null"
cgi
.
initlog
(
"
%
s"
,
"Testing log 3"
)
def
log_cleanup
():
"""Restore the global state of the log vars."""
cgi
.
logfile
=
''
cgi
.
logfp
.
close
()
cgi
.
logfp
=
None
cgi
.
log
=
cgi
.
initlog
self
.
addCleanup
(
log_cleanup
)
self
.
addCleanup
(
cgi
.
closelog
)
cgi
.
log
(
"Testing log 4"
)
def
test_fieldstorage_readline
(
self
):
...
...
Misc/NEWS
Dosyayı görüntüle @
d33344a0
...
...
@@ -225,6 +225,8 @@ Core and Builtins
Library
-------
- Add cgi.closelog() function to close the log file.
- Issue #12502: asyncore: fix polling loop with AF_UNIX sockets.
- Issue #4376: ctypes now supports nested structures in a endian different than
...
...
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