====== 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', '', 'eval') >>> c.co_flags 64 See Also ======== #TODO