Update of /cvsroot/pygccxml/source/pyplusplus/gui
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv1480/pyplusplus/gui
Modified Files:
ui_runner.py
Log Message:
I hope those are last big changes in the project to this release.
Those changes give us an ability to create "setups" in one click
cd release_manager
python release_builder.py
Enjoy
Index: ui_runner.py
===================================================================
RCS file: /cvsroot/pygccxml/source/pyplusplus/gui/ui_runner.py,v
retrieving revision 1.1
retrieving revision 1.2
diff -C2 -d -r1.1 -r1.2
*** ui_runner.py 6 Apr 2006 13:15:22 -0000 1.1
--- ui_runner.py 9 Apr 2006 05:17:15 -0000 1.2
***************
*** 1,2 ****
--- 1,8 ----
+ #! /usr/bin/python
+ # Copyright 2004 Roman Yakovenko.
+ # Distributed under the Boost Software License, Version 1.0. (See
+ # accompanying file LICENSE_1_0.txt or copy at
+ # http://www.boost.org/LICENSE_1_0.txt)
+
import os
import sys
***************
*** 5,7 ****
import ui
! ui.show_demo()
--- 11,14 ----
import ui
! if __name__ == '__main__':
! ui.show_demo()
\ No newline at end of file
|