mirror of
https://github.com/triqs/dft_tools
synced 2024-11-06 22:23:52 +01:00
1434193a38
- After the change in main lib, need to put explicitely the sitecustomize file
9 lines
293 B
Python
9 lines
293 B
Python
def application_pytriqs_import(name,*args,**kwargs):
|
|
if name.startswith('@package_name@'):
|
|
name = name[len('@package_name@')+1:]
|
|
return builtin_import(name,*args,**kwargs)
|
|
|
|
import __builtin__
|
|
__builtin__.__import__, builtin_import = application_pytriqs_import, __builtin__.__import__
|
|
|