[pygccxml-commit] source/pygccxml/unittests autoconfig.py,1.13,1.14
Brought to you by:
mbaas,
roman_yakovenko
From: Roman <rom...@us...> - 2006-04-06 06:16:40
|
Update of /cvsroot/pygccxml/source/pygccxml/unittests In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv28954/pygccxml/unittests Modified Files: autoconfig.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: autoconfig.py =================================================================== RCS file: /cvsroot/pygccxml/source/pygccxml/unittests/autoconfig.py,v retrieving revision 1.13 retrieving revision 1.14 diff -C2 -d -r1.13 -r1.14 *** autoconfig.py 22 Mar 2006 11:08:11 -0000 1.13 --- autoconfig.py 6 Apr 2006 06:15:58 -0000 1.14 *************** *** 7,10 **** --- 7,13 ---- import sys + #__pychecker__ = 'limit=1000' + #import pychecker.checker + data_directory = '' gccxml_path = '' *************** *** 74,77 **** --- 77,81 ---- , 'gccxml'#parameter description , 'pyplusplus' + , 'pygccxml' ] ) except ImportError: |