Public Python functions are nowadays marked PyAPI_FUNC, not DL_IMPORT.

This commit is contained in:
Thomas Heller 2004-06-09 18:38:20 +00:00
parent da4513a88b
commit 4369b59b6d
1 changed files with 1 additions and 1 deletions

View File

@ -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()