Commit ba508d5d authored by Victor Stinner's avatar Victor Stinner

Merge 3.4 (test.support)

parents 6b3af083 d7aa5248
......@@ -1439,7 +1439,7 @@ def python_is_optimized():
for opt in cflags.split():
if opt.startswith('-O'):
final_opt = opt
return final_opt != '' and final_opt != '-O0'
return final_opt not in ('', '-O0', '-Og')
_header = 'nP'
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment