diff options
author | jbj <devnull@localhost> | 2003-04-17 17:17:27 +0000 |
---|---|---|
committer | jbj <devnull@localhost> | 2003-04-17 17:17:27 +0000 |
commit | c6156e0abde993ecff24a265e40b4f270a9e0076 (patch) | |
tree | dcf8284f2a432964c8de7ad88b2e72590e03f43c /python/rpmrc-py.c | |
parent | 19dbe0729458b91be1f574c3504533031f1c936d (diff) | |
download | rpm-c6156e0abde993ecff24a265e40b4f270a9e0076.tar.gz rpm-c6156e0abde993ecff24a265e40b4f270a9e0076.tar.bz2 rpm-c6156e0abde993ecff24a265e40b4f270a9e0076.zip |
Doxygen doco markup.
CVS patchset: 6760
CVS date: 2003/04/17 17:17:27
Diffstat (limited to 'python/rpmrc-py.c')
-rw-r--r-- | python/rpmrc-py.c | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/python/rpmrc-py.c b/python/rpmrc-py.c index a2aa860bb..a896ca38d 100644 --- a/python/rpmrc-py.c +++ b/python/rpmrc-py.c @@ -1,4 +1,4 @@ -/** \ingroup python +/** \ingroup py_c * \file python/rpmrc-py.c */ @@ -249,7 +249,7 @@ fprintf(stderr, "*** rpmrc_next(%p[%s],%p)\n", s, lbl(s), args); return NULL; } -/** \ingroup python +/** \ingroup py_c */ static int rpmrc_init(PyObject * s, PyObject *args, PyObject *kwds) /*@*/ @@ -261,7 +261,7 @@ fprintf(stderr, "*** rpmrc_init(%p[%s],%p,%p)\n", s, lbl(s), args, kwds); return 0; } -/** \ingroup python +/** \ingroup py_c */ static void rpmrc_free(PyObject * s) /*@*/ @@ -271,7 +271,7 @@ fprintf(stderr, "*** rpmrc_free(%p[%s])\n", s, lbl(s)); _PyObject_GC_Del(s); } -/** \ingroup python +/** \ingroup py_c */ static PyObject * rpmrc_alloc(PyTypeObject * subtype, int nitems) /*@*/ @@ -283,7 +283,7 @@ fprintf(stderr, "*** rpmrc_alloc(%p[%s},%d) ret %p[%s]\n", subtype, lbl(subtype) return (PyObject *) ns; } -/** \ingroup python +/** \ingroup py_c */ static PyObject * rpmrc_new(PyTypeObject * subtype, PyObject *args, PyObject *kwds) /*@*/ @@ -322,7 +322,7 @@ static struct PyMethodDef rpmrc_methods[] = { }; /*@=fullinitblock@*/ -/** \ingroup python +/** \ingroup py_c */ /*@-fullinitblock@*/ #if Py_TPFLAGS_HAVE_ITER |