From 94edc1339331e646688350c8485e92e1502b09e2 Mon Sep 17 00:00:00 2001 From: Dave Abrahams Date: Thu, 18 Jul 2002 12:58:37 +0000 Subject: [PATCH] Doc fixup [SVN r14516] --- .../boost/python/converter/rvalue_from_python_data.hpp | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/include/boost/python/converter/rvalue_from_python_data.hpp b/include/boost/python/converter/rvalue_from_python_data.hpp index 658cedb6..72ea7bd7 100644 --- a/include/boost/python/converter/rvalue_from_python_data.hpp +++ b/include/boost/python/converter/rvalue_from_python_data.hpp @@ -46,10 +46,11 @@ namespace boost { namespace python { namespace converter { // stored in the construct field. // // If no appropriate converter is found, conversion fails and the -// convertible field is null. This step is expected not to throw an -// exception, and when used in argument conversion for wrapped C++ -// functions, it causes overload resolution to reject the current -// function but not to fail completely. If +// convertible field is null. When used in argument conversion for +// wrapped C++ functions, it causes overload resolution to reject the +// current function but not to fail completely. If an exception is +// thrown, overload resolution stops and the exception propagates back +// through the caller. // // If an lvalue converter is matched, its convertible() function is // expected to return a pointer to the stored T object; its