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.scm26
1 files changed, 23 insertions, 3 deletions
diff --git a/modules/language/python/compile.scm b/modules/language/python/compile.scm
index 50376f6..c823ee0 100644
--- a/modules/language/python/compile.scm
+++ b/modules/language/python/compile.scm
@@ -188,12 +188,32 @@
((sort) (L 'pylist-sort!))
;; String
- ((format) (S 'py-format))
+ ((format) (S 'py-format ))
((capitalize) (S 'py-capitalize))
- ((center) (S 'py-center))
+ ((center) (S 'py-center ))
((endswith) (S 'py-endswith))
((expandtabs) (S 'py-expandtabs))
- ((find) (S 'py-find))
+ ((find) (S 'py-find ))
+ ((rfind) (S 'py-rfind ))
+ ((isalnum) (S 'py-isalnum))
+ ((isalpha) (S 'py-isalpha))
+ ((isdigit) (S 'py-isdigit))
+ ((islower) (S 'py-islower))
+ ((isspace) (S 'py-isspace))
+ ((isupper) (S 'py-isupper))
+ ((istitle) (S 'py-istitle))
+ ((join) (S 'py-join ))
+ ((ljust) (S 'py-join ))
+ ((rljust) (S 'py-rljust ))
+ ((lower) (S 'py-lower ))
+ ((upper) (S 'py-upper ))
+ ((lstrip) (S 'py-lstrip ))
+ ((rstrip) (S 'py-rstrip ))
+ ((partition) (S 'py-partiti))
+ ((replace) (S 'py-replace))
+ ((strip) (S 'py-strip ))
+ ((title) (S 'py-title ))
+
(else #f)))
(define (get-kwarg vs arg)