call site 10 for path.SvnAuth.makecmdoptions
path/svn/testing/test_auth.py - line 190
186
187
188
189
190
191
192
   def test_open(self):
       u = svnurl_no_svn('http://foo.bar/svn', auth=self.auth)
       foo = u.join('foo')
       foo.check = lambda *args, **kwargs: True
->     ret = foo.open()
       assert ret == 'test'
       assert '--username="foo" --password="bar"' in foo.commands[0]
path/svn/urlcommand.py - line 110
104
105
106
107
108
109
110
111
112
113
   def open(self, mode='r'):
       """ return an opened file with the given mode. """
       assert 'w' not in mode and 'a' not in mode, "XXX not implemented for svn cmdline"
       assert self.check(file=1) # svn cat returns an empty file otherwise
       if self.rev is None:
           return self._svnpopenauth('svn cat "%s"' % (
->                                   self._escape(self.strpath), ))
       else:
           return self._svnpopenauth('svn cat -r %s "%s"' % (
                                     self.rev, self._escape(self.strpath)))
path/svn/urlcommand.py - line 91
87
88
89
90
91
92
   def _svnpopenauth(self, cmd):
       """ execute an svn command, return a pipe for reading stdin """
       cmd = svncommon.fixlocale() + cmd
       if self.auth is not None:
->         cmd += ' ' + self.auth.makecmdoptions()
       return self._popen(cmd)