From c76d67ef3fe81eb4177cfcaa2d6486395e3aed75 Mon Sep 17 00:00:00 2001 From: Jakob van Santen Date: Mon, 11 Mar 2024 12:00:14 +0100 Subject: [PATCH] Ensure that virtual default implementation has the same kwargs as dispatcher --- include/boost/python/pure_virtual.hpp | 1 + 1 file changed, 1 insertion(+) diff --git a/include/boost/python/pure_virtual.hpp b/include/boost/python/pure_virtual.hpp index 58e9aedef1..f3b298de2c 100644 --- a/include/boost/python/pure_virtual.hpp +++ b/include/boost/python/pure_virtual.hpp @@ -96,6 +96,7 @@ namespace detail , make_function( detail::nullary_function_adaptor(pure_virtual_called) , default_call_policies() + , options.keywords() , detail::error_signature(detail::get_signature(m_pmf)) ) );