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
c406d5cd
Unverified
Kaydet (Commit)
c406d5cd
authored
Agu 25, 2018
tarafından
Serhiy Storchaka
Kaydeden (comit)
GitHub
Agu 25, 2018
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
bpo-34171: Prevent creating Lib/trace.cover when run the trace module. (GH-8841)
üst
8fdd331b
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
10 additions
and
10 deletions
+10
-10
test_trace.py
Lib/test/test_trace.py
+5
-0
trace.py
Lib/trace.py
+4
-10
2018-08-21-00-29-01.bpo-34171.6LkWav.rst
...S.d/next/Library/2018-08-21-00-29-01.bpo-34171.6LkWav.rst
+1
-0
No files found.
Lib/test/test_trace.py
Dosyayı görüntüle @
c406d5cd
...
...
@@ -387,6 +387,11 @@ class TestCoverageCommandLineOutput(unittest.TestCase):
def
test_cover_files_written_no_highlight
(
self
):
argv
=
'-m trace --count'
.
split
()
+
[
self
.
codefile
]
status
,
stdout
,
stderr
=
assert_python_ok
(
*
argv
)
self
.
assertEqual
(
stderr
,
b
''
)
tracedir
=
os
.
path
.
dirname
(
os
.
path
.
abspath
(
trace
.
__file__
))
tracecoverpath
=
os
.
path
.
join
(
tracedir
,
"trace.cover"
)
self
.
assertFalse
(
os
.
path
.
exists
(
tracecoverpath
))
self
.
assertTrue
(
os
.
path
.
exists
(
self
.
coverfile
))
with
open
(
self
.
coverfile
)
as
f
:
self
.
assertEqual
(
f
.
read
(),
...
...
Lib/trace.py
Dosyayı görüntüle @
c406d5cd
...
...
@@ -63,14 +63,6 @@ from time import monotonic as _time
import
threading
def
_settrace
(
func
):
threading
.
settrace
(
func
)
sys
.
settrace
(
func
)
def
_unsettrace
():
sys
.
settrace
(
None
)
threading
.
settrace
(
None
)
PRAGMA_NOCOVER
=
"#pragma NO COVER"
class
_Ignore
:
...
...
@@ -451,12 +443,14 @@ class Trace:
if
globals
is
None
:
globals
=
{}
if
locals
is
None
:
locals
=
{}
if
not
self
.
donothing
:
_settrace
(
self
.
globaltrace
)
threading
.
settrace
(
self
.
globaltrace
)
sys
.
settrace
(
self
.
globaltrace
)
try
:
exec
(
cmd
,
globals
,
locals
)
finally
:
if
not
self
.
donothing
:
_unsettrace
()
sys
.
settrace
(
None
)
threading
.
settrace
(
None
)
def
runfunc
(
self
,
func
,
*
args
,
**
kw
):
result
=
None
...
...
Misc/NEWS.d/next/Library/2018-08-21-00-29-01.bpo-34171.6LkWav.rst
0 → 100644
Dosyayı görüntüle @
c406d5cd
Running the :mod:`trace` module no longer creates the ``trace.cover`` file.
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