/brz/remove-bazaar

To get this branch, use:
bzr branch http://gegoxaren.bato24.eu/bzr/brz/remove-bazaar

« back to all changes in this revision

Viewing changes to bzrlib/pack.py

  • Committer: Andrew Bennetts
  • Date: 2007-07-03 04:05:08 UTC
  • mto: This revision was merged to the branch mainline in revision 2572.
  • Revision ID: andrew.bennetts@canonical.com-20070703040508-11q9cdef4og1qry8
Add '(introduced in 0.18)' to pack format string.

Show diffs side-by-side

added added

removed removed

Lines of Context:
24
24
from bzrlib import errors
25
25
 
26
26
 
27
 
FORMAT_ONE = "Bazaar pack format 1"
 
27
FORMAT_ONE = "Bazaar pack format 1 (introduced in 0.18)"
28
28
 
29
29
 
30
30
_whitespace_re = re.compile('[\t\n\x0b\x0c\r ]')