Index: libs/python/doc/v2/object.html =================================================================== --- libs/python/doc/v2/object.html (revision 47275) +++ libs/python/doc/v2/object.html (working copy) @@ -655,6 +655,11 @@ template <class A0, class A1,...class An> object operator()(A0 const&, A1 const&,...An const&) const; + detail::args_proxy operator* () const; + object operator()(detail::args_proxy const &args) const; + object operator()(detail::args_proxy const &args, + detail::kwds_proxy const &kwds) const; + // truth value testing // typedef unspecified bool_type; @@ -704,7 +709,26 @@ call<object>(object(*static_cast<U*>(this)).ptr(), a1, a2,...aN) +
+object operator()(detail::args_proxy const &args) const; 
+
+
+
Effects: + call object with arguments given by the tuple args
+
+
+object operator()(detail::args_proxy const &args, 
+                  detail::kwds_proxy const &kwds) const; 
+
+
+
Effects: + call object with arguments given by the tuple args, and named + arguments given by the dictionary kwds
+
+ + +
 operator bool_type() const;