*Not documented*
def propset(self, propname, value, *args):
origin: path.svnwc
where:
function source:
def propset(self, propname, value, *args):
d = py.path.local.mkdtemp()
try:
p = d.join('value')
p.write(value)
self._svn('propset', propname, '--file', str(p), *args)
finally:
d.remove()
called in /home/johnny/projects/merlinux/py/dist/py/path/svn/testing/test_wccommand.py
traceback path.svnwc.propset.0
called in /home/johnny/projects/merlinux/py/dist/py/path/svn/testing/test_wccommand.py
traceback path.svnwc.propset.1
called in /home/johnny/projects/merlinux/py/dist/py/path/svn/testing/test_wccommand.py