comparison mercurial/pvec.py @ 44602:a89aa2d7b34d

pvec: drop an unused `from __future__ import division` This module only uses the `//` operator (for integer division). Differential Revision: https://phab.mercurial-scm.org/D8326
author Martin von Zweigbergk <martinvonz@google.com>
date Wed, 25 Mar 2020 08:28:20 -0700
parents 29adf0a087a1
children d4ba4d51f85f
comparison
equal deleted inserted replaced
44601:d06e748cfd02 44602:a89aa2d7b34d
46 and approximately how many changesets are involved 46 and approximately how many changesets are involved
47 - can be used to find a heuristic divergence measure between changesets on 47 - can be used to find a heuristic divergence measure between changesets on
48 different branches 48 different branches
49 ''' 49 '''
50 50
51 from __future__ import absolute_import, division 51 from __future__ import absolute_import
52 52
53 from .node import nullrev 53 from .node import nullrev
54 from . import ( 54 from . import (
55 pycompat, 55 pycompat,
56 util, 56 util,