mirror of
https://github.com/pybind/pybind11.git
synced 2024-11-28 16:11:59 +00:00
keyword processing bugfix
This commit is contained in:
parent
73a50a0441
commit
5257330e6a
@ -208,7 +208,6 @@ public:
|
||||
std::array<const char *, N> kw{}, def{};
|
||||
process_extras(((capture *) m_entry->data)->extras, m_entry, kw.data(), def.data());
|
||||
|
||||
|
||||
detail::descr d = cast_in::name(kw.data(), def.data());
|
||||
d += " -> ";
|
||||
d += std::move(cast_out::name());
|
||||
@ -285,7 +284,7 @@ private:
|
||||
for (function_entry *it = overloads; it != nullptr; it = it->next) {
|
||||
PyObject *args_ = args;
|
||||
|
||||
if (it->keywords != 0 && it->keywords != nargs) {
|
||||
if (it->keywords != 0 && nargs < it->keywords) {
|
||||
args_ = PyTuple_New(it->keywords);
|
||||
for (int i=0; i<nargs; ++i) {
|
||||
PyObject *item = PyTuple_GET_ITEM(args, i);
|
||||
|
Loading…
Reference in New Issue
Block a user