-
Notifications
You must be signed in to change notification settings - Fork 35
/
Copy pathimp.lisp
27 lines (22 loc) · 763 Bytes
/
imp.lisp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
;; -*- Mode: LISP; Syntax: COMMON-LISP; Package: CLPYTHON.MODULE.IMP -*-
;;
;; 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.module.imp)
(defun |get_magic| ()
;; Does not make sense for this implementation
"")
(defun |find_module| (name path)
(declare (ignore name path))
(error "Todo: imp.find_module()"))
(defun |load_module| (&rest args)
(declare (ignore args))
(error "Todo: imp.load_module()"))
;; imp.PY_SOURCE
;; imp.PY_COMPILED
;; imp.C_EXTENSION
;; imp.PKG_DIRECTORY