diff tests/readlink.py @ 29485:6a98f9408a50

py3: make files use absolute_import and print_function This patch includes addition of absolute_import and print_function to the files where they are missing. The modern importing conventions are also followed.
author Pulkit Goyal <7895pulkit@gmail.com>
date Sun, 03 Jul 2016 22:28:24 +0530
parents 7bcfb9090c86
children c102b704edb5
line wrap: on
line diff
--- a/tests/readlink.py	Fri Jul 01 19:17:45 2016 -0700
+++ b/tests/readlink.py	Sun Jul 03 22:28:24 2016 +0530
@@ -1,8 +1,10 @@
 #!/usr/bin/env python
 
-from __future__ import print_function
+from __future__ import absolute_import, print_function
 
-import errno, os, sys
+import errno
+import os
+import sys
 
 for f in sys.argv[1:]:
     try: