Skip to content

Commit

Permalink
Backport PR #55180 on branch 2.1.x (MAINT: Cleanup expired ndarray me…
Browse files Browse the repository at this point in the history
…thods) (#55184)

Backport PR #55180: MAINT: Cleanup expired ndarray methods

Co-authored-by: Mateusz Sokół <8431159+mtsokol@users.noreply.github.com>
  • Loading branch information
meeseeksmachine and mtsokol committed Sep 18, 2023
1 parent 3b57c19 commit 42914f3
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion doc/source/user_guide/gotchas.rst
Original file line number Diff line number Diff line change
Expand Up @@ -379,7 +379,7 @@ constructors using something similar to the following:
.. ipython:: python
x = np.array(list(range(10)), ">i4") # big endian
newx = x.byteswap().newbyteorder() # force native byteorder
newx = x.byteswap().view(x.dtype.newbyteorder()) # force native byteorder
s = pd.Series(newx)
See `the NumPy documentation on byte order
Expand Down
2 changes: 1 addition & 1 deletion pandas/io/stata.py
Original file line number Diff line number Diff line change
Expand Up @@ -1771,7 +1771,7 @@ def read(
self._data_read = True
# if necessary, swap the byte order to native here
if self._byteorder != self._native_byteorder:
raw_data = raw_data.byteswap().newbyteorder()
raw_data = raw_data.byteswap().view(raw_data.dtype.newbyteorder())

if convert_categoricals:
self._read_value_labels()
Expand Down

0 comments on commit 42914f3

Please sign in to comment.