mirror of https://github.com/astral-sh/ruff
19 lines
408 B
Python
19 lines
408 B
Python
from __future__ import nested_scopes, generators
|
|
from __future__ import with_statement, unicode_literals
|
|
|
|
from __future__ import absolute_import, division
|
|
from __future__ import generator_stop
|
|
from __future__ import print_function, nested_scopes, generator_stop
|
|
|
|
print(with_statement)
|
|
generators = 1
|
|
|
|
|
|
class Foo():
|
|
|
|
def boo(self):
|
|
print(division)
|
|
|
|
|
|
__all__ = ["print_function", "generator_stop"]
|