summaryrefslogtreecommitdiff
path: root/lib/python2.7/lib2to3/fixes/fix_long.py
diff options
context:
space:
mode:
authorElliott Hughes <enh@google.com>2021-06-24 10:34:15 -0700
committerElliott Hughes <enh@google.com>2021-06-24 10:35:21 -0700
commit0b2935e8c71ccee98fa4a5498b90edc97756948f (patch)
tree864c52fff91ada9d6a095df9ed49786356575bf6 /lib/python2.7/lib2to3/fixes/fix_long.py
parent481790b5f34a2e67e677d04c7fdf1684e64cc413 (diff)
downloaddarwin-x86-android-s-qpr3-beta-1.tar.gz
gdb's no longer supported, and neither are macOS platform builds. Test: treehugger Change-Id: I530f7e66768e021a2d03f9e939b95c37e186e776
Diffstat (limited to 'lib/python2.7/lib2to3/fixes/fix_long.py')
-rw-r--r--lib/python2.7/lib2to3/fixes/fix_long.py19
1 files changed, 0 insertions, 19 deletions
diff --git a/lib/python2.7/lib2to3/fixes/fix_long.py b/lib/python2.7/lib2to3/fixes/fix_long.py
deleted file mode 100644
index 5dddde0..0000000
--- a/lib/python2.7/lib2to3/fixes/fix_long.py
+++ /dev/null
@@ -1,19 +0,0 @@
-# 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 = u"int"
- node.changed()