commit | 4369b59b6df194d62908207ba7c85c1b4a815a16 | [log] [tgz] |
---|---|---|
author | Thomas Heller <theller@ctypes.org> | Wed Jun 09 18:38:20 2004 +0000 |
committer | Thomas Heller <theller@ctypes.org> | Wed Jun 09 18:38:20 2004 +0000 |
tree | 68a49a106cbf1d12c7a73798c0a2e165ff5ea7a4 | |
parent | da4513a88bff644c65a81d690d3a788c1f677f42 [diff] |
Public Python functions are nowadays marked PyAPI_FUNC, not DL_IMPORT.
diff --git a/Doc/tools/undoc_symbols.py b/Doc/tools/undoc_symbols.py index 3528106..d603a36 100644 --- a/Doc/tools/undoc_symbols.py +++ b/Doc/tools/undoc_symbols.py
@@ -77,7 +77,7 @@ incfiles = os.path.join(incdir, INCLUDEPATTERN) - fp = os.popen("ctags -IDL_IMPORT --c-types=%s -f - %s" + fp = os.popen("ctags -IPyAPI_FUNC --c-types=%s -f - %s" % (TAG_KINDS, incfiles)) dict = findnames(fp, prefix) names = dict.keys()