Removed more hair in support of future-generator stmts.

This commit is contained in:
Tim Peters 2002-04-12 01:20:10 +00:00
parent 68c7e26dc9
commit 2bbdba3c00
3 changed files with 4 additions and 4 deletions

View file

@ -7,8 +7,8 @@
extern "C" {
#endif
#define PyCF_MASK (CO_GENERATOR_ALLOWED | CO_FUTURE_DIVISION)
#define PyCF_MASK_OBSOLETE (CO_NESTED)
#define PyCF_MASK (CO_FUTURE_DIVISION)
#define PyCF_MASK_OBSOLETE (CO_GENERATOR_ALLOWED | CO_NESTED)
typedef struct {
int cf_flags; /* bitmask of CO_xxx flags relevant to future */