diff options
| author | Steven Hiscocks <steven@hiscocks.me.uk> | 2013-02-16 19:16:09 +0000 |
|---|---|---|
| committer | Zbigniew Jędrzejewski-Szmek <zbyszek@in.waw.pl> | 2015-07-05 14:19:15 -0400 |
| commit | 9d405a0928e3a293da662111409cfb6d00d03b72 (patch) | |
| tree | 54b38c76c31b57f2333228095f336610c69c4936 /systemd/_reader.c | |
| parent | 445332cb69386e8696332403aca55c60c1df5de7 (diff) | |
| download | python-systemd-9d405a0928e3a293da662111409cfb6d00d03b72.tar.gz | |
systemd-python: remove unneeded ifdef for query_unique
Diffstat (limited to 'systemd/_reader.c')
| -rw-r--r-- | systemd/_reader.c | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/systemd/_reader.c b/systemd/_reader.c index 95e6094..c16cbdc 100644 --- a/systemd/_reader.c +++ b/systemd/_reader.c @@ -508,7 +508,6 @@ Journal_iternext(PyObject *self) } } -#ifdef SD_JOURNAL_FOREACH_UNIQUE PyDoc_STRVAR(Journal_query_unique__doc__, "query_unique(field) -> a set of values\n\n" "Returns a set of unique values in journal for given `field`.\n" @@ -554,7 +553,6 @@ Journal_query_unique(Journal *self, PyObject *args) Py_DECREF(key); return value_set; } -#endif //def SD_JOURNAL_FOREACH_UNIQUE static PyObject * Journal_get_data_threshold(Journal *self, void *closure) @@ -637,10 +635,8 @@ static PyMethodDef Journal_methods[] = { Journal_wait__doc__}, {"seek_cursor", (PyCFunction)Journal_seek_cursor, METH_VARARGS, Journal_seek_cursor__doc__}, -#ifdef SD_JOURNAL_FOREACH_UNIQUE {"query_unique", (PyCFunction)Journal_query_unique, METH_VARARGS, Journal_query_unique__doc__}, -#endif {NULL} /* Sentinel */ }; |
