summaryrefslogtreecommitdiff
path: root/modules/language/python/module/python.scm
diff options
context:
space:
mode:
Diffstat (limited to 'modules/language/python/module/python.scm')
-rw-r--r--modules/language/python/module/python.scm8
1 files changed, 5 insertions, 3 deletions
diff --git a/modules/language/python/module/python.scm b/modules/language/python/module/python.scm
index fd411e9..c391907 100644
--- a/modules/language/python/module/python.scm
+++ b/modules/language/python/module/python.scm
@@ -21,16 +21,18 @@
#:use-module (language python hash )
#:use-module (language python property )
#:use-module (language python range )
+ #:use-module (language python tuple )
- #:replace (list abs min max)
+ #:replace (list abs min max hash)
#:re-export (Exception StopIteration send sendException next
GeneratorExit sendClose RuntimeError
- len dir next dict None property range)
+ len dir next dict None property range
+ tuple)
#:export (print repr complex float int round
set all any bin callable
chr classmethod staticmethod
divmod enumerate filter format
- getattr hasattr hash hex isinstance
+ getattr hasattr hex isinstance
iter map sum id input oct ord pow super))
(define-syntax-rule (aif it p x y) (let ((it p)) (if it x y)))