call site 9 for magic.invoke
magic/testing/test_invoke.py - line 17
16
17
18
19
20
21
22
23
24
25
26
27
   def test_invoke_compile():
->     py.magic.invoke(compile=True)
       try:
           co = compile("""if 1: 
                       def f(): 
                           return 1
                       \n""", '', 'exec')
           d = {}
           exec co in d
           assert py.code.Source(d['f']) 
       finally:
           py.magic.revoke(compile=True)