/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/_known_graph_pyx.pyx

  • Committer: Martin
  • Date: 2017-08-26 13:09:08 UTC
  • mto: (6754.4.4 check)
  • mto: This revision was merged to the branch mainline in revision 6755.
  • Revision ID: gzlist@googlemail.com-20170826130908-acpf9jit3h51kus1
Use future divison in lru_cache to pass tests on Python 3

Show diffs side-by-side

added added

removed removed

Lines of Context:
17
17
"""Implementation of Graph algorithms when we have already loaded everything.
18
18
"""
19
19
 
 
20
from __future__ import absolute_import
 
21
 
20
22
cdef extern from "python-compat.h":
21
23
    pass
22
24
 
54
56
from collections import deque
55
57
import gc
56
58
 
57
 
from bzrlib import errors, revision
 
59
from . import errors, revision
58
60
 
59
61
cdef object NULL_REVISION
60
62
NULL_REVISION = revision.NULL_REVISION