-
Notifications
You must be signed in to change notification settings - Fork 13
Open
Description
this order works as expected
>>> apl.eval("3,'a'")
[3, 'a']but this does not
>>> apl.eval("'a',3")
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
File "/root/pynapl/pynapl/APLPyConnect.py", line 410, in eval
return answer.to_python(self)
File "/root/pynapl/pynapl/Array.py", line 210, in to_python
return ''.join(self.data)
TypeError: sequence item 1: expected str instance, int foundalthough that list that would be produced is valid python:
>>> ['a',3]
['a', 3]Reactions are currently unavailable
Metadata
Metadata
Assignees
Labels
No labels