call site 1 for path.local.__repr__
path/testing/test_api.py - line 35
29
30
31
32
33
34
35
   def test_local(self):
       p = path.local()
       assert hasattr(p, 'atime')
       assert hasattr(p, 'setmtime')
       assert p.check()
       assert p.check(local=1)
->     self.repr_eval_test(p)
path/testing/test_api.py - line 11
10
11
12
13
14
   def repr_eval_test(self, p):
->     r = repr(p)
       from py.path import local,svnurl, svnwc
       y = eval(r)
       assert y == p