summaryrefslogtreecommitdiff
path: root/modules/language/python/compile.scm
diff options
context:
space:
mode:
authorStefan Israelsson Tampe <stefan.itampe@gmail.com>2018-03-20 15:06:43 +0100
committerStefan Israelsson Tampe <stefan.itampe@gmail.com>2018-03-20 15:06:43 +0100
commit1b580e10a568e0f34d45c197d1c200566dfda5ab (patch)
tree0c9418002bc75bdee523d59bc7d33d85f8f2c665 /modules/language/python/compile.scm
parent54f0ed4762f8aec49f894901a490a0821f176de8 (diff)
collections now compiles
Diffstat (limited to 'modules/language/python/compile.scm')
-rw-r--r--modules/language/python/compile.scm3
1 files changed, 1 insertions, 2 deletions
diff --git a/modules/language/python/compile.scm b/modules/language/python/compile.scm
index b287e4b..3e7a95a 100644
--- a/modules/language/python/compile.scm
+++ b/modules/language/python/compile.scm
@@ -14,6 +14,7 @@
#:use-module (language python bytes)
#:use-module (language python number)
#:use-module (language python def)
+ #:use-module (language python module)
#:use-module ((language python with) #:select ())
#:use-module (ice-9 pretty-print)
#:export (comp))
@@ -27,7 +28,6 @@
(define-inlinable (F x) `(@@ (language python for) ,x))
(define-inlinable (E x) `(@@ (language python exceptions) ,x))
(define-inlinable (L x) `(@@ (language python list) ,x))
-(define-inlinable (A x) `(@@ (language python array) ,x))
(define-inlinable (S x) `(@@ (language python string) ,x))
(define-inlinable (B x) `(@@ (language python bytes) ,x))
(define-inlinable (Se x) `(@@ (language python set) ,x))
@@ -835,7 +835,6 @@
((_ (#:name ((ids ...) . as)) ...)
- (pk x)
`(begin
,@(map
(lambda (ids as)