call site 18 for process.cmdexec
path/svn/testing/svntestbase.py - line 88
86
87
88
89
   def test_propget(self):
       url = self.root.join("samplefile")
->     value = url.propget('svn:eol-style')
       assert value == 'native'
path/svn/svncommon.py - line 147
145
146
147
148
   def propget(self, name):
       """ return the content of the given property. """
->     value = self._propget(name)
       return value
path/svn/urlcommand.py - line 211
210
211
212
   def _propget(self, name):
->     res = self._svnwithrev('propget', name)
       return res[:-1] # strip trailing newline
path/svn/urlcommand.py - line 52
49
50
51
52
53
54
55
   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 67
57
58
59
60
61
62
63
64
65
66
67
68
   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 75
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)
path/svn/urlcommand.py - line 79
77
78
79
80
81
82
83
84
85
   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