cpython: c663dbb84c8c (original) (raw)

Mercurial > cpython

changeset 95218:c663dbb84c8c 3.4

Issue #23445: Fix test.support.python_is_optimized() for CFLAGS=-Og -Og does not optimize the C code, it's just "fast debugging". [#23445]

Victor Stinner victor.stinner@gmail.com
date Fri, 27 Mar 2015 15:36:01 +0100
parents e08108d5488e
children 77181e30d2c3 51e906518606
files Lib/test/support/__init__.py
diffstat 1 files changed, 1 insertions(+), 1 deletions(-)[+] [-] Lib/test/support/__init__.py 2

line wrap: on

line diff

--- a/Lib/test/support/init.py +++ b/Lib/test/support/init.py @@ -1438,7 +1438,7 @@ def python_is_optimized(): for opt in cflags.split(): if opt.startswith('-O'): final_opt = opt

_header = 'nP'