comparison mercurial/peer.py @ 25965:e6b56b2c1f26

peer: use absolute_import
author Gregory Szorc <gregory.szorc@gmail.com>
date Sat, 08 Aug 2015 19:45:45 -0700
parents cbbdd085c991
children d549cbb5503d
comparison
equal deleted inserted replaced
25964:d740df4e96cf 25965:e6b56b2c1f26
4 # Copyright 2006 Vadim Gelfer <vadim.gelfer@gmail.com> 4 # Copyright 2006 Vadim Gelfer <vadim.gelfer@gmail.com>
5 # 5 #
6 # This software may be used and distributed according to the terms of the 6 # This software may be used and distributed according to the terms of the
7 # GNU General Public License version 2 or any later version. 7 # GNU General Public License version 2 or any later version.
8 8
9 from i18n import _ 9 from __future__ import absolute_import
10 import error 10
11 import util 11 from .i18n import _
12 from . import (
13 error,
14 util,
15 )
12 16
13 # abstract batching support 17 # abstract batching support
14 18
15 class future(object): 19 class future(object):
16 '''placeholder for a value to be set later''' 20 '''placeholder for a value to be set later'''