call site 0 for path.local.mkdtemp
path/svn/testing/test_wccommand.py - line 161
159
160
161
162
163
164
165
166
167
168
169
170
171
   def test_properties(self):
       try:
->         self.root.propset('gaga', 'this')
           assert self.root.propget('gaga') == 'this'
           # Comparing just the file names, because paths are unpredictable
           # on Windows. (long vs. 8.3 paths)
           assert self.root.basename in [item.basename for item in 
                                       self.root.status().prop_modified]
           assert 'gaga' in self.root.proplist()
           assert self.root.proplist()['gaga'] == 'this'
   
       finally:
           self.root.propdel('gaga')
path/svn/wccommand.py - line 347
345
346
347
348
349
350
351
352
353
   def propset(self, name, value, *args):
       """ set property name to value on this path. """
->     d = py.path.local.mkdtemp() 
       try: 
           p = d.join('value') 
           p.write(value) 
           self._svn('propset', name, '--file', str(p), *args)
       finally: 
           d.remove()