File: version.pyi

package info (click to toggle)
python-libzim 3.6.0-1.2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 384 kB
  • sloc: python: 1,693; cpp: 397; makefile: 7
file content (9 lines) | stat: -rw-r--r-- 254 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
from __future__ import annotations

import sys
from collections import OrderedDict
from typing import TextIO

def print_versions(out: TextIO = sys.stdout) -> None: ...
def get_versions() -> OrderedDict[str, str]: ...
def get_libzim_version() -> str: ...