Ejemplo n.º 1
0
#  pygtkmvc is distributed in the hope that it will be useful,
#  but WITHOUT ANY WARRANTY; without even the implied warranty of
#  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
#  Lesser General Public License for more details.
#
#  You should have received a copy of the GNU Lesser General Public
#  License along with this library; if not, write to the Free Software
#  Foundation, Inc., 51 Franklin Street, Fifth Floor,
#  Boston, MA 02110, USA.
#
#  For more information on pygtkmvc see <http://pygtkmvc.sourceforge.net>
#  or email to the author Roberto Cavada <*****@*****.**>.
#  Please report bugs to <*****@*****.**>.


# This module is used only as a utility to import gtkmvc when not
# installed.

if __name__ != "__main__":
    try: import gtkmvc
    except:
        import os.path; import sys
        top_dir = os.path.dirname(os.path.abspath(".."))
        sys.path = [top_dir] + sys.path
        import gtkmvc
        pass

    gtkmvc.require("1.0.0")
pass

Ejemplo n.º 2
0
#  pygtkmvc is distributed in the hope that it will be useful,
#  but WITHOUT ANY WARRANTY; without even the implied warranty of
#  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
#  Lesser General Public License for more details.
#
#  You should have received a copy of the GNU Lesser General Public
#  License along with this library; if not, write to the Free Software
#  Foundation, Inc., 51 Franklin Street, Fifth Floor,
#  Boston, MA 02110, USA.
#
#  For more information on pygtkmvc see <http://pygtkmvc.sourceforge.net>
#  or email to the author Roberto Cavada <*****@*****.**>.
#  Please report bugs to <*****@*****.**>.


# This module is used only as a utility to import gtkmvc when not
# installed.

if __name__ != "__main__":
    try: import gtkmvc
    except:
        import os.path; import sys
        top_dir = os.path.dirname(os.path.abspath("../.."))
        sys.path = [top_dir] + sys.path
        import gtkmvc
        pass

    gtkmvc.require("1.99.0")
pass

Ejemplo n.º 3
0
if __name__ != "__main__":
    try:
        import gtkmvc
    except:
        import os.path
        import sys
        top_dir = os.path.dirname(os.path.abspath(".."))
        sys.path = [top_dir] + sys.path
        import gtkmvc
        pass

    gtkmvc.require("1.0.0")

pass