mercurial/pure/bdiff.py
changeset 27335 c4e3ff497f89
parent 15530 eeac5e179243
child 28389 9ab45fbe045e
--- a/mercurial/pure/bdiff.py	Sat Dec 12 13:33:47 2015 -0500
+++ b/mercurial/pure/bdiff.py	Sat Dec 12 13:34:55 2015 -0500
@@ -5,7 +5,11 @@
 # This software may be used and distributed according to the terms of the
 # GNU General Public License version 2 or any later version.
 
-import struct, difflib, re
+from __future__ import absolute_import
+
+import difflib
+import re
+import struct
 
 def splitnewlines(text):
     '''like str.splitlines, but only split on newlines.'''