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 '''