The Gaudi Framework  v32r2 (46d42edc)
__init__.py
Go to the documentation of this file.
1 # File: GaudiPython/__init__.py
2 # Author: Pere Mato (pere.mato@cern.ch)
3 """
4  GaudiPython main module.
5  It makes available a number of APIs and classes to be used by end user scripts
6 
7  Usage:
8  import GaudiPython
9 """
10 from __future__ import absolute_import, print_function
11 
12 # ensure that we (and the subprocesses) use the C standard localization
13 import os
14 if os.environ.get('LC_ALL') != 'C':
15  print('# setting LC_ALL to "C"')
16  # !!!
17  os.environ['LC_ALL'] = 'C'
18 
19 from .Bindings import *
20 from .Pythonizations import *