File: codepointset.pyi

package info (click to toggle)
python-precis-i18n 1.1.1-2
  • links: PTS, VCS
  • area: main
  • in suites: sid, trixie
  • size: 1,836 kB
  • sloc: python: 1,825; sh: 28; makefile: 3
file content (9 lines) | stat: -rw-r--r-- 337 bytes parent folder | download
1
2
3
4
5
6
7
8
9
from typing import Generator, Tuple

class CodepointSet:
    def __init__(self, table: str) -> None: ...
    def __contains__(self, cp: int) -> bool: ...
    def __len__(self) -> int: ...
    def __eq__(self, rhs: object) -> bool: ...
    def __repr__(self) -> str: ...
    def items(self) -> Generator[Tuple[int, int], None, None]: ...