svgui/pyjs/pyjs.py
changeset 2442 b13f021c68a5
parent 2434 07f48018b6f5
child 2445 4f7abbc8506f
--- a/svgui/pyjs/pyjs.py	Tue Oct 09 13:50:29 2018 +0300
+++ b/svgui/pyjs/pyjs.py	Tue Oct 09 14:03:44 2018 +0300
@@ -1532,7 +1532,7 @@
 
 
 def translate(file_name, module_name, debug=False):
-    f = file(file_name, "r")
+    f = open(file_name, "r")
     src = f.read()
     f.close()
     output = cStringIO()
@@ -1686,7 +1686,7 @@
 
         output = cStringIO()
 
-        f = file(file_name, "r")
+        f = open(file_name, "r")
         src = f.read()
         f.close()
 
@@ -1749,7 +1749,7 @@
                 if self.verbose:
                     print('Including JS', js)
                 print('\n//\n// BEGIN JS '+js+'\n//\n', file=lib_code)
-                print(file(path).read(), file=lib_code)
+                print(open(path).read(), file=lib_code)
                 print('\n//\n// END JS '+js+'\n//\n', file=lib_code)
             else:
                 print('Warning: Unable to find imported javascript:', js, file=sys.stderr)