File: _lowlevel.pyi

package info (click to toggle)
python-minijinja 2.5.0-2
  • links: PTS, VCS
  • area: main
  • in suites: sid, trixie
  • size: 232 kB
  • sloc: python: 525; makefile: 40; sh: 30
file content (12 lines) | stat: -rw-r--r-- 238 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
from typing import Any
from . import Environment
from typing_extensions import final

@final
class State:
    name: str
    env: Environment
    current_block: str | None
    auto_escape: bool

    def lookup(self, name: str) -> Any: ...