~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/bundle/serializer/v4.py

  • Committer: Aaron Bentley
  • Date: 2007-06-26 14:24:22 UTC
  • mto: (2520.5.2 bzr.mpbundle)
  • mto: This revision was merged to the branch mainline in revision 2631.
  • Revision ID: abentley@panoramicfeedback.com-20070626142422-ghhb4i1e8d6naad9
Remove unused base64 stuff

Show diffs side-by-side

added added

removed removed

Lines of Context:
17
17
from cStringIO import StringIO
18
18
import bz2
19
19
 
20
 
# The number of bytes per base64-encoded line.  We could use less, but it would
21
 
# be ugly
22
 
BASE64_LINE_BYTES = 57
23
 
 
24
20
from bzrlib import (
25
21
    diff,
26
22
    errors,