mirror of
https://github.com/python/cpython.git
synced 2025-11-13 07:26:31 +00:00
Public Python functions are nowadays marked PyAPI_FUNC, not DL_IMPORT.
This commit is contained in:
parent
da4513a88b
commit
4369b59b6d
1 changed files with 1 additions and 1 deletions
|
|
@ -77,7 +77,7 @@ def print_undoc_symbols(prefix, docdir, incdir):
|
||||||
|
|
||||||
incfiles = os.path.join(incdir, INCLUDEPATTERN)
|
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))
|
% (TAG_KINDS, incfiles))
|
||||||
dict = findnames(fp, prefix)
|
dict = findnames(fp, prefix)
|
||||||
names = dict.keys()
|
names = dict.keys()
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue