File: main.pyi

package info (click to toggle)
python-clevercsv 0.8.4%2Bds-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 2,080 kB
  • sloc: python: 6,211; ansic: 870; makefile: 90
file content (6 lines) | stat: -rw-r--r-- 199 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
from typing import Any
from typing import Callable

class PythonFuzz:
    def __init__(self, func: Callable[[bytes], Any]) -> None: ...
    def __call__(self, *args: Any, **kwargs: Any) -> None: ...