Kaydet (Commit) ba508d5d authored tarafından Victor Stinner's avatar Victor Stinner

Merge 3.4 (test.support)

......@@ -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