forked from metawilm/cl-python
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathrsetup.lisp
More file actions
22 lines (16 loc) · 706 Bytes
/
Copy pathrsetup.lisp
File metadata and controls
22 lines (16 loc) · 706 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
;; -*- Mode: LISP; Syntax: COMMON-LISP; Package: CLPYTHON -*-
;;
;; This software is Copyright (c) Franz Inc. and Willem Broekema.
;; Franz Inc. and Willem Broekema grant you the rights to
;; distribute and use this software as governed by the terms
;; of the Lisp Lesser GNU Public License
;; (http://opensource.franz.com/preamble.html),
;; known as the LLGPL.
(in-package :clpython)
(defvar *habitat* nil)
(defparameter *exceptions-are-python-objects*
#+allegro t
#+lispworks t
#+cmu nil ;; CMUCL does not allow arbitrary meta/superclasses in conditions
#-(or allegro lispworks cmu) nil)
(register-feature :clpython-exceptions-are-python-objects *exceptions-are-python-objects*)