Skip to content

Commit c67f94e

Browse files
[3.11] gh-101100: Fix datetime reference warnings (GH-114661) (GH-114718)
(cherry picked from commit e8b8f5e) Co-authored-by: Skip Montanaro <skip.montanaro@gmail.com>
1 parent 07d68ea commit c67f94e

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
@@ -78,20 +78,25 @@
7878
nitpick_ignore = [
7979
# Standard C functions
8080
('c:func', 'calloc'),
81+
('c:func', 'ctime'),
8182
('c:func', 'dlopen'),
8283
('c:func', 'exec'),
8384
('c:func', 'fcntl'),
8485
('c:func', 'fork'),
8586
('c:func', 'free'),
87+
('c:func', 'gettimeofday'),
8688
('c:func', 'gmtime'),
89+
('c:func', 'localeconv'),
8790
('c:func', 'localtime'),
8891
('c:func', 'main'),
8992
('c:func', 'malloc'),
93+
('c:func', 'mktime'),
9094
('c:func', 'printf'),
9195
('c:func', 'realloc'),
9296
('c:func', 'snprintf'),
9397
('c:func', 'sprintf'),
9498
('c:func', 'stat'),
99+
('c:func', 'strftime'),
95100
('c:func', 'system'),
96101
('c:func', 'vsnprintf'),
97102
# Standard C types

0 commit comments

Comments
 (0)