call site 1 for path.svnurl.__str__
path/svn/testing/test_urlcommand.py - line 30
25
26
27
28
29
30
31
   def test_move_dir(self):  # overrides base class
       p = self.root.ensure('origdir', dir=1)
       newp = p.dirpath('newdir')
       p.move(newp)
       assert newp.check(dir=1)
->     newp.remove()
       assert not p.check()
path/svn/urlcommand.py - line 132
127
128
129
130
131
132
133
   def remove(self, rec=1, msg='removed by py lib invocation'):
       """ remove a file or directory (or a directory tree if rec=1) with
   checkin message msg."""
       if self.rev is not None:
           raise py.error.EINVAL(self, "revisions are immutable")
->     process.cmdexec('svn rm -m "%s" "%s"' %(msg, self._escape(self)))
       self._lsnorevcache.delentry(self.dirpath().strpath)
path/svn/svncommon.py - line 198
197
198
   def _escape(self, cmd):
->     return _escape_helper(cmd)
path/svn/svncommon.py - line 24
23
24
25
26
27
   def _escape_helper(text):
->     text = str(text)
       if py.std.sys.platform != 'win32':
           text = str(text).replace('$', '\\$')
       return text