File: __init__.pyi

package info (click to toggle)
python-test-stages 0.2.0-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 300 kB
  • sloc: python: 792; sh: 24; makefile: 9
file content (14 lines) | stat: -rw-r--r-- 337 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
# SPDX-FileCopyrightText: Peter Pentchev <roam@ringlet.net>
# SPDX-License-Identifier: BSD-2-Clause

from collections.abc import Callable
from typing import TypeVar

import tox.config


TParserHook = Callable[[tox.config.Parser], None]


# This only handles the parser hook right now.
def hookimpl(func: TParserHook) -> TParserHook: ...