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
54eed2e3
Kaydet (Commit)
54eed2e3
authored
Eki 27, 2012
tarafından
R David Murray
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
#12890: don't emit <p> tags in text mode when logdir specified.
Patch by Jeff McNeil.
üst
3e66f0d1
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
12 additions
and
3 deletions
+12
-3
cgitb.py
Lib/cgitb.py
+8
-3
ACKS
Misc/ACKS
+1
-0
NEWS
Misc/NEWS
+3
-0
No files found.
Lib/cgitb.py
Dosyayı görüntüle @
54eed2e3
...
...
@@ -295,14 +295,19 @@ class Hook:
if
self
.
logdir
is
not
None
:
suffix
=
[
'.txt'
,
'.html'
][
self
.
format
==
"html"
]
(
fd
,
path
)
=
tempfile
.
mkstemp
(
suffix
=
suffix
,
dir
=
self
.
logdir
)
try
:
file
=
os
.
fdopen
(
fd
,
'w'
)
file
.
write
(
doc
)
file
.
close
()
msg
=
'
<p>
%
s contains the description of this error.'
%
path
msg
=
'
%
s contains the description of this error.'
%
path
except
:
msg
=
'<p> Tried to save traceback to
%
s, but failed.'
%
path
self
.
file
.
write
(
msg
+
'
\n
'
)
msg
=
'Tried to save traceback to
%
s, but failed.'
%
path
if
self
.
format
==
'html'
:
self
.
file
.
write
(
'<p>
%
s</p>
\n
'
%
msg
)
else
:
self
.
file
.
write
(
msg
+
'
\n
'
)
try
:
self
.
file
.
flush
()
except
:
pass
...
...
Misc/ACKS
Dosyayı görüntüle @
54eed2e3
...
...
@@ -644,6 +644,7 @@ Mark Mc Mahon
Gordon McMillan
Caolan McNamara
Andrew McNamara
Jeff McNeil
Craig McPheeters
Lambert Meertens
Bill van Melle
...
...
Misc/NEWS
Dosyayı görüntüle @
54eed2e3
...
...
@@ -122,6 +122,9 @@ Core and Builtins
Library
-------
-
Issue
#
12890
:
cgitb
no
longer
prints
spurious
<
p
>
tags
in
text
mode
when
the
logdir
option
is
specified
.
-
Issue
#
14398
:
Fix
size
truncation
and
overflow
bugs
in
the
bz2
module
.
-
Issue
#
5148
:
Ignore
'U'
in
mode
given
to
gzip
.
open
()
and
gzip
.
GzipFile
().
...
...
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