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
64c26e5f
Kaydet (Commit)
64c26e5f
authored
Haz 04, 2016
tarafından
Serhiy Storchaka
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Sade Fark
Issue #20041: Fixed TypeError when frame.f_trace is set to None.
Patch by Xavier de Gaye.
üst
a5071c2b
64a263a1
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
14 additions
and
0 deletions
+14
-0
test_sys_settrace.py
Lib/test/test_sys_settrace.py
+9
-0
NEWS
Misc/NEWS
+3
-0
frameobject.c
Objects/frameobject.c
+2
-0
No files found.
Lib/test/test_sys_settrace.py
Dosyayı görüntüle @
64c26e5f
...
...
@@ -388,6 +388,15 @@ class TraceTestCase(unittest.TestCase):
(
257
,
'line'
),
(
257
,
'return'
)])
def
test_17_none_f_trace
(
self
):
# Issue 20041: fix TypeError when f_trace is set to None.
def
func
():
sys
.
_getframe
()
.
f_trace
=
None
lineno
=
2
self
.
run_and_compare
(
func
,
[(
0
,
'call'
),
(
1
,
'line'
)])
class
RaisingTraceFuncTestCase
(
unittest
.
TestCase
):
def
setUp
(
self
):
...
...
Misc/NEWS
Dosyayı görüntüle @
64c26e5f
...
...
@@ -120,6 +120,9 @@ Release date: 2016-05-16
Core
and
Builtins
-----------------
-
Issue
#
20041
:
Fixed
TypeError
when
frame
.
f_trace
is
set
to
None
.
Patch
by
Xavier
de
Gaye
.
-
Issue
#
26168
:
Fixed
possible
refleaks
in
failing
Py_BuildValue
()
with
the
"N"
format
unit
.
...
...
Objects/frameobject.c
Dosyayı görüntüle @
64c26e5f
...
...
@@ -344,6 +344,8 @@ frame_settrace(PyFrameObject *f, PyObject* v, void *closure)
/* We rely on f_lineno being accurate when f_trace is set. */
f
->
f_lineno
=
PyFrame_GetLineNumber
(
f
);
if
(
v
==
Py_None
)
v
=
NULL
;
Py_XINCREF
(
v
);
Py_XSETREF
(
f
->
f_trace
,
v
);
...
...
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