Home
last modified time | relevance | path

Searched refs:dict_subclass (Results 1 – 3 of 3) sorted by relevance

/dports/math/py-pandas/pandas-1.2.5/pandas/tests/frame/
H A Dtest_constructors.py520 def test_constructor_subclass_dict(self, float_frame, dict_subclass): argument
523 "col1": dict_subclass((x, 10.0 * x) for x in range(10)),
524 "col2": dict_subclass((x, 20.0 * x) for x in range(10)),
530 data = dict_subclass(data.items())
/dports/math/py-pandas/pandas-1.2.5/pandas/
H A Dconftest.py334 def dict_subclass(): function
/dports/math/py-pandas/pandas-1.2.5/pandas/tests/series/
H A Dtest_constructors.py1542 def test_constructor_subclass_dict(self, dict_subclass):
1543 data = dict_subclass((x, 10.0 * x) for x in range(10))