/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 breezy/index.py

  • Committer: Martin
  • Date: 2017-06-11 01:19:16 UTC
  • mto: This revision was merged to the branch mainline in revision 6685.
  • Revision ID: gzlist@googlemail.com-20170611011916-8kwxtetgvhk9wagv
Changes across many modules working towards Python 3 support

Show diffs side-by-side

added added

removed removed

Lines of Context:
56
56
_SIGNATURE = b"Bazaar Graph Index 1\n"
57
57
 
58
58
 
59
 
_whitespace_re = re.compile('[\t\n\x0b\x0c\r\x00 ]')
60
 
_newline_null_re = re.compile('[\n\0]')
 
59
_whitespace_re = re.compile(b'[\t\n\x0b\x0c\r\x00 ]')
 
60
_newline_null_re = re.compile(b'[\n\0]')
61
61
 
62
62
 
63
63
def _has_key_from_parent_map(self, key):