Salome HOME
pour tenir compte des LASSD
[tools/eficas.git] / Utilites / __init__.py
1 # -*- coding: utf-8 -*-
2 """
3     $Id: __init__.py,v 1.4 2003/03/06 14:36:11 eficas Exp $
4
5     Le package UTILITES contient les fonctions permettant
6     d'instrumenter un script :
7     - MESSAGE (module message)
8     - SCRUTE (module scrute)
9     - PAUSE (module pause)
10 """
11
12
13 ##__all__ = [ "ici" , "message" , "scrute" , "pause" , "appels" ]
14
15 try :
16         from developpeur import *
17 except :
18         pass
19 from ici import *
20 from execute import *
21 from pause import *
22 from scrute import *
23 from message import *
24 from appels import *
25 from modification import *
26
27
28
29 if __name__ == "__main__" :
30     MODIFICATION( "toto" )
31     developpeur.write( dir()+'\n' )
32     developpeur.write( "import du package effectuĂ© !" +'\n' )