]> granicus.if.org Git - python/commit
bpo-35373: Fix PyInit_time() error handling (GH-10865)
authorVictor Stinner <vstinner@redhat.com>
Mon, 3 Dec 2018 12:45:38 +0000 (13:45 +0100)
committerGitHub <noreply@github.com>
Mon, 3 Dec 2018 12:45:38 +0000 (13:45 +0100)
commit3bb150d8148e3cc08418077a58f43e064b9fde61
treeee6f96c188a91f66809081e1171385e6df0b17ba
parentab6614969301b238fcc27f43923a0189a57a2a3c
bpo-35373: Fix PyInit_time() error handling (GH-10865)

* PyInit_time() now returns NULL if an exception is raised.
* Rename PyInit_timezone() to init_timezone(). "PyInit_" prefix is
  a special prefix for function initializing a module.
  init_timezone() doesn't initialize a module and the function is not
  exported.
Modules/timemodule.c