diff mercurial/py3kcompat.py @ 27486:5bfd01a3c2a9

py3compat: use absolute_import
author Gregory Szorc <gregory.szorc@gmail.com>
date Mon, 21 Dec 2015 21:31:57 -0800
parents a7a9d84f5e4a
children
line wrap: on
line diff
--- a/mercurial/py3kcompat.py	Mon Dec 21 21:33:52 2015 -0800
+++ b/mercurial/py3kcompat.py	Mon Dec 21 21:31:57 2015 -0800
@@ -5,9 +5,12 @@
 # This software may be used and distributed according to the terms of the
 # GNU General Public License version 2 or any later version.
 
-import builtins
+from __future__ import absolute_import
 
-from numbers import Number
+import builtins
+import numbers
+
+Number = numbers.Number
 
 def bytesformatter(format, args):
     '''Custom implementation of a formatter for bytestrings.