/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-03-22 01:35:14 UTC
  • mfrom: (7490.7.6 work)
  • mto: This revision was merged to the branch mainline in revision 7499.
  • Revision ID: jelmer@jelmer.uk-20200322013514-7vw1ntwho04rcuj3
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
84
83
    get_terminal_encoding,
85
84
    terminal_width,
86
85
    )
87
 
from .sixish import (
88
 
    BytesIO,
89
 
    range,
90
 
    zip,
 
86
from .tree import (
 
87
    find_previous_path,
 
88
    InterTree,
91
89
    )
92
 
from .tree import InterTree
93
90
 
94
91
 
95
92
def find_touching_revisions(repository, last_revision, last_tree, last_path):