mirror of
https://github.com/python/cpython.git
synced 2025-08-31 05:58:33 +00:00
gh-106948: Docs: Disable links for C standard library functions, OS utility functions and system calls (#107062)
Co-authored-by: Serhiy Storchaka <storchaka@gmail.com>
This commit is contained in:
parent
7d41ead919
commit
b447e19e72
12 changed files with 59 additions and 42 deletions
18
Doc/conf.py
18
Doc/conf.py
|
@ -77,6 +77,24 @@ if venvdir is not None:
|
|||
exclude_patterns.append(venvdir + '/*')
|
||||
|
||||
nitpick_ignore = [
|
||||
# Standard C functions
|
||||
('c:func', 'calloc'),
|
||||
('c:func', 'dlopen'),
|
||||
('c:func', 'exec'),
|
||||
('c:func', 'fcntl'),
|
||||
('c:func', 'fork'),
|
||||
('c:func', 'free'),
|
||||
('c:func', 'gmtime'),
|
||||
('c:func', 'localtime'),
|
||||
('c:func', 'main'),
|
||||
('c:func', 'malloc'),
|
||||
('c:func', 'printf'),
|
||||
('c:func', 'realloc'),
|
||||
('c:func', 'snprintf'),
|
||||
('c:func', 'sprintf'),
|
||||
('c:func', 'stat'),
|
||||
('c:func', 'system'),
|
||||
('c:func', 'vsnprintf'),
|
||||
# Standard C types
|
||||
('c:type', 'FILE'),
|
||||
('c:type', '__int'),
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue