From 94a3ced83a54e9634065889e8a147ef6b32d34c5 Mon Sep 17 00:00:00 2001 From: Nikolay Mladenov Date: Tue, 18 Sep 2007 17:51:47 +0000 Subject: [PATCH] fixed cpp signature related test failure [SVN r39372] --- test/pytype_function.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/test/pytype_function.py b/test/pytype_function.py index 2ca13c7f..7927629b 100755 --- a/test/pytype_function.py +++ b/test/pytype_function.py @@ -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):