-
Notifications
You must be signed in to change notification settings - Fork 35
/
Copy pathmarshal.lisp
28 lines (22 loc) · 832 Bytes
/
marshal.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
28
;; -*- Mode: LISP; Syntax: COMMON-LISP; Package: CLPYTHON.MODULE.MARSHAL -*-
;;
;; 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.marshal)
(defun |dump| (value file &optional version)
(declare (ignore value file version))
(error "TODO: marshal.dump"))
(defun |load| (file)
(declare (ignore file))
(error "TODO: marshal.load"))
(defun |dumps| (value &optional version)
(declare (ignore value version))
(error "TODO: marshal.dumps"))
(defun |loads| (string)
(declare (ignore string))
(error "TODO: marshal.loads"))
(defvar |version| -1)