File: _types.py

package info (click to toggle)
zabbix-cli 3.5.3-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 2,860 kB
  • sloc: python: 18,557; makefile: 3
file content (12 lines) | stat: -rw-r--r-- 205 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
from __future__ import annotations

import sys

if sys.version_info >= (3, 10):
    from types import EllipsisType

    EllipsisType = EllipsisType
else:
    from typing import Any

    EllipsisType = Any