Mercurial > public > mercurial-scm > hg
comparison mercurial/node.py @ 25962:738314da6c75
node: use absolute_import
author | Gregory Szorc <gregory.szorc@gmail.com> |
---|---|
date | Sat, 08 Aug 2015 19:43:24 -0700 |
parents | 1a5211f2f87f |
children | 18f50b8cbf1e |
comparison
equal
deleted
inserted
replaced
25961:c0c89b2d07be | 25962:738314da6c75 |
---|---|
2 # | 2 # |
3 # Copyright 2005, 2006 Matt Mackall <mpm@selenic.com> | 3 # Copyright 2005, 2006 Matt Mackall <mpm@selenic.com> |
4 # | 4 # |
5 # This software may be used and distributed according to the terms of the | 5 # This software may be used and distributed according to the terms of the |
6 # GNU General Public License version 2 or any later version. | 6 # GNU General Public License version 2 or any later version. |
7 | |
8 from __future__ import absolute_import | |
7 | 9 |
8 import binascii | 10 import binascii |
9 | 11 |
10 nullrev = -1 | 12 nullrev = -1 |
11 nullid = "\0" * 20 | 13 nullid = "\0" * 20 |