call site 2 for path.SvnAuth.makecmdoptions
path/svn/testing/test_auth.py - line 207
204
205
206
207
208
   def test_copy(self):
       u = svnurl_no_svn('http://foo.bar/svn', auth=self.auth)
       u2 = svnurl_no_svn('http://foo.bar/svn2')
->     u.copy(u2, 'copied dir')
       assert '--username="foo" --password="bar"' in u.commands[0]
path/svn/urlcommand.py - line 142
137
138
139
140
141
142
143
   def copy(self, target, msg='copied by py lib invocation'):
       """ copy path to target with checkin message msg."""
       if getattr(target, 'rev', None) is not None:
           raise py.error.EINVAL(target, "revisions are immutable")
       self._svncmdexecauth('svn copy -m "%s" "%s" "%s"' %(msg,
->                          self._escape(self), self._escape(target)))
       self._norev_delentry(target.dirpath())
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)