mirror of https://github.com/python/cpython.git
Public Python functions are nowadays marked PyAPI_FUNC, not DL_IMPORT.
This commit is contained in:
parent
da4513a88b
commit
4369b59b6d
|
@ -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()
|
||||
|
|
Loading…
Reference in New Issue