summaryrefslogtreecommitdiff
path: root/python/rpmds-py.c
diff options
context:
space:
mode:
authorPanu Matilainen <pmatilai@redhat.com>2009-09-22 22:42:06 +0300
committerPanu Matilainen <pmatilai@redhat.com>2009-09-22 22:42:06 +0300
commit14d5aaedcb355a724ba8869a29c8e4a35efdcac1 (patch)
treeaac4c262a28af075d367830c822e2cc997a535ef /python/rpmds-py.c
parent864220c441704e3d61fa521c682a23874b41e4ba (diff)
downloadrpm-14d5aaedcb355a724ba8869a29c8e4a35efdcac1.tar.gz
Lose the empty doxygen markers
- nothing wrong with comments but empty comment placeholders are not exactly useful
Diffstat (limited to 'python/rpmds-py.c')
-rw-r--r--python/rpmds-py.c16
1 files changed, 0 insertions, 16 deletions
diff --git a/python/rpmds-py.c b/python/rpmds-py.c
index 0c3a45928..c6d1ceeb7 100644
--- a/python/rpmds-py.c
+++ b/python/rpmds-py.c
@@ -1,7 +1,3 @@
-/** \ingroup py_c
- * \file python/rpmds-py.c
- */
-
#include "system.h"
#include <rpm/rpmtypes.h>
@@ -13,8 +9,6 @@
#include "debug.h"
-/**
- */
struct rpmdsObject_s {
PyObject_HEAD
PyObject *md_dict; /*!< to look like PyModuleObject */
@@ -137,8 +131,6 @@ rpmds_Refs(rpmdsObject * s)
return Py_BuildValue("i", rpmdsRefs(s->ds));
}
-/**
- */
static int compare_values(const char *str1, const char *str2)
{
if (!str1 && !str2)
@@ -445,16 +437,12 @@ static PyMappingMethods rpmds_as_mapping = {
(objobjargproc)0, /* mp_ass_subscript */
};
-/** \ingroup py_c
- */
static int rpmds_init(rpmdsObject * s, PyObject *args, PyObject *kwds)
{
s->active = 0;
return 0;
}
-/** \ingroup py_c
- */
static void rpmds_free(rpmdsObject * s)
{
if (_rpmds_debug)
@@ -464,8 +452,6 @@ fprintf(stderr, "%p -- ds %p\n", s, s->ds);
PyObject_Del((PyObject *)s);
}
-/** \ingroup py_c
- */
static PyObject * rpmds_new(PyTypeObject * subtype, PyObject *args, PyObject *kwds)
{
hdrObject * ho = NULL;
@@ -488,8 +474,6 @@ static PyObject * rpmds_new(PyTypeObject * subtype, PyObject *args, PyObject *kw
return rpmds_Wrap(ds);
}
-/**
- */
static char rpmds_doc[] =
"";