diff options
author | Panu Matilainen <pmatilai@redhat.com> | 2009-09-22 22:42:06 +0300 |
---|---|---|
committer | Panu Matilainen <pmatilai@redhat.com> | 2009-09-22 22:42:06 +0300 |
commit | 14d5aaedcb355a724ba8869a29c8e4a35efdcac1 (patch) | |
tree | aac4c262a28af075d367830c822e2cc997a535ef /python/rpmfi-py.c | |
parent | 864220c441704e3d61fa521c682a23874b41e4ba (diff) | |
download | librpm-tizen-14d5aaedcb355a724ba8869a29c8e4a35efdcac1.tar.gz librpm-tizen-14d5aaedcb355a724ba8869a29c8e4a35efdcac1.tar.bz2 librpm-tizen-14d5aaedcb355a724ba8869a29c8e4a35efdcac1.zip |
Lose the empty doxygen markers
- nothing wrong with comments but empty comment placeholders
are not exactly useful
Diffstat (limited to 'python/rpmfi-py.c')
-rw-r--r-- | python/rpmfi-py.c | 12 |
1 files changed, 0 insertions, 12 deletions
diff --git a/python/rpmfi-py.c b/python/rpmfi-py.c index fbe7955b1..394830a17 100644 --- a/python/rpmfi-py.c +++ b/python/rpmfi-py.c @@ -1,7 +1,3 @@ -/** \ingroup py_c - * \file python/rpmfi-py.c - */ - #include "system.h" #include <rpm/rpmtypes.h> @@ -319,16 +315,12 @@ static PyMappingMethods rpmfi_as_mapping = { (objobjargproc)0, /* mp_ass_subscript */ }; -/** \ingroup py_c - */ static int rpmfi_init(rpmfiObject * s, PyObject *args, PyObject *kwds) { s->active = 0; return 0; } -/** \ingroup py_c - */ static void rpmfi_free(rpmfiObject * s) { if (_rpmfi_debug) @@ -338,8 +330,6 @@ fprintf(stderr, "%p -- fi %p\n", s, s->fi); PyObject_Del((PyObject *)s); } -/** \ingroup py_c - */ static PyObject * rpmfi_new(PyTypeObject * subtype, PyObject *args, PyObject *kwds) { hdrObject * ho = NULL; @@ -362,8 +352,6 @@ static PyObject * rpmfi_new(PyTypeObject * subtype, PyObject *args, PyObject *kw return rpmfi_Wrap(fi); } -/** - */ static char rpmfi_doc[] = ""; |