/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: Breezy landing bot
  • Author(s): Martin
  • Date: 2017-06-11 01:56:34 UTC
  • mfrom: (6684.1.5 py3_bootstrap2)
  • Revision ID: breezy.the.bot@gmail.com-20170611015634-9eeh86thh073hcko
More progress towards Python 3 support

Merged from https://code.launchpad.net/~gz/brz/py3_bootstrap2/+merge/325452

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):