Salome HOME
gestion des listes et label sur 2
[tools/eficas.git] / Noyau / N__F.py
1 # coding=utf-8
2 # Copyright (C) 2007-2013   EDF R&D
3 #
4 # This library is free software; you can redistribute it and/or
5 # modify it under the terms of the GNU Lesser General Public
6 # License as published by the Free Software Foundation; either
7 # version 2.1 of the License.
8 #
9 # This library is distributed in the hope that it will be useful,
10 # but WITHOUT ANY WARRANTY; without even the implied warranty of
11 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
12 # Lesser General Public License for more details.
13 #
14 # You should have received a copy of the GNU Lesser General Public
15 # License along with this library; if not, write to the Free Software
16 # Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA
17 #
18 # See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
19
20
21 import UserDict
22
23
24 class _F(UserDict.UserDict):
25
26     """
27         Cette classe a un comportement semblable à un
28         dictionnaire Python et permet de donner
29         la valeur d'un mot-clé facteur avec pour les sous
30         mots-clés la syntaxe motcle=valeur
31     """
32
33     def __init__(self, *pos, **args):
34         if len(pos) != 0:
35             raise SyntaxError("Valeur invalide pour '_F('. "
36                               "On attend cette syntaxe : _F(MOTCLE=valeur, ...)")
37         self.data = args
38
39     def supprime(self):
40         self.data = {}
41
42     def __cmp__(self, dict):
43         if type(dict) == type(self.data):
44             return cmp(self.data, dict)
45         elif hasattr(dict, "data"):
46             return cmp(self.data, dict.data)
47         else:
48             return cmp(self.data, dict)
49
50     def __iter__(self):
51         return iter(self.data)
52
53     def copy(self):
54         import copy
55         c = copy.copy(self)
56         c.data = self.data.copy()
57         return c