From a68b4767b4be147fecbc0d2a271327ad9e194c70 Mon Sep 17 00:00:00 2001 From: Gerald Nicolas Date: Mon, 9 Feb 2015 15:29:01 +0100 Subject: [PATCH] Passage en utf8 --- tests/test_1.py | 20 ++++++++++---------- tests/test_11.py | 2 +- tests/test_12.py | 2 +- tests/test_13.py | 2 +- tests/test_14.py | 2 +- tests/test_15.py | 2 +- tests/test_2.py | 18 +++++++++--------- tests/test_3.py | 8 ++++---- 8 files changed, 28 insertions(+), 28 deletions(-) mode change 100755 => 100644 tests/test_1.py mode change 100755 => 100644 tests/test_11.py mode change 100755 => 100644 tests/test_12.py mode change 100755 => 100644 tests/test_13.py mode change 100755 => 100644 tests/test_14.py mode change 100755 => 100644 tests/test_15.py mode change 100755 => 100644 tests/test_2.py mode change 100755 => 100644 tests/test_3.py diff --git a/tests/test_1.py b/tests/test_1.py old mode 100755 new mode 100644 index 3849bd80..aabc11a1 --- a/tests/test_1.py +++ b/tests/test_1.py @@ -1,4 +1,4 @@ -# -*- coding: iso-8859-1 -*- +# -*- coding: utf-8 -*- # Copyright (C) 2011-2014 CEA/DEN, EDF R&D # # This library is free software; you can redistribute it and/or @@ -82,23 +82,23 @@ Python script for HOMARD Hypo_1_1.SetRefinThr(3, 10.1) Hypo_1_1.AddFieldInterp('RESU____DEPL____________________') Hypo_1_1.AddFieldInterp('RESU____ERRE_ELEM_SIGM__________') - print HypoName_1, " : zones utilisées :", Hypo_1_1.GetZones() - print HypoName_1, " : champ utilisé :", Hypo_1_1.GetFieldName() - print HypoName_1, " : composantes utilisées :", Hypo_1_1.GetComps() + print HypoName_1, " : zones utilisées :", Hypo_1_1.GetZones() + print HypoName_1, " : champ utilisé :", Hypo_1_1.GetFieldName() + print HypoName_1, " : composantes utilisées :", Hypo_1_1.GetComps() if ( len (Hypo_1_1.GetFieldName()) > 0 ) : - print ".. caractéristiques de l'adaptation :", Hypo_1_1.GetField() - print HypoName_1, " : champs interpolés :", Hypo_1_1.GetFieldInterps() + print ".. caractéristiques de l'adaptation :", Hypo_1_1.GetField() + print HypoName_1, " : champs interpolés :", Hypo_1_1.GetFieldInterps() # Creation of the hypothesis Zones_1_et_2 HypoName_2 = "Zones_1_et_2" print "-------- Creation of the hypothesis", HypoName_2 Zones_1_et_2 = homard.CreateHypothesis(HypoName_2) Zones_1_et_2.AddZone('Zone_1_1', 1) Zones_1_et_2.AddZone('Zone_1_2', 1) - print HypoName_2, " : zones utilisées :", Zones_1_et_2.GetZones() - print HypoName_2, " : champ utilisé :", Zones_1_et_2.GetFieldName() + print HypoName_2, " : zones utilisées :", Zones_1_et_2.GetZones() + print HypoName_2, " : champ utilisé :", Zones_1_et_2.GetFieldName() if ( len (Zones_1_et_2.GetFieldName()) > 0 ) : - print ".. caractéristiques de l'adaptation :", Zones_1_et_2.GetField() - print HypoName_2, " : champs interpolés :", Zones_1_et_2.GetFieldInterps() + print ".. caractéristiques de l'adaptation :", Zones_1_et_2.GetField() + print HypoName_2, " : champs interpolés :", Zones_1_et_2.GetFieldInterps() # # Creation of the cases # ===================== diff --git a/tests/test_11.py b/tests/test_11.py old mode 100755 new mode 100644 index ee55ac49..b4ecc0b9 --- a/tests/test_11.py +++ b/tests/test_11.py @@ -1,4 +1,4 @@ -# -*- coding: iso-8859-1 -*- +# -*- coding: utf-8 -*- # Copyright (C) 2011-2014 CEA/DEN, EDF R&D # # This library is free software; you can redistribute it and/or diff --git a/tests/test_12.py b/tests/test_12.py old mode 100755 new mode 100644 index d0b2f183..be7aab8a --- a/tests/test_12.py +++ b/tests/test_12.py @@ -1,4 +1,4 @@ -# -*- coding: iso-8859-1 -*- +# -*- coding: utf-8 -*- # Copyright (C) 2011-2014 CEA/DEN, EDF R&D # # This library is free software; you can redistribute it and/or diff --git a/tests/test_13.py b/tests/test_13.py old mode 100755 new mode 100644 index bba1f254..95a78401 --- a/tests/test_13.py +++ b/tests/test_13.py @@ -1,4 +1,4 @@ -# -*- coding: iso-8859-1 -*- +# -*- coding: utf-8 -*- # Copyright (C) 2011-2014 CEA/DEN, EDF R&D # # This library is free software; you can redistribute it and/or diff --git a/tests/test_14.py b/tests/test_14.py old mode 100755 new mode 100644 index fd84c8ab..e309e90c --- a/tests/test_14.py +++ b/tests/test_14.py @@ -1,4 +1,4 @@ -# -*- coding: iso-8859-1 -*- +# -*- coding: utf-8 -*- # Copyright (C) 2011-2014 CEA/DEN, EDF R&D # # This library is free software; you can redistribute it and/or diff --git a/tests/test_15.py b/tests/test_15.py old mode 100755 new mode 100644 index 25f389d6..1ed35e40 --- a/tests/test_15.py +++ b/tests/test_15.py @@ -1,4 +1,4 @@ -# -*- coding: iso-8859-1 -*- +# -*- coding: utf-8 -*- # Copyright (C) 2011-2014 CEA/DEN, EDF R&D # # This library is free software; you can redistribute it and/or diff --git a/tests/test_2.py b/tests/test_2.py old mode 100755 new mode 100644 index 10f7fde1..8130ede7 --- a/tests/test_2.py +++ b/tests/test_2.py @@ -1,4 +1,4 @@ -# -*- coding: iso-8859-1 -*- +# -*- coding: utf-8 -*- # Copyright (C) 2011-2014 CEA/DEN, EDF R&D # # This library is free software; you can redistribute it and/or @@ -76,11 +76,11 @@ Python script for HOMARD Hypo_test_2_1.SetUnifRefinUnRef(1) Hypo_test_2_1.AddGroup('EG') Hypo_test_2_1.AddGroup('BANDE') - print HypoName_1, " : zones utilisées :", Hypo_test_2_1.GetZones() - print HypoName_1, " : champ utilisé :", Hypo_test_2_1.GetFieldName() - print HypoName_1, " : composantes utilisées :", Hypo_test_2_1.GetComps() + print HypoName_1, " : zones utilisées :", Hypo_test_2_1.GetZones() + print HypoName_1, " : champ utilisé :", Hypo_test_2_1.GetFieldName() + print HypoName_1, " : composantes utilisées :", Hypo_test_2_1.GetComps() if ( len (Hypo_test_2_1.GetFieldName()) > 0 ) : - print ".. caractéristiques de l'adaptation :", Hypo_test_2_1.GetField() + print ".. caractéristiques de l'adaptation :", Hypo_test_2_1.GetField() # Creation of the hypothesis 2 HypoName_2 = "Hypo_" + Test_Name + "_2" @@ -88,11 +88,11 @@ Python script for HOMARD Hypo_test_2_2 = homard.CreateHypothesis(HypoName_2) Hypo_test_2_2.SetUnifRefinUnRef(1) Hypo_test_2_2.AddGroup('M_D') - print HypoName_2, " : zones utilisées :", Hypo_test_2_2.GetZones() - print HypoName_2, " : champ utilisé :", Hypo_test_2_2.GetFieldName() - print HypoName_2, " : composantes utilisées :", Hypo_test_2_2.GetComps() + print HypoName_2, " : zones utilisées :", Hypo_test_2_2.GetZones() + print HypoName_2, " : champ utilisé :", Hypo_test_2_2.GetFieldName() + print HypoName_2, " : composantes utilisées :", Hypo_test_2_2.GetComps() if ( len (Hypo_test_2_2.GetFieldName()) > 0 ) : - print ".. caractéristiques de l'adaptation :", Hypo_test_2_2.GetField() + print ".. caractéristiques de l'adaptation :", Hypo_test_2_2.GetField() # # Creation of the cases # ===================== diff --git a/tests/test_3.py b/tests/test_3.py old mode 100755 new mode 100644 index 09d1d87b..4e262604 --- a/tests/test_3.py +++ b/tests/test_3.py @@ -1,4 +1,4 @@ -# -*- coding: iso-8859-1 -*- +# -*- coding: utf-8 -*- # Copyright (C) 2011-2014 CEA/DEN, EDF R&D # # This library is free software; you can redistribute it and/or @@ -87,9 +87,9 @@ Python script for HOMARD print "-------- Creation of the hypothesis", HypoName Hypo_test_3 = homard.CreateHypothesis(HypoName) Hypo_test_3.SetUnifRefinUnRef(1) - print HypoName, " : zones utilisées :", Hypo_test_3.GetZones() - print HypoName, " : champ utilisé :", Hypo_test_3.GetFieldName() - print HypoName, " : composantes utilisées :", Hypo_test_3.GetComps() + print HypoName, " : zones utilisées :", Hypo_test_3.GetZones() + print HypoName, " : champ utilisé :", Hypo_test_3.GetFieldName() + print HypoName, " : composantes utilisées :", Hypo_test_3.GetComps() # for num in range (n_boucle+1) : # -- 2.39.2