Revision: 307
Author: mbaas
Date: 2006-07-17 07:03:30 -0700 (Mon, 17 Jul 2006)
ViewCVS: http://svn.sourceforge.net/pygccxml/?rev=307&view=rev
Log Message:
-----------
Issued a warning message (max_arity) via warning() instead of info()
Modified Paths:
--------------
pyplusplus_dev/pyplusplus/decl_wrappers/calldef_wrapper.py
Modified: pyplusplus_dev/pyplusplus/decl_wrappers/calldef_wrapper.py
===================================================================
--- pyplusplus_dev/pyplusplus/decl_wrappers/calldef_wrapper.py 2006-07-17 08:10:52 UTC (rev 306)
+++ pyplusplus_dev/pyplusplus/decl_wrappers/calldef_wrapper.py 2006-07-17 14:03:30 UTC (rev 307)
@@ -103,7 +103,7 @@
msg = "Function '%s' has more than %d arguments ( %d ). "
msg = msg + " You should adjust BOOST_PYTHON_MAX_ARITY."
msg = msg + " For more information see: http://mail.python.org/pipermail/c++-sig/2002-June/001554.html"
- self.logger.info( msg % ( self.decl_string, calldef_t.BOOST_PYTHON_MAX_ARITY, len( self.arguments ) ) )
+ self.logger.warning( msg % ( self.decl_string, calldef_t.BOOST_PYTHON_MAX_ARITY, len( self.arguments ) ) )
all_types = [ arg.type for arg in self.arguments ]
all_types.append( self.return_type )
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|