Skip to content

Commit

Permalink
Backport PR pandas-dev#55180: MAINT: Cleanup expired ndarray methods
Browse files Browse the repository at this point in the history
  • Loading branch information
mtsokol authored and meeseeksmachine committed Sep 18, 2023
1 parent 3b57c19 commit 5a54082
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 5a54082

Please sign in to comment.