Loading [MathJax]/extensions/tex2jax.js
The Gaudi Framework  v36r16 (ea80daf8)
All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Modules Pages
__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