Initial chekin post-discontinuity.

This commit is contained in:
2023-09-25 18:30:10 -07:00
commit 6556164879
24 changed files with 1063 additions and 0 deletions

4
typehints/msgpack.pyi Normal file
View File

@ -0,0 +1,4 @@
from typing import Any, Callable, Dict
def packb(o: Any, use_bin_type: bool, default: Callable) -> bytes: ...
def unpackb(data: bytes, raw: bool, object_hook: Callable) -> Dict: ...

4
typehints/nltk.pyi Normal file
View File

@ -0,0 +1,4 @@
from typing import Iterator
def sent_tokenize(sent: str) -> Iterator[str]: ...
def word_tokenize(word: str) -> Iterator[str]: ...