co_flags Description Returns an integer encoding a number of flags for the interpreter. Syntax code.co_flags Return Value #TODO Time Complexity #TODO Example >>> c = compile('2+2', '<string>', 'eval') >>> c.co_flags 64 See Also #TODO