(root)/
Python-3.12.0/
Lib/
lib2to3/
fixes/
fix_standarderror.py
       1  # Copyright 2007 Google, Inc. All Rights Reserved.
       2  # Licensed to PSF under a Contributor Agreement.
       3  
       4  """Fixer for StandardError -> Exception."""
       5  
       6  # Local imports
       7  from .. import fixer_base
       8  from ..fixer_util import Name
       9  
      10  
      11  class ESC[4;38;5;81mFixStandarderror(ESC[4;38;5;149mfixer_baseESC[4;38;5;149m.ESC[4;38;5;149mBaseFix):
      12      BM_compatible = True
      13      PATTERN = """
      14                'StandardError'
      15                """
      16  
      17      def transform(self, node, results):
      18          return Name("Exception", prefix=node.prefix)