diff options
author | Guido van Rossum <guido@python.org> | 1992-01-14 18:32:11 (GMT) |
---|---|---|
committer | Guido van Rossum <guido@python.org> | 1992-01-14 18:32:11 (GMT) |
commit | 088bc2ad3cdea6b9e042efe8863828334517f897 (patch) | |
tree | faf002c4015a95bd1288060475182fdfe9645b83 /Include | |
parent | cff3454effbe323b287f95d29329b70adfa22979 (diff) | |
download | cpython-088bc2ad3cdea6b9e042efe8863828334517f897.zip cpython-088bc2ad3cdea6b9e042efe8863828334517f897.tar.gz cpython-088bc2ad3cdea6b9e042efe8863828334517f897.tar.bz2 |
Added f_lasti and f_lineno members.
Diffstat (limited to 'Include')
-rw-r--r-- | Include/frameobject.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/Include/frameobject.h b/Include/frameobject.h index 22bdfa9..479664d 100644 --- a/Include/frameobject.h +++ b/Include/frameobject.h @@ -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; |