[pygccxml-commit] source/pyplusplus/module_creator creator.py,1.65,1.66
Brought to you by:
mbaas,
roman_yakovenko
From: Roman <rom...@us...> - 2006-04-20 05:40:10
|
Update of /cvsroot/pygccxml/source/pyplusplus/module_creator In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv14507/pyplusplus/module_creator Modified Files: creator.py Log Message: changes, that has been done in order to support CVS version of GCC-XML Index: creator.py =================================================================== RCS file: /cvsroot/pygccxml/source/pyplusplus/module_creator/creator.py,v retrieving revision 1.65 retrieving revision 1.66 diff -C2 -d -r1.65 -r1.66 *** creator.py 9 Apr 2006 05:17:15 -0000 1.65 --- creator.py 20 Apr 2006 05:40:04 -0000 1.66 *************** *** 210,214 **** # See: http://public.kitware.com/pipermail/gccxml/2004-October/000486.html decls = filter( lambda x: not (x.is_artificial and ! not (isinstance(x, declarations.class_t))) , decls ) # Filter out internal compiler methods --- 210,214 ---- # See: http://public.kitware.com/pipermail/gccxml/2004-October/000486.html decls = filter( lambda x: not (x.is_artificial and ! not (isinstance(x, ( declarations.class_t, declarations.enumeration_t)))) , decls ) # Filter out internal compiler methods |