summaryrefslogtreecommitdiffstats
path: root/Doc/c-api
diff options
context:
space:
mode:
authorGeorg Brandl <georg@python.org>2010-12-06 22:02:48 (GMT)
committerGeorg Brandl <georg@python.org>2010-12-06 22:02:48 (GMT)
commitfbb56ed8fb7d7ebf800224f68e621a1f8b491942 (patch)
tree0fb639d90d452f4078df54fe3347c791334ab620 /Doc/c-api
parentb87ba269e0ac92a61d0c7948e385837589fb3a90 (diff)
downloadcpython-fbb56ed8fb7d7ebf800224f68e621a1f8b491942.zip
cpython-fbb56ed8fb7d7ebf800224f68e621a1f8b491942.tar.gz
cpython-fbb56ed8fb7d7ebf800224f68e621a1f8b491942.tar.bz2
Remove visible XXX comments.
Diffstat (limited to 'Doc/c-api')
-rw-r--r--Doc/c-api/typeobj.rst8
1 files changed, 5 insertions, 3 deletions
diff --git a/Doc/c-api/typeobj.rst b/Doc/c-api/typeobj.rst
index fe751c2..25d0793 100644
--- a/Doc/c-api/typeobj.rst
+++ b/Doc/c-api/typeobj.rst
@@ -705,7 +705,9 @@ type objects) *must* have the :attr:`ob_size` field.
This field is not inherited by subtypes (computed attributes are inherited
through a different mechanism).
- Docs for PyGetSetDef (XXX belong elsewhere)::
+ .. XXX belongs elsewhere
+
+ Docs for PyGetSetDef::
typedef PyObject *(*getter)(PyObject *, void *);
typedef int (*setter)(PyObject *, PyObject *, void *);
@@ -752,7 +754,7 @@ type objects) *must* have the :attr:`ob_size` field.
PyObject * tp_descr_get(PyObject *self, PyObject *obj, PyObject *type);
- XXX explain.
+ .. XXX explain.
This field is inherited by subtypes.
@@ -767,7 +769,7 @@ type objects) *must* have the :attr:`ob_size` field.
This field is inherited by subtypes.
- XXX explain.
+ .. XXX explain.
.. c:member:: long PyTypeObject.tp_dictoffset