2
0
mirror of https://github.com/boostorg/python.git synced 2026-01-23 05:42:30 +00:00
[SVN r13787]
This commit is contained in:
Dave Abrahams
2002-05-09 17:48:42 +00:00
parent aa0fc6dfe7
commit fff4cc8b0d

View File

@@ -42,7 +42,8 @@
R call(PyObject* callable, A1 const&amp;, A2 const&amp;, ... A<i>n</i> const&amp;)
</pre>
<dl class="function-semantics">
<dt><b>Requires:</b> <code>R</code> is a complete type with an accessible copy constructor</dt>
<dt><b>Requires:</b> <code>R</code> is a pointer type, reference
type, or a complete type with an accessible copy constructor</dt>
<dt><b>Effects:</b> Invokes <code>callable(a1,&nbsp;a2,&nbsp;...a<i>n</i>)</code> in
Python, where <code>a1</code>...<code>a<i>n</i></code> are the arguments to
@@ -50,7 +51,7 @@ R call(PyObject* callable, A1 const&amp;, A2 const&amp;, ... A<i>n</i> const&amp
<dt><b>Returns:</b> The result of the Python call, converted to the C++ type <code>R</code>.</dt>
</dt>
<dt><b>Rationale:</b> For a complete semantic description of and
<dt><b>Rationale:</b> For a complete semantic description and
rationale, see <a href="callbacks.html">this page</a>.
</dt>
</dl>