Message169265
| 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:59 | hynek | set | recipients:
+ hynek, cvrebert, docs@python, petri.lehtinen |
| 2012年08月28日 10:19:59 | hynek | set | messageid: <1346149199.24.0.995634431204.issue14880@psf.upfronthosting.co.za> |
| 2012年08月28日 10:19:58 | hynek | link | issue14880 messages |
| 2012年08月28日 10:19:58 | hynek | create |
|