mirror of
https://github.com/python/cpython.git
synced 2025-10-17 12:18:23 +00:00
Added f_lasti and f_lineno members.
This commit is contained in:
parent
cff3454eff
commit
088bc2ad3c
2 changed files with 6 additions and 0 deletions
|
@ -41,6 +41,8 @@ typedef struct _frame {
|
|||
int f_nvalues; /* size of f_valuestack */
|
||||
int f_nblocks; /* size of f_blockstack */
|
||||
int f_iblock; /* index in f_blockstack */
|
||||
int f_lasti; /* Last instruction if called */
|
||||
int f_lineno; /* Current line number */
|
||||
} frameobject;
|
||||
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue