summaryrefslogtreecommitdiff
path: root/modules/language/python/format2.scm
diff options
context:
space:
mode:
Diffstat (limited to 'modules/language/python/format2.scm')
-rw-r--r--modules/language/python/format2.scm4
1 files changed, 3 insertions, 1 deletions
diff --git a/modules/language/python/format2.scm b/modules/language/python/format2.scm
index 65ee545..df30be5 100644
--- a/modules/language/python/format2.scm
+++ b/modules/language/python/format2.scm
@@ -3,13 +3,15 @@
#:use-module (parser stis-parser)
#:use-module (oop pf-objects)
#:use-module (oop goops)
- #:use-module ((language python module re) #:select (splitm splitmm))
#:use-module (language python exceptions)
#:use-module (language python number)
#:use-module (language python dict)
#:use-module (language python list)
#:export (format fnm))
+(define splitm #f)
+(define splitmm #f)
+
(define-syntax-rule (aif it p x y) (let ((it p)) (if it x y)))
(define scm-format (@ (guile) format))