summaryrefslogtreecommitdiff
path: root/boost-1.78-python-Update-call_method-hpp.patch
diff options
context:
space:
mode:
authorCoprDistGit <infra@openeuler.org>2023-04-24 08:46:38 +0000
committerCoprDistGit <infra@openeuler.org>2023-04-24 08:46:38 +0000
commitb4f1d771777090b4e09abd34c701c0cbb47cb0c9 (patch)
tree7d2e99b4b8a7f5ee49fcc0318a572d93d30d74ac /boost-1.78-python-Update-call_method-hpp.patch
parent13a5c32b80e77cfc952fa466af74509e593873d7 (diff)
automatic import of boost
Diffstat (limited to 'boost-1.78-python-Update-call_method-hpp.patch')
-rw-r--r--boost-1.78-python-Update-call_method-hpp.patch24
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") ")")