mirror of
ssh://git.janware.com/srv/git/janware/proj/jw-python
synced 2026-01-15 09:53:32 +01:00
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:
parent
b9ff70c613
commit
faa85f7c69
1 changed files with 1 additions and 1 deletions
|
|
@ -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):
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue