From: Bert Vermeulen Date: Fri, 13 Dec 2013 10:52:38 +0000 (+0100) Subject: Prune dead code. X-Git-Tag: libsigrokdecode-0.3.0~185 X-Git-Url: https://sigrok.org/gitweb/?p=libsigrokdecode.git;a=commitdiff_plain;h=c8233c78da6acb23b74afe271c30355442fdaa5c Prune dead code. --- diff --git a/type_decoder.c b/type_decoder.c index 6810d91..3e6f17b 100644 --- a/type_decoder.c +++ b/type_decoder.c @@ -364,23 +364,9 @@ static PyObject *Decoder_register(PyObject *self, PyObject *args, return py_new_output_id; } -/* TODO: this is just a stub that calls _register() until all PDs - * are changed to use the new register API. */ -static PyObject *Decoder_add(PyObject *self, PyObject *args) -{ - PyObject *py_keywords, *py_new_output_id; - - py_keywords = PyDict_New(); - py_new_output_id = Decoder_register(self, args, py_keywords); - Py_DecRef(py_keywords); - - return py_new_output_id; -} - static PyMethodDef Decoder_methods[] = { {"put", Decoder_put, METH_VARARGS, "Accepts a dictionary with the following keys: startsample, endsample, data"}, - {"add", Decoder_add, METH_VARARGS, "Create a new output stream"}, {"register", (PyCFunction)Decoder_register, METH_VARARGS|METH_KEYWORDS, "Register a new output stream"}, {NULL, NULL, 0, NULL}