call site 0 for path.svnwc.write
path/testing/fscommon.py - line 179
178
179
180
181
182
   def test_remove_file(self):
->     d = self.root.ensure('todeleted')
       assert d.check()
       d.remove()
       assert not d.check()
path/svn/wccommand.py - line 170
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
   def ensure(self, *args, **kwargs):
       """ ensure that an args-joined path exists (by default as
               a file). if you specify a keyword argument 'directory=True'
               then the path is forced  to be a directory path.
           """
       try:
           p = self.join(*args)
           if p.check():
               if p.check(versioned=False):
                   p.add()
               return p 
           if kwargs.get('dir', 0):
               return p._ensuredirs()
           parent = p.dirpath()
           parent._ensuredirs()
->         p.write("")
           p.add()
           return p
       except:
           error_enhance(sys.exc_info())