]> granicus.if.org Git - python/commit
bpo-29941: Assert fixes (#886) (#955)
authorT. Wouters <thomas@python.org>
Sun, 2 Apr 2017 03:20:05 +0000 (20:20 -0700)
committerGitHub <noreply@github.com>
Sun, 2 Apr 2017 03:20:05 +0000 (20:20 -0700)
commit90e3518225bafaff01469ed48c472ae7db5686f0
tree921a5377dadea29e346b53b4aca697039d9822de
parenta71a3ad54d14483cfaebd8e0fb96c97c798d9e32
bpo-29941: Assert fixes (#886) (#955)

Make a non-Py_DEBUG, asserts-enabled build of CPython possible. This means
making sure helper functions are defined when NDEBUG is not defined, not
just when Py_DEBUG is defined.

Also fix a division-by-zero in obmalloc.c that went unnoticed because in
Py_DEBUG mode, elsize is never zero.

(cherry picked from commit a00c3fd12d421e41b769debd7df717d17b0deed5 and 06bb4873d6a9ac303701d08a851d6cd9a51e02a3)
Include/unicodeobject.h
Objects/dictobject.c
Objects/obmalloc.c