Flip some more switches from pathon 2 to 3 (untested!)

This commit flips some more switches from Python 2 to Python 3 in makefiles and
Python code. Build runs through, but it's still likely to break things.

Signed-off-by: Jan Lindemann <jan@janware.com>
This commit is contained in:
Jan Lindemann 2019-06-02 14:28:47 +02:00
commit faa85f7c69

View file

@ -46,7 +46,7 @@ class ShuntingYard(object): # export
#self.do_debug = True
self.__ops = {}
if operators is not None:
for k, v in operators.iteritems():
for k, v in operators.items():
self.add_operator(k, v.func, v.nargs, v.prec, v.assoc)
def debug(self, *args):