Lichen

tests/consts.py

105:795869d7efcd
2016-10-17 Paul Boddie Updated docstring to describe invocation constraints on attributes.
     1 def f():     2     s = "test"     3     m = s.__len__     4     n = "test".__len__     5      6 def g():     7     l = [1]     8     m = l.__len__     9     n = [1].__len__    10     11 f()    12 g()