File: future_builtins.pyi

package info (click to toggle)
mypy 0.470-complete-1
  • links: PTS, VCS
  • area: main
  • in suites: stretch
  • size: 5,864 kB
  • ctags: 3,264
  • sloc: python: 21,838; makefile: 18
file content (14 lines) | stat: -rw-r--r-- 226 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
from typing import Any

from itertools import ifilter as filter
from itertools import imap as map
from itertools import izip as zip


def ascii(obj: Any) -> str: ...


def hex(x: int) -> str: ...


def oct(x: int) -> str: ...