Coverage for src/pymyinstall/packaged/config_helper.py: 75%

4 statements  

« prev     ^ index     » next       coverage.py v7.1.0, created at 2023-07-19 01:47 +0200

1# -*- coding: utf-8 -*- 

2""" 

3@file 

4@brief Helpers about configurations 

5""" 

6import sys 

7 

8 

9def is_64bit(): 

10 """ 

11 tells if the python is 64 bit or not 

12 

13 @return boolean 

14 """ 

15 return sys.maxsize > 2 ** 32