From 729eca1b9d6a18665da8f0f8d89c4f1ed972f371 Mon Sep 17 00:00:00 2001 From: Fred Drake Date: Mon, 10 Apr 2000 18:23:47 +0000 Subject: For functions which return a PyObject* but use "null" for the reference count field, state that the return value is always NULL. (Useful for some PyErr_*() flavors.) --- Doc/tools/anno-api.py | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/Doc/tools/anno-api.py b/Doc/tools/anno-api.py index 33f85fb..eddb3eb 100755 --- a/Doc/tools/anno-api.py +++ b/Doc/tools/anno-api.py @@ -49,7 +49,11 @@ def main(): sys.stderr.write("No refcount data for %s\n" % s) else: if info.result_type == "PyObject*": - rc = info.result_refs and "New" or "Borrowed" + if info.result_refs is None: + rc = "Always \NULL{}" + else: + rc = info.result_refs and "New" or "Borrowed" + rc = rc + " reference" line = r"\begin{cfuncdesc}[%s]{PyObject*}{" % rc \ + line[prefix_len:] output.write(line) -- cgit v0.12