Skip to content

Commit 783339a

Browse files
miss-islingtonsmontanaroserhiy-storchaka
authored
[3.12] gh-101100: Fix datetime reference warnings (GH-114661) (GH-114716)
(cherry picked from commit e8b8f5e) Co-authored-by: Skip Montanaro <[email protected]> Co-authored-by: Serhiy Storchaka <[email protected]>
1 parent 0795d9a commit 783339a

File tree

3 files changed

+58
-54
lines changed

3 files changed

+58
-54
lines changed

Doc/conf.py

+5
Original file line numberDiff line numberDiff line change
@@ -83,20 +83,25 @@
8383
nitpick_ignore = [
8484
# Standard C functions
8585
('c:func', 'calloc'),
86+
('c:func', 'ctime'),
8687
('c:func', 'dlopen'),
8788
('c:func', 'exec'),
8889
('c:func', 'fcntl'),
8990
('c:func', 'fork'),
9091
('c:func', 'free'),
92+
('c:func', 'gettimeofday'),
9193
('c:func', 'gmtime'),
94+
('c:func', 'localeconv'),
9295
('c:func', 'localtime'),
9396
('c:func', 'main'),
9497
('c:func', 'malloc'),
98+
('c:func', 'mktime'),
9599
('c:func', 'printf'),
96100
('c:func', 'realloc'),
97101
('c:func', 'snprintf'),
98102
('c:func', 'sprintf'),
99103
('c:func', 'stat'),
104+
('c:func', 'strftime'),
100105
('c:func', 'system'),
101106
('c:func', 'time'),
102107
('c:func', 'vsnprintf'),

0 commit comments

Comments
 (0)