Salome HOME
This commit was generated by cvs2git to track changes on a CVS vendor
[tools/eficas.git] / Utilites / __init__.py
1 """
2     $Id: __init__.py,v 1.3 2003/02/06 15:11:22 eficas Exp $
3
4     Le package UTILITES contient les fonctions permettant
5     d'instrumenter un script :
6     - MESSAGE (module message)
7     - SCRUTE (module scrute)
8     - PAUSE (module pause)
9 """
10
11
12 ##__all__ = [ "ici" , "message" , "scrute" , "pause" , "appels" ]
13
14 try :
15         from developpeur import *
16 except :
17         pass
18 from ici import *
19 from execute import *
20 from pause import *
21 from scrute import *
22 from message import *
23 from appels import *
24 from modification import *
25
26
27
28 if __name__ == "__main__" :
29     MODIFICATION( "toto" )
30     developpeur.write( dir()+'\n' )
31     developpeur.write( "import du package effectuĂ© !" +'\n' )