call site 6 for path.svnurl.dirpath
path/svn/testing/test_urlcommand.py - line 28
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/common.py - line 368
363
364
365
366
367
368
369
370
371
   def move(self, target):
       """ move this path to target. """
       if target.relto(self):
           raise py.error.EINVAL(target, "cannot move path into a subdirectory of itself")
       try:
->         self.rename(target)
       except py.error.EXDEV:  # invalid cross-device link
           self.copy(target)
           self.remove()
path/svn/urlcommand.py - line 151
145
146
147
148
149
150
151
152
   def rename(self, target, msg="renamed by py lib invocation"):
       """ rename this path to target with checkin message msg. """
       if getattr(self, 'rev', None) is not None:
           raise py.error.EINVAL(self, "revisions are immutable")
       self._svncmdexecauth('svn move -m "%s" --force "%s" "%s"' %(
                            msg, self._escape(self), self._escape(target)))
->     self._norev_delentry(self.dirpath())
       self._norev_delentry(self)