This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author pearu
Recipients pearu
Date 2008-12-22.12:49:21
SpamBayes Score 2.9709065e-06
Marked as misclassified No
Message-id <1229950163.26.0.0772490400351.issue4720@psf.upfronthosting.co.za>
In-reply-to
Content
Calling the following extension function 

static PyObject *
baz(PyObject *self, PyObject *args, PyObject *keywds)
{
  static char *kwlist[] = {NULL};
  if (!PyArg_ParseTupleAndKeywords(args,keywds,"|:bar.baz", kwlist))
    return NULL;
  return Py_BuildValue("");
}

raises

  RuntimeError: more argument specifiers than keyword list entries
(remaining format:'|:bar.baz')

in Python 2.6 but it used to work with earlier versions of Python.

This bug breaks all f2py generated extension modules when using Python 2.6.
History
Date User Action Args
2008-12-22 12:49:23pearusetrecipients: + pearu
2008-12-22 12:49:23pearusetmessageid: <1229950163.26.0.0772490400351.issue4720@psf.upfronthosting.co.za>
2008-12-22 12:49:22pearulinkissue4720 messages
2008-12-22 12:49:21pearucreate