ff4ff35918
Red Bear OS is a full fork. All sources must be available from git clone with zero network access. Removed gitignore rules that excluded fetched source trees under recipes/*/source/, local/recipes/kde/*/source/, local/recipes/qt/*/source/, and vendor source trees. Build artifacts (target/, build/, source.tar, *.o, *.so) remain excluded. 127291 files added — kernel, relibc, base, bootloader, pkgar, all KDE/Qt frameworks, mesa, wayland, DRM drivers, and every other recipe source.
23 lines
547 B
Python
23 lines
547 B
Python
"""Remove __future__ imports
|
|
|
|
from __future__ import foo is replaced with an empty line.
|
|
"""
|
|
# Author: Christian Heimes
|
|
|
|
# Local imports
|
|
from .. import fixer_base
|
|
from ..fixer_util import BlankLine
|
|
|
|
class FixFuture(fixer_base.BaseFix):
|
|
BM_compatible = True
|
|
|
|
PATTERN = """import_from< 'from' module_name="__future__" 'import' any >"""
|
|
|
|
# This should be run last -- some things check for the import
|
|
run_order = 10
|
|
|
|
def transform(self, node, results):
|
|
new = BlankLine()
|
|
new.prefix = node.prefix
|
|
return new
|