X-Git-Url: http://git.salome-platform.org/gitweb/?a=blobdiff_plain;f=Examples%2Fpydoc1%2Fcomponents.py;h=281e59dc18d92f90c02ff69c923035a20c5d72f7;hb=HEAD;hp=72e88d6b67a9e650cf694db9fb52b4dc0b0660b2;hpb=a6ca09677114f08853402b630e58d69fa67ad9e5;p=tools%2Fyacsgen.git diff --git a/Examples/pydoc1/components.py b/Examples/pydoc1/components.py index 72e88d6..281e59d 100644 --- a/Examples/pydoc1/components.py +++ b/Examples/pydoc1/components.py @@ -1,4 +1,4 @@ -# Copyright (C) 2009-2014 EDF R&D +# Copyright (C) 2009-2024 EDF # # This library is free software; you can redistribute it and/or # modify it under the terms of the GNU Lesser General Public @@ -20,7 +20,7 @@ import os #import context from .. -execfile("../context.py") +exec(compile(open("../context.py").read(), "../context.py", 'exec')) from module_generator import * @@ -49,6 +49,7 @@ g.generate() g.configure() g.make() g.install() -g.make_appli("appli", restrict=["KERNEL"], altmodules={"GUI":GUI_ROOT_DIR, "YACS":YACS_ROOT_DIR}) +g.make_appli("appli", restrict=["KERNEL"], altmodules={"GUI":GUI_ROOT_DIR, + "YACS":YACS_ROOT_DIR}, sys_modules=SYS_MODULES)