Skip to content

[NOMERGE] Test object array copying #42474

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Closed
wants to merge 1 commit into from
Closed
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
10 changes: 10 additions & 0 deletions pandas/tests/frame/test_constructors.py
Original file line number Diff line number Diff line change
Expand Up @@ -2868,3 +2868,13 @@ def test_tzaware_data_tznaive_dtype(self, constructor):

assert np.all(result.dtypes == "M8[ns]")
assert np.all(result == ts_naive)

def test_1d_object_array_does_not_copy(self):
a = np.array(["a", "b"], dtype="object")
df = DataFrame(a, copy=False)
assert np.shares_memory(df.values, a)

def test_2d_object_array_does_not_copy(self):
b = np.array([["a", "b"], ["c", "d"]], dtype="object")
df2 = DataFrame(b, copy=False)
assert np.shares_memory(df2.values, b)