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
533a167a
Kaydet (Commit)
533a167a
authored
Tem 20, 2010
tarafından
Alexander Belopolsky
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Issue #9282: Fixed --listfuncs option of trace.py. Thanks Eli
Bendersky for the patch.
üst
d21886ce
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
6 additions
and
1 deletion
+6
-1
trace.py
Lib/trace.py
+2
-1
ACKS
Misc/ACKS
+1
-0
NEWS
Misc/NEWS
+3
-0
No files found.
Lib/trace.py
Dosyayı görüntüle @
533a167a
...
...
@@ -257,7 +257,8 @@ class CoverageResults:
if
self
.
calledfuncs
:
print
()
print
(
"functions called:"
)
for
filename
,
modulename
,
funcname
in
sorted
(
calls
.
keys
()):
calls
=
self
.
calledfuncs
.
keys
()
for
filename
,
modulename
,
funcname
in
sorted
(
calls
):
print
((
"filename:
%
s, modulename:
%
s, funcname:
%
s"
%
(
filename
,
modulename
,
funcname
)))
...
...
Misc/ACKS
Dosyayı görüntüle @
533a167a
...
...
@@ -63,6 +63,7 @@ Reimer Behrends
Ben Bell
Thomas Bellman
Alexander Belopolsky
Eli Bendersky
Andrew Bennetts
Andy Bensky
Michel Van den Bergh
...
...
Misc/NEWS
Dosyayı görüntüle @
533a167a
...
...
@@ -473,6 +473,9 @@ C-API
Library
-------
- Issue #9282: Fixed --listfuncs option of trace.py. Thanks Eli
Bendersky for the patch.
- Issue #3704: http.cookiejar was not properly handling URLs with a / in the
parameters.
...
...
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