[pygccxml-commit] SF.net SVN: pygccxml: [854] pyplusplus_dev/unittests/temp
Brought to you by:
mbaas,
roman_yakovenko
From: <rom...@us...> - 2007-01-07 06:14:07
|
Revision: 854 http://svn.sourceforge.net/pygccxml/?rev=854&view=rev Author: roman_yakovenko Date: 2007-01-06 22:14:07 -0800 (Sat, 06 Jan 2007) Log Message: ----------- updating history files Modified Paths: -------------- pygccxml_dev/docs/history/history.rest pyplusplus_dev/docs/history/history.rest pyplusplus_dev/unittests/temp/named_tuple.py Modified: pygccxml_dev/docs/history/history.rest =================================================================== --- pygccxml_dev/docs/history/history.rest 2007-01-07 05:40:51 UTC (rev 853) +++ pygccxml_dev/docs/history/history.rest 2007-01-07 06:14:07 UTC (rev 854) @@ -18,8 +18,29 @@ * Darren Garnier * Gottfried Ganssauge * Gaetan Lehmann +* Martin Preisler + ------------- +Version 0.8.* +------------- + +1. ``is_base_and_derived`` function was changed. The second argument could be + a tuple, which contains classes. Function returns ``True`` if at least one + class derives from the base one. + +.. line separator + +2. Class ``calldef_t`` has new instance variable - ``does_throw``. It describes + whether the function throws any exception or not. + +.. line separator + +3. Bug fixes: small bug was fixed in functionality that corrects GCC-XML reported + function default arguments. Reference to "enum" declaration extracted properly. + Many thanks to Martin Preisler for reporting the bug. + +------------- Version 0.8.5 ------------- Modified: pyplusplus_dev/docs/history/history.rest =================================================================== --- pyplusplus_dev/docs/history/history.rest 2007-01-07 05:40:51 UTC (rev 853) +++ pyplusplus_dev/docs/history/history.rest 2007-01-07 06:14:07 UTC (rev 854) @@ -18,6 +18,7 @@ * Georgiy Dernovoy * Gottfried Ganssauge * Andy Miller +* Martin Preisler ------------ Project name @@ -32,7 +33,18 @@ 3. Users always changed the name of the projects. I saw at least 6 different names. + ------------- +Version 0.8.* +------------- + +1. Bug fixes: + + * Declaration of virtual functions that have an exception specification with + an empty throw was fixed. Now the exception specification is generated properly. + Many thanks to Martin Preisler for reporting the bug. + +------------- Version 0.8.5 ------------- Modified: pyplusplus_dev/unittests/temp/named_tuple.py =================================================================== --- pyplusplus_dev/unittests/temp/named_tuple.py 2007-01-07 05:40:51 UTC (rev 853) +++ pyplusplus_dev/unittests/temp/named_tuple.py 2007-01-07 06:14:07 UTC (rev 854) @@ -1,5 +1,5 @@ -# This file has been generated by Py++. - +# This file has been generated by Py++. + # Copyright 2004 Roman Yakovenko. # Distributed under the Boost Software License, Version 1.0. (See # accompanying file LICENSE_1_0.txt or copy at @@ -43,4 +43,4 @@ assert a == 0 and b == 1 assert nt[ "a" ] == 0 and nt[ "b" ] == 1 - + This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |