151c151
< execfile(options_file, scope)
---
> exec(compile(open(options_file).read(), options_file, 'exec'), scope)
193a194,200
>
> def _check_tracing():
> if defines.TRACING_ON:
> return
>
> fatal("Tracing is not enabled. Compile with TRACING_ON")
>
216,221d222
< def check_tracing():
< if defines.TRACING_ON:
< return
<
< fatal("Tracing is not enabled. Compile with TRACING_ON")
<
282c283
< check_tracing()
---
> _check_tracing()
369c370
< check_tracing()
---
> _check_tracing()
389c390
< check_tracing()
---
> _check_tracing()
396c397
< check_tracing()
---
> _check_tracing()
403c404
< check_tracing()
---
> _check_tracing()
435c436
< exec filecode in scope
---
> exec(filecode, scope)