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 larry
Recipients brett.cannon, larry
Date 2014-01-22.01:36:24
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1390354584.65.0.028557349727.issue20332@psf.upfronthosting.co.za>
In-reply-to
Content
/*[clinic input]
brett_is_stinky_and_wrong

    l: long

[clinic start generated code]*/

PyDoc_STRVAR(brett_is_stinky_and_wrong__doc__,
"brett_is_stinky_and_wrong(l)");

#define BRETT_IS_STINKY_AND_WRONG_METHODDEF    \
    {"brett_is_stinky_and_wrong", (PyCFunction)brett_is_stinky_and_wrong, METH_VARARGS|METH_KEYWORDS, brett_is_stinky_and_wrong__doc__},

static PyObject *
brett_is_stinky_and_wrong_impl(PyModuleDef *module, long l);

static PyObject *
brett_is_stinky_and_wrong(PyModuleDef *module, PyObject *args, PyObject *kwargs)
{
    PyObject *return_value = NULL;
    static char *_keywords[] = {"l", NULL};
    long l;

    if (!PyArg_ParseTupleAndKeywords(args, kwargs,
        "l:brett_is_stinky_and_wrong", _keywords,
        &l))
        goto exit;
    return_value = brett_is_stinky_and_wrong_impl(module, l);

exit:
    return return_value;
}

static PyObject *
brett_is_stinky_and_wrong_impl(PyModuleDef *module, long l)
/*[clinic end generated code: checksum=d16330187341a0ecea0bf7ab70ba5551200ceb3c]*/
History
Date User Action Args
2014-01-22 01:36:24larrysetrecipients: + larry, brett.cannon
2014-01-22 01:36:24larrysetmessageid: <1390354584.65.0.028557349727.issue20332@psf.upfronthosting.co.za>
2014-01-22 01:36:24larrylinkissue20332 messages
2014-01-22 01:36:24larrycreate