summaryrefslogtreecommitdiff
path: root/modules/language/python/string.scm
diff options
context:
space:
mode:
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 ...)