summaryrefslogtreecommitdiffstats
path: root/Doc/conf.py
diff options
context:
space:
mode:
authorSoumendra Ganguly <67527439+8vasu@users.noreply.github.com>2024-01-29 16:10:28 (GMT)
committerGitHub <noreply@github.com>2024-01-29 16:10:28 (GMT)
commite351ca3c205860e94cad5da25c74bd76933f5f11 (patch)
tree81531a49ba50989ad202ce1afe73b8ef3cb01da7 /Doc/conf.py
parent0f54ee4c6cdba74492183eb2dd142393c7dba403 (diff)
downloadcpython-e351ca3c205860e94cad5da25c74bd76933f5f11.zip
cpython-e351ca3c205860e94cad5da25c74bd76933f5f11.tar.gz
cpython-e351ca3c205860e94cad5da25c74bd76933f5f11.tar.bz2
gh-85984: Add POSIX pseudo-terminal functions. (GH-102413)
Signed-off-by: Soumendra Ganguly <soumendraganguly@gmail.com> Co-authored-by: Gregory P. Smith <greg@krypto.org> Co-authored-by: Petr Viktorin <encukou@gmail.com>
Diffstat (limited to 'Doc/conf.py')
-rw-r--r--Doc/conf.py5
1 files changed, 5 insertions, 0 deletions
diff --git a/Doc/conf.py b/Doc/conf.py
index a96e778..e12128a 100644
--- a/Doc/conf.py
+++ b/Doc/conf.py
@@ -97,12 +97,16 @@ nitpick_ignore = [
('c:func', 'free'),
('c:func', 'gettimeofday'),
('c:func', 'gmtime'),
+ ('c:func', 'grantpt'),
('c:func', 'localeconv'),
('c:func', 'localtime'),
('c:func', 'main'),
('c:func', 'malloc'),
('c:func', 'mktime'),
+ ('c:func', 'posix_openpt'),
('c:func', 'printf'),
+ ('c:func', 'ptsname'),
+ ('c:func', 'ptsname_r'),
('c:func', 'realloc'),
('c:func', 'snprintf'),
('c:func', 'sprintf'),
@@ -110,6 +114,7 @@ nitpick_ignore = [
('c:func', 'strftime'),
('c:func', 'system'),
('c:func', 'time'),
+ ('c:func', 'unlockpt'),
('c:func', 'vsnprintf'),
# Standard C types
('c:type', 'FILE'),