Open
Description
(require-python '[builtins :as bt])
(bt/eval "1")
;Execution error at libpython-clj2.python.ffi/check-error-throw (ffi.clj:708) .
; SystemError: frame does not exist
while this works
(require-python '[builtins :as bt])
(bt/eval "1" {})
while in python both work:
>>> eval('1+1')
2
>>> eval('1+1',{})
2
Metadata
Metadata
Assignees
Labels
No labels