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
03c566a2
Kaydet (Commit)
03c566a2
authored
Nis 16, 2007
tarafından
Neal Norwitz
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Revert 54813 for 2.5.1 release. Can be applied after 2.5 branch is unfrozen.
üst
a4ff44aa
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
3 additions
and
3 deletions
+3
-3
frameobject.c
Objects/frameobject.c
+2
-2
ceval.c
Python/ceval.c
+1
-1
No files found.
Objects/frameobject.c
Dosyayı görüntüle @
03c566a2
...
@@ -68,7 +68,7 @@ frame_setlineno(PyFrameObject *f, PyObject* p_new_lineno)
...
@@ -68,7 +68,7 @@ frame_setlineno(PyFrameObject *f, PyObject* p_new_lineno)
int
new_lineno
=
0
;
/* The new value of f_lineno */
int
new_lineno
=
0
;
/* The new value of f_lineno */
int
new_lasti
=
0
;
/* The new value of f_lasti */
int
new_lasti
=
0
;
/* The new value of f_lasti */
int
new_iblock
=
0
;
/* The new value of f_iblock */
int
new_iblock
=
0
;
/* The new value of f_iblock */
unsigned
char
*
code
=
NULL
;
/* The bytecode for the frame... */
char
*
code
=
NULL
;
/* The bytecode for the frame... */
Py_ssize_t
code_len
=
0
;
/* ...and its length */
Py_ssize_t
code_len
=
0
;
/* ...and its length */
char
*
lnotab
=
NULL
;
/* Iterating over co_lnotab */
char
*
lnotab
=
NULL
;
/* Iterating over co_lnotab */
Py_ssize_t
lnotab_len
=
0
;
/* (ditto) */
Py_ssize_t
lnotab_len
=
0
;
/* (ditto) */
...
@@ -85,7 +85,7 @@ frame_setlineno(PyFrameObject *f, PyObject* p_new_lineno)
...
@@ -85,7 +85,7 @@ frame_setlineno(PyFrameObject *f, PyObject* p_new_lineno)
int
blockstack
[
CO_MAXBLOCKS
];
/* Walking the 'finally' blocks */
int
blockstack
[
CO_MAXBLOCKS
];
/* Walking the 'finally' blocks */
int
in_finally
[
CO_MAXBLOCKS
];
/* (ditto) */
int
in_finally
[
CO_MAXBLOCKS
];
/* (ditto) */
int
blockstack_top
=
0
;
/* (ditto) */
int
blockstack_top
=
0
;
/* (ditto) */
unsigned
char
setup_op
=
0
;
/* (ditto) */
int
setup_op
=
0
;
/* (ditto) */
/* f_lineno must be an integer. */
/* f_lineno must be an integer. */
if
(
!
PyInt_Check
(
p_new_lineno
))
{
if
(
!
PyInt_Check
(
p_new_lineno
))
{
...
...
Python/ceval.c
Dosyayı görüntüle @
03c566a2
...
@@ -662,7 +662,7 @@ PyEval_EvalFrameEx(PyFrameObject *f, int throwflag)
...
@@ -662,7 +662,7 @@ PyEval_EvalFrameEx(PyFrameObject *f, int throwflag)
#define STACKADJ(n) { (void)(BASIC_STACKADJ(n), \
#define STACKADJ(n) { (void)(BASIC_STACKADJ(n), \
lltrace && prtrace(TOP(), "stackadj")); \
lltrace && prtrace(TOP(), "stackadj")); \
assert(STACK_LEVEL() <= co->co_stacksize); }
assert(STACK_LEVEL() <= co->co_stacksize); }
#define EXT_POP(STACK_POINTER) (lltrace && prtrace(
(STACK_POINTER)[-1]
, "ext_pop"), *--(STACK_POINTER))
#define EXT_POP(STACK_POINTER) (lltrace && prtrace(
*(STACK_POINTER)
, "ext_pop"), *--(STACK_POINTER))
#else
#else
#define PUSH(v) BASIC_PUSH(v)
#define PUSH(v) BASIC_PUSH(v)
#define POP() BASIC_POP()
#define POP() BASIC_POP()
...
...
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