Lines Matching refs:missing
54 from .utils import missing
386 block_start_string: str = missing,
387 block_end_string: str = missing,
388 variable_start_string: str = missing,
389 variable_end_string: str = missing,
390 comment_start_string: str = missing,
391 comment_end_string: str = missing,
392 line_statement_prefix: t.Optional[str] = missing,
393 line_comment_prefix: t.Optional[str] = missing,
394 trim_blocks: bool = missing,
395 lstrip_blocks: bool = missing,
396 newline_sequence: "te.Literal['\\n', '\\r\\n', '\\r']" = missing,
397 keep_trailing_newline: bool = missing,
398 extensions: t.Sequence[t.Union[str, t.Type["Extension"]]] = missing,
399 optimized: bool = missing,
400 undefined: t.Type[Undefined] = missing,
401 finalize: t.Optional[t.Callable[..., t.Any]] = missing,
402 autoescape: t.Union[bool, t.Callable[[t.Optional[str]], bool]] = missing,
403 loader: t.Optional["BaseLoader"] = missing,
404 cache_size: int = missing,
405 auto_reload: bool = missing,
406 bytecode_cache: t.Optional["BytecodeCache"] = missing,
433 if value is not missing:
436 if cache_size is not missing:
444 if extensions is not missing:
447 if enable_async is not missing: