call site 0 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 143
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 101
100
101
102
   def _norev_delentry(self, path):
->     auth = self.auth and self.auth.makecmdoptions() or None
       self._lsnorevcache.delentry((str(path), auth))