| Server IP : 209.209.40.120 / Your IP : 216.73.217.112 Web Server : Microsoft-IIS/10.0 System : Windows NT NEWWWW 10.0 build 17763 (Windows Server 2019) i586 User : NEWWWW$ ( 0) PHP Version : 8.3.30 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : OFF | Perl : OFF | Python : OFF | Sudo : OFF | Pkexec : OFF Directory : C:/Python312/Lib/site-packages/pandas/tests/extension/list/ |
Upload File : |
import pytest
import pandas as pd
from pandas.tests.extension.list.array import (
ListArray,
ListDtype,
make_data,
)
@pytest.fixture
def dtype():
return ListDtype()
@pytest.fixture
def data():
"""Length-100 ListArray for semantics test."""
data = make_data()
while len(data[0]) == len(data[1]):
data = make_data()
return ListArray(data)
def test_to_csv(data):
# https://github.com/pandas-dev/pandas/issues/28840
# array with list-likes fail when doing astype(str) on the numpy array
# which was done in get_values_for_csv
df = pd.DataFrame({"a": data})
res = df.to_csv()
assert str(data[0]) in res