From: <rom...@us...> - 2008-02-20 08:03:29
|
Revision: 1248 http://pygccxml.svn.sourceforge.net/pygccxml/?rev=1248&view=rev Author: roman_yakovenko Date: 2008-02-20 00:03:33 -0800 (Wed, 20 Feb 2008) Log Message: ----------- describe ellipsis feature Modified Paths: -------------- pygccxml_dev/docs/history/history.rest Modified: pygccxml_dev/docs/history/history.rest =================================================================== --- pygccxml_dev/docs/history/history.rest 2008-02-20 07:54:01 UTC (rev 1247) +++ pygccxml_dev/docs/history/history.rest 2008-02-20 08:03:33 UTC (rev 1248) @@ -23,6 +23,27 @@ * Jeremy Sanders * Ben Schleimer + +----------- +Version SVN +----------- + +1. Support for ellipsis was added. + Warning: this feature introduce backward compatibility problem! + + Description: + .. code-block:: C++ + + void do_smth( int, ... ) + + Before this change, pygccxml would report that the function ``do_smth`` has + only one argument. + + After this change, pygccxml will report that the function has two arguments. + The second argument type will be ``declarations.ellipsis_t``. All classes, + which describe callables, have new property ``has_ellipsis``. It the value of + the property is ``True``, than the function has ellipsis in its definition. + ------------- Version 0.9.5 ------------- This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |