File: typing_imapclient.py

package info (click to toggle)
python-imapclient 3.0.1-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 668 kB
  • sloc: python: 5,355; sh: 14; makefile: 11
file content (4 lines) | stat: -rw-r--r-- 115 bytes parent folder | download
1
2
3
4
from typing import Tuple, Union

_AtomPart = Union[None, int, bytes]
_Atom = Union[_AtomPart, Tuple["_Atom", ...]]