call site 0 for process.cmdexec
path/svn/testing/svntestbase.py - line 93
91
92
93
94
   def test_proplist(self):
       url = self.root.join("samplefile")
->     res = url.proplist()
       assert res['svn:eol-style'] == 'native'
path/svn/svncommon.py - line 152
150
151
152
153
   def proplist(self):
       """ list all property names. """
->     content = self._proplist()
       return content
path/svn/urlcommand.py - line 216
215
216
217
218
219
   def _proplist(self):
->     res = self._svnwithrev('proplist')
       lines = res.split('\n')
       lines = map(str.strip, lines[1:])
       return svncommon.PropListDict(self, lines)
path/svn/urlcommand.py - line 53
50
51
52
53
54
55
56
   def _svnwithrev(self, cmd, *args):
       """ execute an svn command, append our own url and revision """
       if self.rev is None:
->         return self._svnwrite(cmd, *args)
       else:
           args = ['-r', self.rev] + list(args)
           return self._svnwrite(cmd, *args)
path/svn/urlcommand.py - line 68
58
59
60
61
62
63
64
65
66
67
68
69
   def _svnwrite(self, cmd, *args):
       """ execute an svn command, append our own url """
       l = ['svn %s' % cmd]
       args = ['"%s"' % self._escape(item) for item in args]
       l.extend(args)
       l.append('"%s"' % self._encodedurl())
       # fixing the locale because we can't otherwise parse
       string = " ".join(l)
       if DEBUG:
           print "execing", string
->     out = self._svncmdexecauth(string)
       return out
path/svn/urlcommand.py - line 76
71
72
73
74
75
76
   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)
path/svn/urlcommand.py - line 80
78
79
80
81
82
83
84
85
86
   def _cmdexec(self, cmd):
       try:
->         out = process.cmdexec(cmd)
       except py.process.cmdexec.Error, e:
           if (e.err.find('File Exists') != -1 or
                           e.err.find('File already exists') != -1):
               raise py.error.EEXIST(self)
           raise
       return out