summaryrefslogtreecommitdiff
path: root/numpy
diff options
context:
space:
mode:
authorBas van Beek <43369155+BvB93@users.noreply.github.com>2022-05-09 18:29:23 +0200
committerBas van Beek <43369155+BvB93@users.noreply.github.com>2022-05-09 18:29:23 +0200
commitefc850b89e4c235bea06e72af20b791131d94c8c (patch)
tree9ad1365cc929595feccc2b8a876dc889a2587816 /numpy
parentb0b912f7c0f349304824db543f2a59f091ca590c (diff)
downloadnumpy-efc850b89e4c235bea06e72af20b791131d94c8c.tar.gz
TYP,ENH: Add the new `quotechar` parameter to `np.loadtxt`
Diffstat (limited to 'numpy')
-rw-r--r--numpy/lib/npyio.pyi3
1 files changed, 3 insertions, 0 deletions
diff --git a/numpy/lib/npyio.pyi b/numpy/lib/npyio.pyi
index 231ed7584..8007b2dc7 100644
--- a/numpy/lib/npyio.pyi
+++ b/numpy/lib/npyio.pyi
@@ -143,6 +143,7 @@ def loadtxt(
encoding: None | str = ...,
max_rows: None | int = ...,
*,
+ quotechar: None | str = ...,
like: None | _SupportsArrayFunc = ...
) -> NDArray[float64]: ...
@overload
@@ -159,6 +160,7 @@ def loadtxt(
encoding: None | str = ...,
max_rows: None | int = ...,
*,
+ quotechar: None | str = ...,
like: None | _SupportsArrayFunc = ...
) -> NDArray[_SCT]: ...
@overload
@@ -175,6 +177,7 @@ def loadtxt(
encoding: None | str = ...,
max_rows: None | int = ...,
*,
+ quotechar: None | str = ...,
like: None | _SupportsArrayFunc = ...
) -> NDArray[Any]: ...