/Lib/lib2to3/fixes/fix_long.py
http://unladen-swallow.googlecode.com/ · Python · 22 lines · 19 code · 1 blank · 2 comment · 0 complexity · 2aaca612bae42bfe84dd0d6139260749 MD5 · raw file
- # Copyright 2006 Google, Inc. All Rights Reserved.
- # Licensed to PSF under a Contributor Agreement.
- """Fixer that turns 'long' into 'int' everywhere.
- """
- # Local imports
- from .. import fixer_base
- from ..fixer_util import Name, Number, is_probably_builtin
- class FixLong(fixer_base.BaseFix):
- PATTERN = "'long'"
- static_int = Name("int")
- def transform(self, node, results):
- if is_probably_builtin(node):
- new = self.static_int.clone()
- new.set_prefix(node.get_prefix())
- return new