From e1a8ba34529cb0ecddcaadd72aa6ff9a566b8489 Mon Sep 17 00:00:00 2001 From: Pascale Noyret Date: Wed, 26 Nov 2014 08:21:54 +0000 Subject: [PATCH] ajout de ang --- Noyau/N_BLOC.py | 5 ++--- Noyau/N_FACT.py | 5 ++--- Noyau/N_MACRO.py | 5 ++--- Noyau/N_OPER.py | 5 ++--- Noyau/N_PROC.py | 5 ++--- 5 files changed, 10 insertions(+), 15 deletions(-) diff --git a/Noyau/N_BLOC.py b/Noyau/N_BLOC.py index a491c33a..58d1844e 100644 --- a/Noyau/N_BLOC.py +++ b/Noyau/N_BLOC.py @@ -51,7 +51,7 @@ class BLOC(N_ENTITE.ENTITE): class_instance = N_MCBLOC.MCBLOC label = 'BLOC' - def __init__(self, fr="", docu="", regles=(), statut='f', condition=None, + def __init__(self, fr="", docu="", regles=(), statut='f', condition=None,ang="" **args): """ Un bloc est caractérisé par les attributs suivants : @@ -68,8 +68,7 @@ class BLOC(N_ENTITE.ENTITE): """ # Initialisation des attributs self.fr = fr - assert args.get( - 'ang') is None, '"ang" attribute does not exist anymore' + self.ang = ang self.docu = docu if type(regles) == types.TupleType: self.regles = regles diff --git a/Noyau/N_FACT.py b/Noyau/N_FACT.py index df3f0783..04bcf4ae 100644 --- a/Noyau/N_FACT.py +++ b/Noyau/N_FACT.py @@ -53,7 +53,7 @@ class FACT(N_ENTITE.ENTITE): list_instance = N_MCLIST.MCList label = 'FACT' - def __init__(self, fr="", docu="", regles=(), statut='f', defaut=None, + def __init__(self, fr="", docu="", regles=(), statut='f', defaut=None,ang="" min=0, max=1, validators=None, **args): """ Un mot-clé facteur est caractérisé par les attributs suivants : @@ -70,8 +70,7 @@ class FACT(N_ENTITE.ENTITE): N_ENTITE.ENTITE.__init__(self, validators) # Initialisation des attributs self.fr = fr - assert args.get( - 'ang') is None, '"ang" attribute does not exist anymore' + self.ang=ang self.docu = docu if type(regles) == types.TupleType: self.regles = regles diff --git a/Noyau/N_MACRO.py b/Noyau/N_MACRO.py index f2350ddc..58d743e0 100644 --- a/Noyau/N_MACRO.py +++ b/Noyau/N_MACRO.py @@ -88,7 +88,7 @@ class MACRO(N_ENTITE.ENTITE): nommage = nommage def __init__( - self, nom, op, sd_prod=None, reentrant='n', repetable='o', fr="", + self, nom, op, sd_prod=None, reentrant='n', repetable='o', fr="",ang="", docu="", regles=(), op_init=None, niveau = None, fichier_ini=0, UIinfo=None, **args): """ Méthode d'initialisation de l'objet MACRO. Les arguments sont utilisés pour initialiser @@ -111,8 +111,7 @@ class MACRO(N_ENTITE.ENTITE): self.sd_prod = sd_prod self.reentrant = reentrant self.fr = fr - assert args.get( - 'ang') is None, '"ang" attribute does not exist anymore' + self.ang=ang self.repetable = repetable self.docu = docu if type(regles) == types.TupleType: diff --git a/Noyau/N_OPER.py b/Noyau/N_OPER.py index a98c9644..3c14e09a 100644 --- a/Noyau/N_OPER.py +++ b/Noyau/N_OPER.py @@ -87,7 +87,7 @@ class OPER(N_ENTITE.ENTITE): label = 'OPER' nommage = nommage - def __init__(self, nom, op, sd_prod, reentrant='n', repetable='o', fr="", + def __init__(self, nom, op, sd_prod, reentrant='n', repetable='o', fr="",ang="", docu="", regles=(), op_init=None, niveau = None, UIinfo=None, **args): """ Méthode d'initialisation de l'objet OPER. Les arguments sont utilisés pour initialiser @@ -98,8 +98,7 @@ class OPER(N_ENTITE.ENTITE): self.sd_prod = sd_prod self.reentrant = reentrant self.fr = fr - assert args.get( - 'ang') is None, '"ang" attribute does not exist anymore' + self.ang = ang self.repetable = repetable self.docu = docu if type(regles) == types.TupleType: diff --git a/Noyau/N_PROC.py b/Noyau/N_PROC.py index dc735a2b..ab3f0378 100644 --- a/Noyau/N_PROC.py +++ b/Noyau/N_PROC.py @@ -81,7 +81,7 @@ class PROC(N_ENTITE.ENTITE): class_instance = N_PROC_ETAPE.PROC_ETAPE label = 'PROC' - def __init__(self, nom, op, reentrant='n', repetable='o', fr="", + def __init__(self, nom, op, reentrant='n', repetable='o', fr="",ang="", docu="", regles=(), op_init=None, niveau = None, UIinfo=None, **args): """ Méthode d'initialisation de l'objet PROC. Les arguments sont utilisés pour initialiser @@ -92,8 +92,7 @@ class PROC(N_ENTITE.ENTITE): self.reentrant = reentrant self.repetable = repetable self.fr = fr - assert args.get( - 'ang') is None, '"ang" attribute does not exist anymore' + self.ang="" self.docu = docu if type(regles) == types.TupleType: self.regles = regles -- 2.39.2