summaryrefslogtreecommitdiffstats
path: root/Doc/tools/undoc_symbols.py
Commit message (Collapse)AuthorAgeFilesLines
* Replace the simpleminded string.find with a re.search looking only forThomas Heller2002-04-161-2/+2
| | | | | | | full words. Before that, something like 'PyObject_Call' was missed because 'PyObject_CallFunction' was found. Passes PyChecker now.
* A few small changes:Fred Drake2001-11-291-8/+17
| | | | | | | | | | | | | | - Change PREFIX to PREFIXES, which contains a sequence of prefix strings. This is useful since we want to look for both Py and PY. - Wrap a long line. - Collect struct tags as well as typedef names. Since we generally only use one of the other, that improves coverage. - Make the script executable on Unix. This could use a better approach to determine if a symbol is documented, and could easily avoid keeping the massive string in memory. That would take time to actually write more code, though, so we'll bail on that for now.
* No need to preprocess the header files - use ctags -I flag instead toThomas Heller2001-11-121-27/+15
| | | | remove DL_IMPORT.
* Remove my name, probably bad style.Thomas Heller2001-11-091-2/+0
|
* Script to print undocumented symbols found in Python header files.Thomas Heller2001-11-091-0/+99