call site 0 for path.local.mkdtemp
path/svn/testing/test_wccommand.py - line 214
208
209
210
211
212
213
214
215
216
217
218
219
   def test_long_properties(self):
       value = """
           vadm:posix : root root 0100755
           Properties on 'chroot/dns/var/bind/db.net.xots':
                   """
       try:
->         self.root.propset('gaga', value)
           backvalue = self.root.propget('gaga')
           assert backvalue == value
           #assert len(backvalue.split('\n')) == 1
       finally:
           self.root.propdel('gaga')
path/svn/wccommand.py - line 393
391
392
393
394
395
396
397
398
399
   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()