[pygccxml-commit] source/pygccxml/declarations scopedef.py,1.9,1.10
Brought to you by:
mbaas,
roman_yakovenko
From: Roman <rom...@us...> - 2006-03-15 10:27:48
|
Update of /cvsroot/pygccxml/source/pygccxml/declarations In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv20719/pygccxml/declarations Modified Files: scopedef.py Log Message: fixing serious bug reported by Matthias Index: scopedef.py =================================================================== RCS file: /cvsroot/pygccxml/source/pygccxml/declarations/scopedef.py,v retrieving revision 1.9 retrieving revision 1.10 diff -C2 -d -r1.9 -r1.10 *** scopedef.py 8 Mar 2006 08:46:10 -0000 1.9 --- scopedef.py 15 Mar 2006 10:27:40 -0000 1.10 *************** *** 31,36 **** if not declaration.declaration_t.__eq__( self, other ): return False ! return self._sorted_list( self.declarations ) \ ! == other._sorted_list( other.declarations ) def _get_declarations_impl(self): --- 31,36 ---- if not declaration.declaration_t.__eq__( self, other ): return False ! return self._sorted_list( self.declarations[:] ) \ ! == other._sorted_list( other.declarations[:] ) def _get_declarations_impl(self): |