Lines Matching defs:__future__
3 import __future__
84 # obtain future flags (CO_FUTURE_***) from the __future__ module
86 f"CO_FUTURE_{future.upper()}": getattr(__future__, future).compiler_flag
87 for future in __future__.all_feature_names
103 exec("from __future__ import print_function; print 0")
110 exec("from __future__ import (print_function); print 0")
122 exec("from __future__ import unicode_literals; x = ''", {}, scope)
128 from __future__ import annotations
177 "from __future__ import annotations\n"
371 "from __future__ import annotations\n"
377 from __future__ import annotations
424 # annotation (e.g. `f(*args: *Ts)`) if `from __future__ import