call site 6 for magic.autopath
misc/testing/test_initpkg.py - line 83
81
82
83
   def check_import(modpath): 
       print "checking import", modpath
->     assert __import__(modpath) 
rest/testing/test_htmlrest.py - line 16
1
2
3
4
5
6
7
8
9
10
11
12
13
14
   from __future__ import generators
   
   import py
   from py.__.misc import rest
   
   def setup_module(mod):
       if not py.path.local.sysfind("gs") or \
              not py.path.local.sysfind("dot") or \
              not py.path.local.sysfind("latex"):
           py.test.skip("ghostscript, graphviz and latex needed")
       try:
           import docutils
       except ImportError:
           py.test.skip("docutils not present")