2 """Nothing, but in a friendly way. Good for filling in for objects you want to
3 hide. If $form.f1 is a RecursiveNull object, then
4 $form.f1.anything["you"].might("use") will resolve to the empty string.
6 This module was contributed by Ian Bicking.
10 __doc__
= __doc__
# Use the module's docstring for the class's docstring.
11 def __getattr__(self
, attr
):
13 def __getitem__(self
, item
):
15 def __call__(self
, *vars, **kw
):
21 def __nonzero__(self
):