facf0c92e0
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.
20 lines
476 B
Python
20 lines
476 B
Python
# Copyright 2006 Google, Inc. All Rights Reserved.
|
|
# Licensed to PSF under a Contributor Agreement.
|
|
|
|
"""Fixer that turns 'long' into 'int' everywhere.
|
|
"""
|
|
|
|
# Local imports
|
|
from lib2to3 import fixer_base
|
|
from lib2to3.fixer_util import is_probably_builtin
|
|
|
|
|
|
class FixLong(fixer_base.BaseFix):
|
|
BM_compatible = True
|
|
PATTERN = "'long'"
|
|
|
|
def transform(self, node, results):
|
|
if is_probably_builtin(node):
|
|
node.value = "int"
|
|
node.changed()
|