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
8cf4b34b
Kaydet (Commit)
8cf4b34b
authored
May 09, 2018
tarafından
sblondon
Kaydeden (comit)
Serhiy Storchaka
May 09, 2018
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
bpo-33311: Do not display parameters displayed in parentheses for module call. (GH-6677)
üst
ddb6215a
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
8 additions
and
4 deletions
+8
-4
cgitb.py
Lib/cgitb.py
+6
-4
2018-05-01-22-33-14.bpo-33311.8YPB-k.rst
...S.d/next/Library/2018-05-01-22-33-14.bpo-33311.8YPB-k.rst
+2
-0
No files found.
Lib/cgitb.py
Dosyayı görüntüle @
8cf4b34b
...
...
@@ -124,8 +124,9 @@ 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
(
pydoc
.
html
.
escape
(
func
))
+
\
inspect
.
formatargvalues
(
args
,
varargs
,
varkw
,
locals
,
call
=
'in '
+
strong
(
pydoc
.
html
.
escape
(
func
))
if
func
!=
"<module>"
:
call
+=
inspect
.
formatargvalues
(
args
,
varargs
,
varkw
,
locals
,
formatvalue
=
lambda
value
:
'='
+
pydoc
.
html
.
repr
(
value
))
highlight
=
{}
...
...
@@ -207,8 +208,9 @@ function calls leading up to the error, in the order they occurred.
args
,
varargs
,
varkw
,
locals
=
inspect
.
getargvalues
(
frame
)
call
=
''
if
func
!=
'?'
:
call
=
'in '
+
func
+
\
inspect
.
formatargvalues
(
args
,
varargs
,
varkw
,
locals
,
call
=
'in '
+
func
if
func
!=
"<module>"
:
call
+=
inspect
.
formatargvalues
(
args
,
varargs
,
varkw
,
locals
,
formatvalue
=
lambda
value
:
'='
+
pydoc
.
text
.
repr
(
value
))
highlight
=
{}
...
...
Misc/NEWS.d/next/Library/2018-05-01-22-33-14.bpo-33311.8YPB-k.rst
0 → 100644
Dosyayı görüntüle @
8cf4b34b
Text and html output generated by cgitb does not display parentheses if the
current call is done directly in the module. 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