Lines Matching refs:Undefined
58 "Undefined",
160 :class:`Undefined` object for missing variables.
186 ) -> t.Union["BlockReference", "Undefined"]:
210 def resolve(self, key: str) -> t.Union[t.Any, "Undefined"]:
211 """Look up a variable by name, or return an :class:`Undefined`
263 ) -> t.Union[t.Any, "Undefined"]:
355 def super(self) -> t.Union["BlockReference", "Undefined"]:
404 undefined: t.Type["Undefined"],
410 :param undefined: :class:`Undefined` class to use for next and
503 def previtem(self) -> t.Union[t.Any, "Undefined"]:
504 """The item in the previous iteration. Undefined during the
513 def nextitem(self) -> t.Union[t.Any, "Undefined"]:
514 """The item in the next iteration. Undefined during the last
631 async def nextitem(self) -> t.Union[t.Any, "Undefined"]:
789 class Undefined:
793 >>> foo = Undefined(name='foo')
898 return "Undefined"
902 logger: t.Optional["logging.Logger"] = None, base: t.Type[Undefined] = Undefined
903 ) -> t.Type[Undefined]:
913 base=Undefined
921 defaults to :class:`Undefined`.
929 def _log_message(undef: Undefined) -> None:
959 class ChainableUndefined(Undefined):
986 class DebugUndefined(Undefined):
1018 class StrictUndefined(Undefined):
1039 __iter__ = __str__ = __len__ = Undefined._fail_with_undefined_error
1040 __eq__ = __ne__ = __bool__ = __hash__ = Undefined._fail_with_undefined_error
1041 __contains__ = Undefined._fail_with_undefined_error
1047 Undefined.__slots__,