From fff4cc8b0dde1a07edd120fe22c33a12f34343ef Mon Sep 17 00:00:00 2001 From: Dave Abrahams Date: Thu, 9 May 2002 17:48:42 +0000 Subject: [PATCH] tweaks [SVN r13787] --- doc/v2/call.html | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/doc/v2/call.html b/doc/v2/call.html index c76c01f7..6c1e2e39 100644 --- a/doc/v2/call.html +++ b/doc/v2/call.html @@ -42,7 +42,8 @@ R call(PyObject* callable, A1 const&, A2 const&, ... An const&)
-
Requires: R is a complete type with an accessible copy constructor
+
Requires: R is a pointer type, reference + type, or a complete type with an accessible copy constructor
Effects: Invokes callable(a1, a2, ...an) in Python, where a1...an are the arguments to @@ -50,7 +51,7 @@ R call(PyObject* callable, A1 const&, A2 const&, ... An const&
Returns: The result of the Python call, converted to the C++ type R.
-
Rationale: For a complete semantic description of and +
Rationale: For a complete semantic description and rationale, see this page.