From 1704b08492df7842902f31945a2a9876ed3235ea Mon Sep 17 00:00:00 2001 From: Zen-CODE Date: Fri, 19 Feb 2016 23:06:38 +0200 Subject: [PATCH] doc: moduel doc for weakref.pyx --- kivy/weakproxy.pyx | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/kivy/weakproxy.pyx b/kivy/weakproxy.pyx index e53717f3b..445b245f2 100644 --- a/kivy/weakproxy.pyx +++ b/kivy/weakproxy.pyx @@ -1,6 +1,17 @@ +""" +Weak Proxy +========== + +In order to allow garbage collection, the weak proxy provides +`weak references `_ to objects. +It effectively enhances the +`weakref.proxy `_ +by adding comparison support. +""" import weakref import operator + cdef class WeakProxy(object): '''Replacement for weakref.proxy to support comparisons '''