/brz/remove-bazaar

To get this branch, use:
bzr branch http://gegoxaren.bato24.eu/bzr/brz/remove-bazaar

« back to all changes in this revision

Viewing changes to bzrlib/transport/memory.py

  • Committer: Canonical.com Patch Queue Manager
  • Date: 2006-03-08 00:37:41 UTC
  • mfrom: (1594.2.4 integration)
  • Revision ID: pqm@pqm.ubuntu.com-20060308003741-08afccbf89005e87
Merge in :
 * Knit repositories use knits
 * Nested progress bar support.
 * Ghost aware graph api.

Show diffs side-by-side

added added

removed removed

Lines of Context:
91
91
        self._check_parent(_abspath)
92
92
        orig_content, orig_mode = self._files.get(_abspath, ("", None))
93
93
        self._files[_abspath] = (orig_content + f.read(), orig_mode)
 
94
        return len(orig_content)
94
95
 
95
96
    def _check_parent(self, _abspath):
96
97
        dir = os.path.dirname(_abspath)