call site 8 for path.SvnAuth.makecmdoptions
path/svn/testing/test_auth.py - line 212
210
211
212
213
   def test_rename(self):
       u = svnurl_no_svn('http://foo.bar/svn/foo', auth=self.auth)
->     u.rename('http://foo.bar/svn/bar', 'moved foo to bar')
       assert '--username="foo" --password="bar"' in u.commands[0]
path/svn/urlcommand.py - line 150
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)
path/svn/urlcommand.py - line 74
70
71
72
73
74
75
   def _svncmdexecauth(self, cmd):
       """ execute an svn command 'as is' """
       cmd = svncommon.fixlocale() + cmd
       if self.auth is not None:
->         cmd += ' ' + self.auth.makecmdoptions()
       return self._cmdexec(cmd)