Coverage for /pythoncovmergedfiles/medio/medio/usr/local/lib/python3.8/site-packages/argon2/_typing.py: 0%
Shortcuts on this page
r m x toggle line displays
j k next/prev highlighted chunk
0 (zero) top of page
1 (one) first highlighted chunk
Shortcuts on this page
r m x toggle line displays
j k next/prev highlighted chunk
0 (zero) top of page
1 (one) first highlighted chunk
1# SPDX-License-Identifier: MIT
3from __future__ import annotations
5import sys
8# try/except ImportError does NOT work.
9# c.f. https://github.com/python/mypy/issues/8520
10if sys.version_info >= (3, 8):
11 from typing import Literal
12else:
13 from typing_extensions import Literal
15__all__ = ["Literal"]