Hide keyboard shortcuts

Hot-keys on this page

r m x p   toggle line displays

j k   next/prev highlighted chunk

0   (zero) top of page

1   (one) first highlighted chunk

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