We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 33e1e8b commit 3245c4eCopy full SHA for 3245c4e
src/__init__.pyi
@@ -29,7 +29,7 @@ def iterable_str_to_array_1d(
29
) -> np.ndarray: ...
30
31
def delimited_to_arrays(
32
- __file_like: tp.Iterable[str],
+ file_like: tp.Iterable[str],
33
*,
34
axis: int = 0,
35
dtypes: tp.Optional[tp.Callable[[int], tp.Any]] = None,
@@ -47,8 +47,15 @@ def delimited_to_arrays(
47
48
def split_after_count(
49
string: str,
50
- delimiter: str,
51
- count: int,
+ *,
+ delimiter: str = ',',
52
+ count: int = 0;
53
+ doublequote: bool = True,
54
+ escapechar: str = '',
55
+ quotechar: str = '"',
56
+ quoting: int = 0,
57
+ skipinitialspace: bool = False,
58
+ strict: bool = False,
59
) -> tp.Tuple[str, str]: ...
60
61
def count_iteration(__iterable: tp.Iterable) -> int: ...
0 commit comments