File: py38.py

package info (click to toggle)
python-inflect 7.5.0-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 496 kB
  • sloc: python: 4,807; makefile: 3
file content (7 lines) | stat: -rw-r--r-- 160 bytes parent folder | download | duplicates (9)
1
2
3
4
5
6
7
import sys


if sys.version_info > (3, 9):
    from typing import Annotated
else:  # pragma: no cover
    from typing_extensions import Annotated  # noqa: F401