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
7d68bfa8
Kaydet (Commit)
7d68bfa8
authored
Nis 29, 2018
tarafından
sblondon
Kaydeden (comit)
Serhiy Storchaka
Nis 29, 2018
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
bpo-33256: Replace angle brackets around python object repr to display it in html (GH-6442)
üst
70af06cd
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
5 additions
and
2 deletions
+5
-2
cgitb.py
Lib/cgitb.py
+2
-2
test_cgitb.py
Lib/test/test_cgitb.py
+1
-0
ACKS
Misc/ACKS
+1
-0
2018-04-10-20-57-14.bpo-33256.ndHkqu.rst
...S.d/next/Library/2018-04-10-20-57-14.bpo-33256.ndHkqu.rst
+1
-0
No files found.
Lib/cgitb.py
Dosyayı görüntüle @
7d68bfa8
...
...
@@ -124,7 +124,7 @@ function calls leading up to the error, in the order they occurred.</p>'''
args
,
varargs
,
varkw
,
locals
=
inspect
.
getargvalues
(
frame
)
call
=
''
if
func
!=
'?'
:
call
=
'in '
+
strong
(
func
)
+
\
call
=
'in '
+
strong
(
pydoc
.
html
.
escape
(
func
)
)
+
\
inspect
.
formatargvalues
(
args
,
varargs
,
varkw
,
locals
,
formatvalue
=
lambda
value
:
'='
+
pydoc
.
html
.
repr
(
value
))
...
...
@@ -282,7 +282,7 @@ class Hook:
if
self
.
display
:
if
plain
:
doc
=
doc
.
replace
(
'&'
,
'&'
)
.
replace
(
'<'
,
'<'
)
doc
=
pydoc
.
html
.
escape
(
doc
)
self
.
file
.
write
(
'<pre>'
+
doc
+
'</pre>
\n
'
)
else
:
self
.
file
.
write
(
doc
+
'
\n
'
)
...
...
Lib/test/test_cgitb.py
Dosyayı görüntüle @
7d68bfa8
...
...
@@ -45,6 +45,7 @@ class TestCgitb(unittest.TestCase):
out
=
out
.
decode
(
sys
.
getfilesystemencoding
())
self
.
assertIn
(
"ValueError"
,
out
)
self
.
assertIn
(
"Hello World"
,
out
)
self
.
assertIn
(
"<strong><module></strong>"
,
out
)
# By default we emit HTML markup.
self
.
assertIn
(
'<p>'
,
out
)
self
.
assertIn
(
'</p>'
,
out
)
...
...
Misc/ACKS
Dosyayı görüntüle @
7d68bfa8
...
...
@@ -158,6 +158,7 @@ Mike Bland
Martin Bless
Pablo Bleyer
Erik van Blokland
Stéphane Blondon
Eric Blossom
Sergey Bobrov
Finn Bock
...
...
Misc/NEWS.d/next/Library/2018-04-10-20-57-14.bpo-33256.ndHkqu.rst
0 → 100644
Dosyayı görüntüle @
7d68bfa8
Fix display of ``<module>`` call in the html produced by ``cgitb.html()``. Patch by Stéphane Blondon.
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