mirror of
https://github.com/python/cpython.git
synced 2025-07-15 23:35:23 +00:00
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>
This commit is contained in:
parent
0f54ee4c6c
commit
e351ca3c20
9 changed files with 468 additions and 11 deletions
|
@ -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'),
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue