[pygccxml-commit] source/pyplusplus/gui ui.py,1.22,1.23
Brought to you by:
mbaas,
roman_yakovenko
From: Roman <rom...@us...> - 2006-04-06 06:16:47
|
Update of /cvsroot/pygccxml/source/pyplusplus/gui In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv28954/pyplusplus/gui Modified Files: ui.py Log Message: There are a lot of changes, sorry CVS did not worked for week or something like this Changes 1. Lots of code clean up 2. Adding and updating documentation 3. Adding new method on decl_wrapper - readme. This method will return list of msgs to the developer. For example if function takes by reference fundamental type it will say that this function could not be called from Python 4. Logging functionlity has been added to file writers too 5. Few bug fixes 6. For operator [] call policies is always set. Index: ui.py =================================================================== RCS file: /cvsroot/pygccxml/source/pyplusplus/gui/ui.py,v retrieving revision 1.22 retrieving revision 1.23 diff -C2 -d -r1.22 -r1.23 *** ui.py 29 Mar 2006 06:05:19 -0000 1.22 --- ui.py 6 Apr 2006 06:16:08 -0000 1.23 *************** *** 10,23 **** import Tkinter import tkFileDialog - import tkMessageBox import tkSimpleDialog - if sys.platform == 'win32': - sys.path.append( r'D:\pygccxml_sources\source' ) - gccxml = 'c:/tools/gccxml/bin/gccxml.exe' - else: - sys.path.append( '/home/roman/pygccxml_sources/source' ) - gccxml = '/home/roman/gccxml/bin/gccxml' - from pygccxml import parser from pyplusplus import module_builder --- 10,15 ---- |