[pygccxml-commit] source/pyplusplus/experimental pypp_api.py,1.6,1.7
Brought to you by:
mbaas,
roman_yakovenko
From: Matthias B. <mb...@us...> - 2006-03-10 12:35:17
|
Update of /cvsroot/pygccxml/source/pyplusplus/experimental In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv25413 Modified Files: pypp_api.py Log Message: Switched rename() to the new scheme Index: pypp_api.py =================================================================== RCS file: /cvsroot/pygccxml/source/pyplusplus/experimental/pypp_api.py,v retrieving revision 1.6 retrieving revision 1.7 diff -C2 -d -r1.6 -r1.7 *** pypp_api.py 10 Mar 2006 10:56:05 -0000 1.6 --- pypp_api.py 10 Mar 2006 12:35:14 -0000 1.7 *************** *** 63,68 **** By default all declarations are ignored. - @todo: Fix the parsing to work with recent changes - """ def __init__(self, headerFiles, workingDir=None, --- 63,66 ---- *************** *** 441,445 **** def rename(self, newName): """ Rename declaration to newName. """ ! self.mDecl.declDecorator.rename = newName return self --- 439,443 ---- def rename(self, newName): """ Rename declaration to newName. """ ! self.mDecl.rename(newName) return self |