diff options
author | db3l <db3l.net@gmail.com> | 2021-03-04 03:09:48 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-03-04 03:09:48 (GMT) |
commit | 131d5516409791b170b09a6ef8ed8463c9b09015 (patch) | |
tree | 236edfac941bd25da9ce5165444f023b9f6639ee /Python | |
parent | 8747c1f233fc1a3dd5ee3d8e163317f28b4d7568 (diff) | |
download | cpython-131d5516409791b170b09a6ef8ed8463c9b09015.zip cpython-131d5516409791b170b09a6ef8ed8463c9b09015.tar.gz cpython-131d5516409791b170b09a6ef8ed8463c9b09015.tar.bz2 |
bpo-43271: Re-enable ceval.c optimizations for Windows debug builds (GH-24739)
Partially reverts commit b74396c3167cc780f01309148db02709bc37b432
The optimizations are necessary to prevent the interpreter from
crashing in a number of tests involving recursion.
Diffstat (limited to 'Python')
-rw-r--r-- | Python/ceval.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/Python/ceval.c b/Python/ceval.c index 8ec00bc..abdea1d 100644 --- a/Python/ceval.c +++ b/Python/ceval.c @@ -7,6 +7,7 @@ */ /* enable more aggressive intra-module optimizations, where available */ +/* affects both release and debug builds - see bpo-43271 */ #define PY_LOCAL_AGGRESSIVE #include "Python.h" |