diff options
author | Thomas Heller <theller@ctypes.org> | 2004-06-09 18:50:54 (GMT) |
---|---|---|
committer | Thomas Heller <theller@ctypes.org> | 2004-06-09 18:50:54 (GMT) |
commit | 7d019664d7fcd3692eafef668fbc2e17126dee14 (patch) | |
tree | 9fac3d05d3066936eab4ea503a6a530315d3c869 /Doc | |
parent | 4369b59b6df194d62908207ba7c85c1b4a815a16 (diff) | |
download | cpython-7d019664d7fcd3692eafef668fbc2e17126dee14.zip cpython-7d019664d7fcd3692eafef668fbc2e17126dee14.tar.gz cpython-7d019664d7fcd3692eafef668fbc2e17126dee14.tar.bz2 |
Defining Py_GCC_ATTRIBUTE finds even some more undocumented functions.
Diffstat (limited to 'Doc')
-rw-r--r-- | Doc/tools/undoc_symbols.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/tools/undoc_symbols.py b/Doc/tools/undoc_symbols.py index d603a36..3d776fa 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 -IPyAPI_FUNC --c-types=%s -f - %s" + fp = os.popen("ctags -IPyAPI_FUNC -IPy_GCC_ATTRIBUTE --c-types=%s -f - %s" % (TAG_KINDS, incfiles)) dict = findnames(fp, prefix) names = dict.keys() |