$include_dir="/home/hyper-archives/boost-commit/include"; include("$include_dir/msg-header.inc") ?>
From: nickm_at_[hidden]
Date: 2007-09-18 13:51:48
Author: nikiml
Date: 2007-09-18 13:51:47 EDT (Tue, 18 Sep 2007)
New Revision: 39372
URL: http://svn.boost.org/trac/boost/changeset/39372
Log:
fixed cpp signature related test failure
Text files modified: 
   trunk/libs/python/test/pytype_function.py |     4 ++--                                    
   1 files changed, 2 insertions(+), 2 deletions(-)
Modified: trunk/libs/python/test/pytype_function.py
==============================================================================
--- trunk/libs/python/test/pytype_function.py	(original)
+++ trunk/libs/python/test/pytype_function.py	2007-09-18 13:51:47 EDT (Tue, 18 Sep 2007)
@@ -4,8 +4,8 @@
 """
 >>> from pytype_function_ext import *
 
->>> print (' ').join(func.__doc__.splitlines())
- func( (A)arg1) -> A :      C++ signature :         struct B func(struct B)
+>>> print func.__doc__.splitlines()[1]
+func( (A)arg1) -> A :
 
 """
 def run(args = None):