diff options
author | Joe Gordon <jogo@cloudscaling.com> | 2013-01-30 13:26:07 -0800 |
---|---|---|
committer | Joe Gordon <jogo@cloudscaling.com> | 2013-01-31 12:29:14 -0800 |
commit | 64ded799076b9e452c3147ad240f85869c39c2cc (patch) | |
tree | ca61fa68da6f848683397ac27ac50c13cf3e2c64 /tools/flakes.py | |
parent | 77dbed11a6bf95d56e563200d175fe3ada553a6f (diff) | |
download | nova-64ded799076b9e452c3147ad240f85869c39c2cc.tar.gz nova-64ded799076b9e452c3147ad240f85869c39c2cc.tar.xz nova-64ded799076b9e452c3147ad240f85869c39c2cc.zip |
import tools/flakes from oslo
Change-Id: Id6d99fe1fd39e8c061f591e9a82058aea9664674
Diffstat (limited to 'tools/flakes.py')
-rw-r--r-- | tools/flakes.py | 15 |
1 files changed, 4 insertions, 11 deletions
diff --git a/tools/flakes.py b/tools/flakes.py index f805fd156..7f96116ca 100644 --- a/tools/flakes.py +++ b/tools/flakes.py @@ -2,21 +2,14 @@ wrapper for pyflakes to ignore gettext based warning: "undefined name '_'" - From https://bugs.launchpad.net/pyflakes/+bug/844592 + Synced in from openstack-common """ -import __builtin__ -import os import sys +import pyflakes.checker from pyflakes.scripts import pyflakes if __name__ == "__main__": - names = os.environ.get('PYFLAKES_BUILTINS', '_') - names = [x.strip() for x in names.split(',')] - for x in names: - if not hasattr(__builtin__, x): - setattr(__builtin__, x, True) - - del names, os, __builtin__ - + orig_builtins = set(pyflakes.checker._MAGIC_GLOBALS) + pyflakes.checker._MAGIC_GLOBALS = orig_builtins | set(['_']) sys.exit(pyflakes.main()) |