summaryrefslogtreecommitdiff
path: root/modules/language/python/compile.scm
diff options
context:
space:
mode:
Diffstat (limited to 'modules/language/python/compile.scm')
-rw-r--r--modules/language/python/compile.scm4
1 files changed, 3 insertions, 1 deletions
diff --git a/modules/language/python/compile.scm b/modules/language/python/compile.scm
index 46a9199..9076e61 100644
--- a/modules/language/python/compile.scm
+++ b/modules/language/python/compile.scm
@@ -169,7 +169,7 @@
(case x
;; Lists
((append) (L 'pylist-append!))
- ((count) (L 'pylist-count!))
+ ((count) (L 'pylist-count))
((extend) (L 'pylist-extend!))
((index) (L 'pylist-index))
((pop) (L 'pylist-pop!))
@@ -184,6 +184,7 @@
(() '())
((x . l)
(let ((is-fkn? (match l
+ ((#f) #t)
(((#:arglist . _) . _)
#t)
(_
@@ -318,6 +319,7 @@
(list e))
((x . trailer)
(let ((is-fkn? (match trailer
+ ((#f) #t)
(((#:arglist . _) . _)
#t)
(_