/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/log.py

  • Committer: Jelmer Vernooij
  • Date: 2020-08-10 15:00:17 UTC
  • mfrom: (7490.40.99 work)
  • mto: This revision was merged to the branch mainline in revision 7521.
  • Revision ID: jelmer@jelmer.uk-20200810150017-vs7xnrd1vat4iktg
Merge lp:brz/3.1.

Show diffs side-by-side

added added

removed removed

Lines of Context:
47
47
all the changes since the previous revision that touched hello.c.
48
48
"""
49
49
 
50
 
from __future__ import absolute_import
51
 
 
52
50
import codecs
 
51
from io import BytesIO
53
52
import itertools
54
53
import re
55
54
import sys
85
84
    is_inside,
86
85
    terminal_width,
87
86
    )
88
 
from .sixish import (
89
 
    BytesIO,
90
 
    range,
91
 
    zip,
 
87
from .tree import (
 
88
    find_previous_path,
 
89
    InterTree,
92
90
    )
93
 
from .tree import InterTree
94
91
 
95
92
 
96
93
def find_touching_revisions(repository, last_revision, last_tree, last_path):