diff options
Diffstat (limited to 'astroid/modutils.py')
-rw-r--r-- | astroid/modutils.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/astroid/modutils.py b/astroid/modutils.py index 67f04f55..2a54fd51 100644 --- a/astroid/modutils.py +++ b/astroid/modutils.py @@ -140,7 +140,7 @@ if os.name == "posix": return os.path.join(prefix, path, base_python) STD_LIB_DIRS.add(_posix_path("lib")) - if sys.maxsize > 2 ** 32: + if sys.maxsize > 2**32: # This tries to fix a problem with /usr/lib64 builds, # where systems are running both 32-bit and 64-bit code # on the same machine, which reflects into the places where |