]> granicus.if.org Git - python/commit
Only define get_zone() and get_gmtoff() if needed (#1193)
authorVictor Stinner <victor.stinner@gmail.com>
Thu, 20 Apr 2017 11:41:09 +0000 (13:41 +0200)
committerGitHub <noreply@github.com>
Thu, 20 Apr 2017 11:41:09 +0000 (13:41 +0200)
commit8f5cdfa9fc1bb6b4d9a33fc281987252f6398430
tree0c9528b6415599d97fa32956fa8997271bde54b8
parentd20324a7fab6734bae19b1f070b5c8aae5ff3612
Only define get_zone() and get_gmtoff() if needed (#1193)

Only define the get_zone() and get_gmtoff() private functions in the
time module if these functions are needed to initialize the module.

The change fixes the following warnings on AIX:

Modules/timemodule.c:1175:1: warning: 'get_gmtoff' defined but not used [-Wunused-function]
Modules/timemodule.c:1164:1: warning: 'get_zone' defined but not used [-Wunused-function]
Modules/timemodule.c