The Gaudi Framework
v37r1 (a7f61348)
__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
from
__future__
import
absolute_import, print_function
21
22
# ensure that we (and the subprocesses) use the C standard localization
23
import
os
24
25
if
os.environ.get(
"LC_ALL"
) !=
"C"
:
26
print(
'# setting LC_ALL to "C"'
)
27
# !!!
28
os.environ[
"LC_ALL"
] =
"C"
29
30
from
.Bindings
import
*
# noqa: F401 F403
31
from
.Pythonizations
import
*
# noqa: F401 F403
GaudiPython
python
GaudiPython
__init__.py
Generated on Mon Oct 30 2023 11:39:48 for The Gaudi Framework by
1.8.18