Skip to content

Commit e8b8f5e

Browse files
gh-101100: Fix datetime reference warnings (GH-114661)
Co-authored-by: Serhiy Storchaka <[email protected]>
1 parent b7a12ab commit e8b8f5e

File tree

3 files changed

+58
-54
lines changed

3 files changed

+58
-54
lines changed

Doc/conf.py

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -89,20 +89,25 @@
8989
nitpick_ignore = [
9090
# Standard C functions
9191
('c:func', 'calloc'),
92+
('c:func', 'ctime'),
9293
('c:func', 'dlopen'),
9394
('c:func', 'exec'),
9495
('c:func', 'fcntl'),
9596
('c:func', 'fork'),
9697
('c:func', 'free'),
98+
('c:func', 'gettimeofday'),
9799
('c:func', 'gmtime'),
100+
('c:func', 'localeconv'),
98101
('c:func', 'localtime'),
99102
('c:func', 'main'),
100103
('c:func', 'malloc'),
104+
('c:func', 'mktime'),
101105
('c:func', 'printf'),
102106
('c:func', 'realloc'),
103107
('c:func', 'snprintf'),
104108
('c:func', 'sprintf'),
105109
('c:func', 'stat'),
110+
('c:func', 'strftime'),
106111
('c:func', 'system'),
107112
('c:func', 'time'),
108113
('c:func', 'vsnprintf'),

0 commit comments

Comments
 (0)