bendudson / py4cl

Call python from Common Lisp

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Possible improvement for loading...

rpgoldman opened this issue · comments

py4cl.asd has this:

(defparameter py4cl/config:*base-directory* 
    (make-pathname :name nil :type nil :defaults *load-truename*))

but you could use asdf:system-source-directory as an alternative. `load-truename can be exciting because of differences between CL implementations, but Faré seems to have sussed them all out...

Thanks very much! I've made this change in PR #17

Glad I could help!