diff options
Diffstat (limited to 'boost-1.78-python-Update-call_method-hpp.patch')
-rw-r--r-- | boost-1.78-python-Update-call_method-hpp.patch | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/boost-1.78-python-Update-call_method-hpp.patch b/boost-1.78-python-Update-call_method-hpp.patch new file mode 100644 index 0000000..39cb962 --- /dev/null +++ b/boost-1.78-python-Update-call_method-hpp.patch @@ -0,0 +1,24 @@ +From 1dc6d74f2d673b7b82dd02ff8cdaf04b60fb5ff8 Mon Sep 17 00:00:00 2001 +From: Denis Arnaud <denis.arnaud_github@m4x.org> +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<char*>(name) + , const_cast<char*>("(" BOOST_PP_REPEAT_1ST(N, BOOST_PYTHON_FIXED, "O") ")") |