add long to built-ins in landscape

This commit is contained in:
Stefan Wojcik 2016-12-11 15:01:51 -05:00
parent a12abe2da4
commit 688ea4f0f2

View File

@ -4,9 +4,11 @@ pylint:
- protected-access - protected-access
additional-builtins: additional-builtins:
# add xrange as a valid built-in. In Python 3, xrange is translated # add xrange and long as valid built-ins. In Python 3, xrange is
# into range via 2to3 (see "use_2to3" in setup.py). # translated into range and long is translated into int via 2to3 (see
- xrange # "use_2to3" in setup.py). This should be removed when we drop Python
# 2 support (which probably won't happen any time soon).
- xrange,long
ignore-paths: ignore-paths:
- benchmark.py - benchmark.py