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