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
c8c8b94c
Kaydet (Commit)
c8c8b94c
authored
Nis 22, 2003
tarafından
Jeremy Hylton
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Only produce a dotted module name when writing output to a separate
directory.
üst
282be3ab
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
2 deletions
+3
-2
trace.py
Lib/trace.py
+3
-2
No files found.
Lib/trace.py
Dosyayı görüntüle @
c8c8b94c
...
...
@@ -163,7 +163,7 @@ def modname(path):
return
filename
def
fullmodname
(
path
):
"""Return a plausible module name for the pat
c
h."""
"""Return a plausible module name for the path."""
# If the file 'path' is part of a package, then the filename isn't
# enough to uniquely identify it. Try to do the right thing by
...
...
@@ -244,17 +244,18 @@ class CoverageResults:
# skip some "files" we don't care about...
if
filename
==
"<string>"
:
continue
modulename
=
fullmodname
(
filename
)
if
filename
.
endswith
(
".pyc"
)
or
filename
.
endswith
(
".pyo"
):
filename
=
filename
[:
-
1
]
if
coverdir
is
None
:
dir
=
os
.
path
.
dirname
(
os
.
path
.
abspath
(
filename
))
modulename
=
modname
(
filename
)
else
:
dir
=
coverdir
if
not
os
.
path
.
exists
(
dir
):
os
.
makedirs
(
dir
)
modulename
=
fullmodname
(
filename
)
# If desired, get a list of the line numbers which represent
# executable content (returned as a dict for better lookup speed)
...
...
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