summaryrefslogtreecommitdiffstats
path: root/Include/frameobject.h
diff options
context:
space:
mode:
authorGuido van Rossum <guido@python.org>1992-01-14 18:32:11 (GMT)
committerGuido van Rossum <guido@python.org>1992-01-14 18:32:11 (GMT)
commit088bc2ad3cdea6b9e042efe8863828334517f897 (patch)
treefaf002c4015a95bd1288060475182fdfe9645b83 /Include/frameobject.h
parentcff3454effbe323b287f95d29329b70adfa22979 (diff)
downloadcpython-088bc2ad3cdea6b9e042efe8863828334517f897.zip
cpython-088bc2ad3cdea6b9e042efe8863828334517f897.tar.gz
cpython-088bc2ad3cdea6b9e042efe8863828334517f897.tar.bz2
Added f_lasti and f_lineno members.
Diffstat (limited to 'Include/frameobject.h')
-rw-r--r--Include/frameobject.h2
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;