summaryrefslogtreecommitdiff
path: root/tools/debug-debug-scripts
diff options
context:
space:
mode:
authorHello TMW <hello@themanaworld.org>2025-03-12 12:16:19 +0000
committerHello TMW <hello@themanaworld.org>2025-03-12 12:16:19 +0000
commitb0428330565e92350b002d969c90601f90dc47e5 (patch)
tree1f22af7cf0039ac80e032edad8876ae0e348867c /tools/debug-debug-scripts
parent3a0bfe045e24a8d769c60b513ade85505926be70 (diff)
parent88dfbd91ed22ab4ad98b2b9f0243f9d9faa9b49d (diff)
downloadtmwa-master.tar.gz
tmwa-master.tar.bz2
tmwa-master.tar.xz
tmwa-master.zip
Merge branch tmwa:master into masterHEADmaster
Diffstat (limited to 'tools/debug-debug-scripts')
-rwxr-xr-xtools/debug-debug-scripts9
1 files changed, 7 insertions, 2 deletions
diff --git a/tools/debug-debug-scripts b/tools/debug-debug-scripts
index 2112a6e..5ba7ecb 100755
--- a/tools/debug-debug-scripts
+++ b/tools/debug-debug-scripts
@@ -1,6 +1,5 @@
-#!/usr/bin/env python
+#!/usr/bin/env python3
# encoding: utf-8
-from __future__ import print_function
copyright = '''
// Copyright © 2014 Ben Longbons <b.r.longbons@gmail.com>
@@ -35,6 +34,12 @@ error = False
def eprint(s):
print('Error:', s, file=sys.stderr)
+# Implement an equivalent to Python 2's execfile for Python 3
+def execfile(filename, globals=None, locals=None):
+ with open(filename, 'r') as f:
+ code = compile(f.read(), filename, 'exec')
+ exec(code, globals, locals)
+
def get_classes_from_file(a):
global error
d = {}