summaryrefslogtreecommitdiffstats
path: root/Doc
diff options
context:
space:
mode:
authorThomas Heller <theller@ctypes.org>2004-06-09 18:38:20 (GMT)
committerThomas Heller <theller@ctypes.org>2004-06-09 18:38:20 (GMT)
commit4369b59b6df194d62908207ba7c85c1b4a815a16 (patch)
tree68a49a106cbf1d12c7a73798c0a2e165ff5ea7a4 /Doc
parentda4513a88bff644c65a81d690d3a788c1f677f42 (diff)
downloadcpython-4369b59b6df194d62908207ba7c85c1b4a815a16.zip
cpython-4369b59b6df194d62908207ba7c85c1b4a815a16.tar.gz
cpython-4369b59b6df194d62908207ba7c85c1b4a815a16.tar.bz2
Public Python functions are nowadays marked PyAPI_FUNC, not DL_IMPORT.
Diffstat (limited to 'Doc')
-rw-r--r--Doc/tools/undoc_symbols.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/tools/undoc_symbols.py b/Doc/tools/undoc_symbols.py
index 3528106..d603a36 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()