File: _types.py

package info (click to toggle)
python-w3lib 2.4.1-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 388 kB
  • sloc: python: 3,066; makefile: 133
file content (6 lines) | stat: -rw-r--r-- 206 bytes parent folder | download
1
2
3
4
5
6
from __future__ import annotations

from typing import TypeAlias

# the base class UnicodeError doesn't have attributes like start / end
AnyUnicodeError: TypeAlias = UnicodeEncodeError | UnicodeDecodeError