Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -45,6 +45,7 @@ Also, that release drops support for Python 3.9, making Python 3.10 the minimum
* Updated `dpnp.fix` to reuse `dpnp.trunc` internally [#2722](https://github.com/IntelPython/dpnp/pull/2722)
* Changed the build scripts and documentation due to `python setup.py develop` deprecation notice [#2716](https://github.com/IntelPython/dpnp/pull/2716)
* Clarified behavior on repeated `axes` in `dpnp.tensordot` and `dpnp.linalg.tensordot` functions [#2733](https://github.com/IntelPython/dpnp/pull/2733)
* Improved documentation of `file` argument in `dpnp.fromfile` [#2745](https://github.com/IntelPython/dpnp/pull/2745)

### Deprecated

Expand Down
4 changes: 3 additions & 1 deletion dpnp/dpnp_iface_arraycreation.py
Original file line number Diff line number Diff line change
Expand Up @@ -1721,7 +1721,9 @@ def fromfile(
Parameters
----------
file : file or str or Path
Open file object or filename.
An open file object, a string containing the filename, or a Path object.
When reading from a file object it must support random access (i.e. it
must have tell and seek methods).
dtype : {None, str, dtype object}, optional
Data type of the returned array.
For binary files, it is used to determine the size and byte-order
Expand Down
Loading