File tree Expand file tree Collapse file tree 2 files changed +4
-1
lines changed Expand file tree Collapse file tree 2 files changed +4
-1
lines changed Original file line number Diff line number Diff line change @@ -4368,4 +4368,4 @@ class chararray(ndarray[_ShapeType, _CharDType]):
4368
4368
class _SupportsDLPack (Protocol [_T_contra ]):
4369
4369
def __dlpack__ (self , * , stream : None | _T_contra = ...) -> _PyCapsule : ...
4370
4370
4371
- def from_dlpack (__obj : _SupportsDLPack [None ]) -> NDArray [Any ]: ...
4371
+ def from_dlpack (obj : _SupportsDLPack [None ], / ) -> NDArray [Any ]: ...
Original file line number Diff line number Diff line change @@ -143,6 +143,7 @@ def loadtxt(
143
143
encoding : None | str = ...,
144
144
max_rows : None | int = ...,
145
145
* ,
146
+ quotechar : None | str = ...,
146
147
like : None | _SupportsArrayFunc = ...
147
148
) -> NDArray [float64 ]: ...
148
149
@overload
@@ -159,6 +160,7 @@ def loadtxt(
159
160
encoding : None | str = ...,
160
161
max_rows : None | int = ...,
161
162
* ,
163
+ quotechar : None | str = ...,
162
164
like : None | _SupportsArrayFunc = ...
163
165
) -> NDArray [_SCT ]: ...
164
166
@overload
@@ -175,6 +177,7 @@ def loadtxt(
175
177
encoding : None | str = ...,
176
178
max_rows : None | int = ...,
177
179
* ,
180
+ quotechar : None | str = ...,
178
181
like : None | _SupportsArrayFunc = ...
179
182
) -> NDArray [Any ]: ...
180
183
You can’t perform that action at this time.
0 commit comments