Skip to content

Commit efc850b

Browse files
committed
TYP,ENH: Add the new quotechar parameter to np.loadtxt
1 parent b0b912f commit efc850b

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

numpy/lib/npyio.pyi

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -143,6 +143,7 @@ def loadtxt(
143143
encoding: None | str = ...,
144144
max_rows: None | int = ...,
145145
*,
146+
quotechar: None | str = ...,
146147
like: None | _SupportsArrayFunc = ...
147148
) -> NDArray[float64]: ...
148149
@overload
@@ -159,6 +160,7 @@ def loadtxt(
159160
encoding: None | str = ...,
160161
max_rows: None | int = ...,
161162
*,
163+
quotechar: None | str = ...,
162164
like: None | _SupportsArrayFunc = ...
163165
) -> NDArray[_SCT]: ...
164166
@overload
@@ -175,6 +177,7 @@ def loadtxt(
175177
encoding: None | str = ...,
176178
max_rows: None | int = ...,
177179
*,
180+
quotechar: None | str = ...,
178181
like: None | _SupportsArrayFunc = ...
179182
) -> NDArray[Any]: ...
180183

0 commit comments

Comments
 (0)