summaryrefslogtreecommitdiff
path: root/modules/language/python/set.scm
diff options
context:
space:
mode:
authorStefan Israelsson Tampe <stefan.itampe@gmail.com>2017-10-03 21:44:56 +0200
committerStefan Israelsson Tampe <stefan.itampe@gmail.com>2017-10-03 21:44:56 +0200
commit98f11c126a243596efe83fffa6af09b262ecaeac (patch)
treeb371b8440c6bb523ffcbec2165ce8486b7181c75 /modules/language/python/set.scm
parent3533d6037dd7d83a1f9ee250138d0ebf1bccc062 (diff)
decorators works
Diffstat (limited to 'modules/language/python/set.scm')
-rw-r--r--modules/language/python/set.scm4
1 files changed, 3 insertions, 1 deletions
diff --git a/modules/language/python/set.scm b/modules/language/python/set.scm
index 3164c8f..cd12586 100644
--- a/modules/language/python/set.scm
+++ b/modules/language/python/set.scm
@@ -7,7 +7,7 @@
#:use-module (language python try)
#:use-module (language python list)
#:use-module (language python yield)
- #:export(set))
+ #:export(py-set))
(define-class <set> () dict)
@@ -211,3 +211,5 @@
(for ((k v : (slot-ref self 'dict))) ()
(yield k)
(values))))))
+
+(define py-set set)