commit | 85b6b70589c187639aeebc560d67e9cc04abb4d8 | [log] [tgz] |
---|---|---|
author | Neil Schemenauer <nas-github@arctrix.com> | Mon Mar 29 19:51:15 2021 -0700 |
committer | GitHub <noreply@github.com> | Mon Mar 29 19:51:15 2021 -0700 |
tree | d8142d0876fd549e4b25743f869676d7dfe95be7 | |
parent | a54fc683f237d8f0b6e999a63aa9b8c0a45b7fef [diff] |
bpo-37448: Use radix tree for pymalloc address_in_range(). (GH-14474) The radix tree approach is a relatively simple and memory sanitary alternative to the old (slightly) unsanitary address_in_range(). To disable the radix tree map, set a preprocessor flag as follows: -DWITH_PYMALLOC_RADIX_TREE=0. Co-authored-by: Tim Peters <tim.peters@gmail.com>