Initial chekin post-discontinuity.
This commit is contained in:
4
typehints/msgpack.pyi
Normal file
4
typehints/msgpack.pyi
Normal 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
4
typehints/nltk.pyi
Normal file
@ -0,0 +1,4 @@
|
||||
from typing import Iterator
|
||||
|
||||
def sent_tokenize(sent: str) -> Iterator[str]: ...
|
||||
def word_tokenize(word: str) -> Iterator[str]: ...
|
Reference in New Issue
Block a user