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
3bafbf3a
Kaydet (Commit)
3bafbf3a
authored
May 19, 2019
tarafından
Batuhan Taşkaya
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
settrace/setprofile function gets lost
üst
f665b96e
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
15 additions
and
1 deletion
+15
-1
ceval.h
Include/ceval.h
+1
-0
test_sys_settrace.py
Lib/test/test_sys_settrace.py
+1
-0
ceval.c
Python/ceval.c
+12
-0
sysmodule.c
Python/sysmodule.c
+1
-1
No files found.
Include/ceval.h
Dosyayı görüntüle @
3bafbf3a
...
...
@@ -31,6 +31,7 @@ PyAPI_FUNC(PyObject *) PyEval_CallMethod(PyObject *obj,
#ifndef Py_LIMITED_API
PyAPI_FUNC
(
void
)
PyEval_SetProfile
(
Py_tracefunc
,
PyObject
*
);
PyAPI_FUNC
(
void
)
PyEval_SetTrace
(
Py_tracefunc
,
PyObject
*
);
PyAPI_FUNC
(
void
)
PyEval_TempResetSetTrace
();
PyAPI_FUNC
(
void
)
_PyEval_SetCoroutineOriginTrackingDepth
(
int
new_depth
);
PyAPI_FUNC
(
int
)
_PyEval_GetCoroutineOriginTrackingDepth
(
void
);
PyAPI_FUNC
(
void
)
_PyEval_SetCoroutineWrapper
(
PyObject
*
);
...
...
Lib/test/test_sys_settrace.py
Dosyayı görüntüle @
3bafbf3a
...
...
@@ -486,6 +486,7 @@ class RaisingTraceFuncTestCase(unittest.TestCase):
if
event
==
self
.
raiseOnEvent
:
raise
ValueError
# just something that isn't RuntimeError
else
:
print
(
1
)
return
self
.
trace
def
f
(
self
):
...
...
Python/ceval.c
Dosyayı görüntüle @
3bafbf3a
...
...
@@ -4589,6 +4589,18 @@ PyEval_SetTrace(Py_tracefunc func, PyObject *arg)
||
(
tstate
->
c_profilefunc
!=
NULL
));
}
void
PyEval_TempResetSetTrace
()
{
_PyRuntimeState
*
runtime
=
&
_PyRuntime
;
PyThreadState
*
tstate
=
_PyRuntimeState_GetThreadState
(
runtime
);
Py_tracefunc
tracefunc
=
tstate
->
c_tracefunc
;
PyObject
*
traceobj
=
tstate
->
c_traceobj
;
Py_XINCREF
(
traceobj
);
PyEval_SetTrace
(
NULL
,
NULL
);
PyEval_SetTrace
(
tracefunc
,
traceobj
);
}
void
_PyEval_SetCoroutineOriginTrackingDepth
(
int
new_depth
)
{
...
...
Python/sysmodule.c
Dosyayı görüntüle @
3bafbf3a
...
...
@@ -558,7 +558,7 @@ trace_trampoline(PyObject *self, PyFrameObject *frame,
return
0
;
result
=
call_trampoline
(
callback
,
frame
,
what
,
arg
);
if
(
result
==
NULL
)
{
PyEval_
SetTrace
(
NULL
,
NULL
);
PyEval_
TempResetSetTrace
(
);
Py_CLEAR
(
frame
->
f_trace
);
return
-
1
;
}
...
...
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