move marshal.pyi into 2and3/

This commit is contained in:
Matthias Kramm
2015-09-28 14:54:58 -07:00
parent 92a48d1c3d
commit 34d9cfa8ba
2 changed files with 0 additions and 15 deletions

View File

@@ -0,0 +1,8 @@
from typing import Any, IO
version = ... # type: int
def dump(value: Any, file: IO[Any], version: int = None) -> None: ...
def load(file: IO[Any]) -> Any: ...
def dumps(value: Any, version: int = None) -> str: ...
def loads(string: str) -> Any: ...