]> SALOME platform Git repositories - tools/eficas.git/commitdiff
Salome HOME
- Remove tkinter dependency
authorAndré Ribes <>
Wed, 19 May 2010 07:35:13 +0000 (07:35 +0000)
committerAndré Ribes <>
Wed, 19 May 2010 07:35:13 +0000 (07:35 +0000)
- Use numpy if Numeric not found

Extensions/param2.py
InterfaceQT4/compoerror.py

index e91e3e1bacf20700c7aa2ec209d97831025585e5..3259ce305d23356a9ede5f67109f344b5496902b 100644 (file)
@@ -1,9 +1,14 @@
 # -*- coding: utf-8 -*-
 from __future__ import division
 import math
-import Numeric
 import types
 
+try:
+  import Numeric
+except:
+  import numpy
+  Numeric = numpy
+
 def mkf(value):
     if type(value) in (type(1), type(1L), type(1.5), type(1j),type("hh")) :
         return Constant(value)
index 305039f0887d8fb412e8f5d80a89aec22a26a29b..af2d3c95653ebc9dd30492532c5d1e11854de9f4 100644 (file)
@@ -19,7 +19,6 @@
 #
 # ======================================================================
 # Modules Python
-from Tkinter import Label,Button
 
 #Modules Eficas
 from Noyau.N_OBJECT import ErrorObj