We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 65111b3 commit 5e56dfcCopy full SHA for 5e56dfc
single-threaded/package.lisp
@@ -2,6 +2,8 @@
2
(:use :cl :cffi :alexandria)
3
(:reexport :py4cl2-cffi)
4
(:import-from :py4cl2-cffi
5
+ #:condition-backtrace
6
+
7
#:*internal-features*
8
9
#:*pygc-threshold*
single-threaded/pystart.lisp
@@ -26,7 +26,7 @@ Please restart your lisp and call PY4CL2-CFFI/SINGLE-THREADED:PYSTART
26
;; (setf (pymain-result) (apply fun args))
27
(handler-case (setf (pymain-result) (apply fun args))
28
(error (c)
29
- (trivial-backtrace:print-backtrace c))))
+ (condition-backtrace c))))
30
(bt:signal-semaphore *pymain-thread-result-semaphore*)))
31
:name "py4cl2-cffi-python-main-thread"))
32
0 commit comments