From 1dc6d74f2d673b7b82dd02ff8cdaf04b60fb5ff8 Mon Sep 17 00:00:00 2001 From: Denis Arnaud Date: Sun, 15 Aug 2021 17:05:31 +0200 Subject: [PATCH] Update call_method.hpp Was missing from https://github.com/boostorg/python/pull/320 I've tested it on one of my projects with (that patch on) Boost.Python/Boost 1.76.0 and it works well. Without that patch, there is a deprecation error. --- boost/python/call_method.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/boost/python/call_method.hpp b/boost/python/call_method.hpp index 424077eab4..2f360791d7 100644 --- a/boost/python/call_method.hpp +++ b/boost/python/call_method.hpp @@ -59,7 +59,7 @@ call_method(PyObject* self, char const* name ) { PyObject* const result = - PyEval_CallMethod( + PyObject_CallMethod( self , const_cast(name) , const_cast("(" BOOST_PP_REPEAT_1ST(N, BOOST_PYTHON_FIXED, "O") ")")