diff options
author | neonene <53406459+neonene@users.noreply.github.com> | 2022-03-23 00:35:25 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-03-23 00:35:25 (GMT) |
commit | cd05d0a423d97be69f9de4650f68f89e99ad68d1 (patch) | |
tree | f25b5af33dd3daeef5fb8a61b62d2d66f0ab3db6 /Python | |
parent | 7ba7eae50803b11766421cb8aae1780058a57e2b (diff) | |
download | cpython-cd05d0a423d97be69f9de4650f68f89e99ad68d1.zip cpython-cd05d0a423d97be69f9de4650f68f89e99ad68d1.tar.gz cpython-cd05d0a423d97be69f9de4650f68f89e99ad68d1.tar.bz2 |
bpo-43166: Disable ceval.c optimizations for Windows debug builds (GH-32023)
Also increases the stack allocation when run with `python_d.exe` to account for the extra stack checks that are added.
Diffstat (limited to 'Python')
-rw-r--r-- | Python/ceval.c | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/Python/ceval.c b/Python/ceval.c index 73179c8..42925b5 100644 --- a/Python/ceval.c +++ b/Python/ceval.c @@ -5,10 +5,6 @@ XXX document it! */ -/* enable more aggressive intra-module optimizations, where available */ -/* affects both release and debug builds - see bpo-43271 */ -#define PY_LOCAL_AGGRESSIVE - #include "Python.h" #include "pycore_abstract.h" // _PyIndex_Check() #include "pycore_call.h" // _PyObject_FastCallDictTstate() |