summaryrefslogtreecommitdiff
path: root/modules/language/python/module/weakref.scm
blob: bd7b7ddfc70688e4bd1669e4800b9d66212a792e (about) (plain)
1
2
3
4
5
6
7
8
9
10
11
(define-module (language python module weakref)
  #:use-module (language python dict)
  #:use-module (language python set)
  #:export (WeakKeyDictionary WeakValueDictionary WeakSet))

(define WeakKeyDictionary   weak-key-dict)
(define WeakValueDictionary weak-value-dict)
(define WeakSet             weak-set)