call site 1 for magic.revert
magic/testing/test_invoke.py - line 27
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)
magic/invoke.py - line 24
18
19
20
21
22
23
24
   def revoke(assertion=False, compile=False):
       """ revoke previously invoked magic (see invoke())."""
       if assertion:
           from py.__.magic import assertion
           assertion.revoke()
       if compile: 
->         py.magic.revert(cpy_builtin, 'compile')