Skip to content

How to load cl python in clasp

Karsten Poeck edited this page May 11, 2019 · 5 revisions
COMMON-LISP-USER> (clpython:run "2 + 3")
5
COMMON-LISP-USER> (clpython:run "for i in range(4): print i")
0
1
2
3
NIL
  • optionally (ASDF/OPERATE:TEST-SYSTEM "clpython") completes now having some tests disabled
End CLPython test
Errors detected in this test: 33 UNEXPECTED: 31
Successes this test:831

Return values of RUN-TESTS: (NIL 831 33 31)
Top level in: #<PROCESS TOP-LEVEL @0x11dbb4cd9>.
COMMON-LISP-USER> 

There are a lot of SyntaxErrors in ' (run-pretty-printer-test)' that I caught with (handler-case ..) since they caused the test to abort

Clone this wiki locally