Skip to content

Commit

Permalink
no message
Browse files Browse the repository at this point in the history
  • Loading branch information
florian-rabe committed Oct 28, 2018
1 parent 5f5561d commit 3be1e51
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion openmath/convert_pickle.py
Original file line number Diff line number Diff line change
Expand Up @@ -127,7 +127,8 @@

class PickleConverter:
importPythonBasics = {"list": lambda *args:list(args), "tuple": lambda *args:tuple(args), "none": None, "dict": lambda *args: dict(args),
"true":True, "false": False}
"true":True, "false": False,
"getattr": lambda x,f: getattr(x,f)}

def __init__(self):
self._cdbase="http://python.org/"
Expand Down

0 comments on commit 3be1e51

Please sign in to comment.