~bialix/bzr/2.0-bug-523069

« back to all changes in this revision

Viewing changes to bzrlib/revfile.py

  • Committer: Robert Collins
  • Date: 2005-09-27 07:24:40 UTC
  • mfrom: (1185.1.41)
  • Revision ID: robertc@robertcollins.net-20050927072440-1bf4d99c3e1db5b3
pair programming worx... merge integration and weave

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 sys, zlib, struct, mdiff, stat, os, sha
 
96
import os
 
97
import sha
 
98
import stat
 
99
import struct
 
100
import sys
 
101
import zlib
97
102
from binascii import hexlify, unhexlify
98
103
 
 
104
import bzrlib.mdiff as mdiff
 
105
 
 
106
 
99
107
_RECORDSIZE = 48
100
108
 
101
109
_HEADER = "bzr revfile v1\n"