summaryrefslogtreecommitdiff
path: root/modules/language/python/string.scm
diff options
context:
space:
mode:
authorStefan Israelsson Tampe <stefan.itampe@gmail.com>2017-09-23 20:57:50 +0200
committerStefan Israelsson Tampe <stefan.itampe@gmail.com>2017-09-23 20:57:50 +0200
commit5bc1a0f8dd7d6c07380b5e6c56d20a327c0ba587 (patch)
tree96d710188219f79cb5de488137d0681e35ac8cd6 /modules/language/python/string.scm
parent6cb199ed027f0ce56dd2b3f1c94f7edc3a53c026 (diff)
dicts now works almost entirely
Diffstat (limited to 'modules/language/python/string.scm')
-rw-r--r--modules/language/python/string.scm3
1 files changed, 1 insertions, 2 deletions
diff --git a/modules/language/python/string.scm b/modules/language/python/string.scm
index 15dbe43..22c8b88 100644
--- a/modules/language/python/string.scm
+++ b/modules/language/python/string.scm
@@ -3,6 +3,7 @@
#:use-module (oop pf-objects)
#:use-module (ice-9 match)
#:use-module (language python list)
+ #:use-module (language python exceptions)
#:use-module (parser stis-parser)
#:export (py-format py-capitalize py-center py-endswith
py-expandtabs py-find py-rfind
@@ -13,8 +14,6 @@
py-rpartitio py-rindex py-split py-rsplit py-splitlines
py-startswith py-swapcase py-translate py-zfill))
-(define None 'None)
-
(define-syntax-rule (aif it p x y) (let ((it p)) (if it x y)))
(define-syntax-rule (define-py (f n o . u) code ...)