The Gaudi Framework  master (37c0b60a)
__init__.py
Go to the documentation of this file.
1 
13 """
14 GaudiPython main module.
15 It makes available a number of APIs and classes to be used by end user scripts
16 
17 Usage:
18  import GaudiPython
19 """
20 
21 # ensure that we (and the subprocesses) use the C standard localization
22 import os
23 
24 if os.environ.get("LC_ALL") != "C":
25  print('# setting LC_ALL to "C"')
26  # !!!
27  os.environ["LC_ALL"] = "C"
28 
29 from .Bindings import * # noqa: F401 F403
30 from .Pythonizations import * # noqa: F401 F403