We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8747c1f commit 131d551Copy full SHA for 131d551
Include/pyport.h
@@ -182,8 +182,9 @@ typedef int Py_ssize_clean_t;
182
*/
183
184
#if defined(_MSC_VER)
185
-# if defined(PY_LOCAL_AGGRESSIVE) && !defined(Py_DEBUG)
+# if defined(PY_LOCAL_AGGRESSIVE)
186
/* enable more aggressive optimization for MSVC */
187
+ /* active in both release and debug builds - see bpo-43271 */
188
# pragma optimize("gt", on)
189
#endif
190
/* ignore warnings if the compiler decides not to inline a function */
Python/ceval.c
@@ -7,6 +7,7 @@
7
8
9
/* enable more aggressive intra-module optimizations, where available */
10
+/* affects both release and debug builds - see bpo-43271 */
11
#define PY_LOCAL_AGGRESSIVE
12
13
#include "Python.h"
0 commit comments