~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/revfile.py

add a clean target

Show diffs side-by-side

added added

removed removed

Lines of Context:
93
93
# then ftell after writing to see where it went.  In any case we
94
94
# assume the whole branch is protected by a lock.
95
95
 
96
 
import os
97
 
import sha
98
 
import stat
99
 
import struct
100
 
import sys
101
 
import zlib
 
96
import sys, zlib, struct, mdiff, stat, os, sha
102
97
from binascii import hexlify, unhexlify
103
98
 
104
 
import bzrlib.mdiff as mdiff
105
 
 
106
 
 
107
99
_RECORDSIZE = 48
108
100
 
109
101
_HEADER = "bzr revfile v1\n"