~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/revfile.py

  • Committer: Martin Pool
  • Date: 2005-04-15 01:31:21 UTC
  • Revision ID: mbp@sourcefrog.net-20050415013121-b18f1be12a735066
- Doc cleanups from Magnus Therning

Show diffs side-by-side

added added

removed removed

Lines of Context:
217
217
        assert self.idxfile.tell() == _RECORDSIZE * (idx + 1)
218
218
        data_offset = self.datafile.tell()
219
219
 
220
 
        assert isinstance(data, str) # not unicode or anything wierd
 
220
        assert isinstance(data, str) # not unicode or anything weird
221
221
 
222
222
        self.datafile.write(data)
223
223
        self.datafile.flush()