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
9528334e
Kaydet (Commit)
9528334e
authored
Mar 15, 2016
tarafından
Victor Stinner
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
_tracemalloc: store lineno as unsigned int
Issue #26564. Cleanup the code, lineno is never negative.
üst
57003f81
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
7 additions
and
17 deletions
+7
-17
_tracemalloc.c
Modules/_tracemalloc.c
+7
-17
No files found.
Modules/_tracemalloc.c
Dosyayı görüntüle @
9528334e
...
...
@@ -66,7 +66,7 @@ _declspec(align(4))
#endif
{
PyObject
*
filename
;
int
lineno
;
unsigned
int
lineno
;
}
frame_t
;
typedef
struct
{
...
...
@@ -266,12 +266,13 @@ tracemalloc_get_frame(PyFrameObject *pyframe, frame_t *frame)
PyCodeObject
*
code
;
PyObject
*
filename
;
_Py_hashtable_entry_t
*
entry
;
int
lineno
;
frame
->
filename
=
unknown_filename
;
frame
->
lineno
=
PyFrame_GetLineNumber
(
pyframe
);
assert
(
frame
->
lineno
>=
0
);
if
(
frame
->
lineno
<
0
)
frame
->
lineno
=
0
;
lineno
=
PyFrame_GetLineNumber
(
pyframe
);
if
(
lineno
<
0
)
lineno
=
0
;
frame
->
lineno
=
(
unsigned
int
)
lineno
;
code
=
pyframe
->
f_code
;
if
(
code
==
NULL
)
{
...
...
@@ -375,7 +376,6 @@ traceback_get_frames(traceback_t *traceback)
for
(
pyframe
=
tstate
->
frame
;
pyframe
!=
NULL
;
pyframe
=
pyframe
->
f_back
)
{
tracemalloc_get_frame
(
pyframe
,
&
traceback
->
frames
[
traceback
->
nframe
]);
assert
(
traceback
->
frames
[
traceback
->
nframe
].
filename
!=
NULL
);
assert
(
traceback
->
frames
[
traceback
->
nframe
].
lineno
>=
0
);
traceback
->
nframe
++
;
if
(
traceback
->
nframe
==
tracemalloc_config
.
max_nframe
)
break
;
...
...
@@ -943,15 +943,6 @@ tracemalloc_stop(void)
tracemalloc_traceback
=
NULL
;
}
static
PyObject
*
lineno_as_obj
(
int
lineno
)
{
if
(
lineno
>=
0
)
return
PyLong_FromLong
(
lineno
);
else
Py_RETURN_NONE
;
}
PyDoc_STRVAR
(
tracemalloc_is_tracing_doc
,
"is_tracing()->bool
\n
"
"
\n
"
...
...
@@ -996,8 +987,7 @@ frame_to_pyobject(frame_t *frame)
Py_INCREF
(
frame
->
filename
);
PyTuple_SET_ITEM
(
frame_obj
,
0
,
frame
->
filename
);
assert
(
frame
->
lineno
>=
0
);
lineno_obj
=
lineno_as_obj
(
frame
->
lineno
);
lineno_obj
=
PyLong_FromUnsignedLong
(
frame
->
lineno
);
if
(
lineno_obj
==
NULL
)
{
Py_DECREF
(
frame_obj
);
return
NULL
;
...
...
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