call site 7 for path.svnurl.open
path/testing/fscommon.py - line 131
129
130
131
132
133
   def test_load(self):
       p = self.root.join('samplepickle')
->     obj = p.load()
       assert type(obj) is dict
       assert obj.get('answer',None) == 42
path/common.py - line 356
354
355
356
357
358
359
360
361
   def load(self):
       """ return object unpickled from self.read() """
->     f = self.open('rb')
       try:
           from cPickle import load
           return self._callex(load, f)
       finally:
           f.close()