keyword processing bugfix

This commit is contained in:
Wenzel Jakob 2015-09-14 16:38:47 +02:00
parent 73a50a0441
commit 5257330e6a

View File

@ -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);