~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/atomicfile.py

  • Committer: Martin Pool
  • Date: 2005-05-10 06:07:16 UTC
  • Revision ID: mbp@sourcefrog.net-20050510060716-0f939ce3ddea5d15
- New command update-stat-cache for testing
- work-cache always stored with unix newlines and in ascii

Show diffs side-by-side

added added

removed removed

Lines of Context:
39
39
        
40
40
        self.f = open(self.tmpfilename, mode)
41
41
        self.write = self.f.write
42
 
        self.closed = property(f.closed)
 
42
        self.closed = property(self.f.closed)
43
43
 
44
44
    def commit(self):
45
45
        import sys, os