Source code for pymyinstall.packaged.config_helper

# -*- coding: utf-8 -*-
"""
Helpers about configurations


:githublink:`%|py|6`
"""
import sys


[docs]def is_64bit(): """ tells if the python is 64 bit or not :return: boolean :githublink:`%|py|14` """ return sys.maxsize > 2 ** 32