clang 20.0.0 (based on r547379) from build 12806354. Bug: http://b/379133546 Test: N/A Change-Id: I2eb8938af55d809de674be63cb30cf27e801862b Upstream-Commit: ad834e67b1105d15ef907f6255d4c96e8e733f57
24 lines
571 B
Python
24 lines
571 B
Python
# Copyright 2006 Google, Inc. All Rights Reserved.
|
|
# Licensed to PSF under a Contributor Agreement.
|
|
|
|
"""Fixer that turns <> into !=."""
|
|
|
|
# Local imports
|
|
from .. import pytree
|
|
from ..pgen2 import token
|
|
from .. import fixer_base
|
|
|
|
|
|
class FixNe(fixer_base.BaseFix):
|
|
# This is so simple that we don't need the pattern compiler.
|
|
|
|
_accept_type = token.NOTEQUAL
|
|
|
|
def match(self, node):
|
|
# Override
|
|
return node.value == "<>"
|
|
|
|
def transform(self, node, results):
|
|
new = pytree.Leaf(token.NOTEQUAL, "!=", prefix=node.prefix)
|
|
return new
|