From: Thomas Heller Date: Wed, 9 Jun 2004 18:38:20 +0000 (+0000) Subject: Public Python functions are nowadays marked PyAPI_FUNC, not DL_IMPORT. X-Git-Tag: v2.4a1~216 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=4369b59b6df194d62908207ba7c85c1b4a815a16;p=python 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 3528106040..d603a36641 100644 --- a/Doc/tools/undoc_symbols.py +++ b/Doc/tools/undoc_symbols.py @@ -77,7 +77,7 @@ def print_undoc_symbols(prefix, docdir, incdir): 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()