diff options
author | Jeremy Hylton <jeremy@alum.mit.edu> | 2001-02-28 23:03:39 +0000 |
---|---|---|
committer | Jeremy Hylton <jeremy@alum.mit.edu> | 2001-02-28 23:03:39 +0000 |
commit | 2f1995cb6507a67f65f84814b366b1e45484b298 (patch) | |
tree | 21fc6d9f520f2463827cb8fbaaf427e86f2ead43 /Include/symtable.h | |
parent | 42606a1f901aab03a243b04a26cee4c9c54fa17e (diff) | |
download | cpython-2f1995cb6507a67f65f84814b366b1e45484b298.tar.gz |
add DEF_BOUND
Diffstat (limited to 'Include/symtable.h')
-rw-r--r-- | Include/symtable.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/Include/symtable.h b/Include/symtable.h index 7d1e0c32ec..6c4f284465 100644 --- a/Include/symtable.h +++ b/Include/symtable.h @@ -71,11 +71,13 @@ DL_IMPORT(void) PySymtable_Free(struct symtable *); #define DEF_STAR 2<<3 /* parameter is star arg */ #define DEF_DOUBLESTAR 2<<4 /* parameter is star-star arg */ #define DEF_INTUPLE 2<<5 /* name defined in tuple in parameters */ -#define DEF_FREE 2<<6 /* name used by not defined in nested scope */ +#define DEF_FREE 2<<6 /* name used but not defined in nested scope */ #define DEF_FREE_GLOBAL 2<<7 /* free variable is actually implicit global */ #define DEF_FREE_CLASS 2<<8 /* free variable from class's method */ #define DEF_IMPORT 2<<9 /* assignment occurred via import */ +#define DEF_BOUND (DEF_LOCAL | DEF_PARAM | DEF_IMPORT) + #define TYPE_FUNCTION 1 #define TYPE_CLASS 2 #define TYPE_MODULE 3 |