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 hynek
Recipients cvrebert, docs@python, hynek, petri.lehtinen
Date 2012-08-28.10:19:58
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1346149199.24.0.995634431204.issue14880@psf.upfronthosting.co.za>
In-reply-to
Content
It seems correct like that:

static PyObject *
csv_register_dialect(PyObject *module, PyObject *args, PyObject *kwargs)
{
    PyObject *name_obj, *dialect_obj = NULL;
    PyObject *dialect;

    if (!PyArg_UnpackTuple(args, "", 1, 2, &name_obj, &dialect_obj))
        return NULL;

Therefore going to commit.
History
Date User Action Args
2012-08-28 10:19:59hyneksetrecipients: + hynek, cvrebert, docs@python, petri.lehtinen
2012-08-28 10:19:59hyneksetmessageid: <1346149199.24.0.995634431204.issue14880@psf.upfronthosting.co.za>
2012-08-28 10:19:58hyneklinkissue14880 messages
2012-08-28 10:19:58hynekcreate