Skip to content
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)