Initial configuration commit
This commit is contained in:
commit
31c8abea59
266 changed files with 780274 additions and 0 deletions
98
typings/seaborn/conftest.pyi
Normal file
98
typings/seaborn/conftest.pyi
Normal file
|
@ -0,0 +1,98 @@
|
|||
"""
|
||||
This type stub file was generated by pyright.
|
||||
"""
|
||||
|
||||
import pytest
|
||||
|
||||
def has_verdana(): # -> bool:
|
||||
"""Helper to verify if Verdana font is present"""
|
||||
...
|
||||
|
||||
@pytest.fixture(scope="session", autouse=True)
|
||||
def remove_pandas_unit_conversion(): # -> None:
|
||||
...
|
||||
|
||||
@pytest.fixture(autouse=True)
|
||||
def close_figs(): # -> Generator[None, Any, None]:
|
||||
...
|
||||
|
||||
@pytest.fixture(autouse=True)
|
||||
def random_seed(): # -> None:
|
||||
...
|
||||
|
||||
@pytest.fixture()
|
||||
def rng(): # -> RandomState:
|
||||
...
|
||||
|
||||
@pytest.fixture
|
||||
def wide_df(rng): # -> DataFrame:
|
||||
...
|
||||
|
||||
@pytest.fixture
|
||||
def wide_array(wide_df): # -> NDArray[Unknown]:
|
||||
...
|
||||
|
||||
@pytest.fixture
|
||||
def flat_series(rng): # -> Series:
|
||||
...
|
||||
|
||||
@pytest.fixture
|
||||
def flat_array(flat_series): # -> NDArray[Unknown]:
|
||||
...
|
||||
|
||||
@pytest.fixture
|
||||
def flat_list(flat_series):
|
||||
...
|
||||
|
||||
@pytest.fixture(params=["series", "array", "list"])
|
||||
def flat_data(rng, request): # -> Series | ndarray[Unknown, Unknown] | NDArray[Unknown] | list[Unknown] | Any:
|
||||
...
|
||||
|
||||
@pytest.fixture
|
||||
def wide_list_of_series(rng): # -> list[Series]:
|
||||
...
|
||||
|
||||
@pytest.fixture
|
||||
def wide_list_of_arrays(wide_list_of_series): # -> list[NDArray[Unknown]]:
|
||||
...
|
||||
|
||||
@pytest.fixture
|
||||
def wide_list_of_lists(wide_list_of_series): # -> list[Unknown]:
|
||||
...
|
||||
|
||||
@pytest.fixture
|
||||
def wide_dict_of_series(wide_list_of_series): # -> dict[Unknown, Unknown]:
|
||||
...
|
||||
|
||||
@pytest.fixture
|
||||
def wide_dict_of_arrays(wide_list_of_series): # -> dict[Unknown, NDArray[Unknown]]:
|
||||
...
|
||||
|
||||
@pytest.fixture
|
||||
def wide_dict_of_lists(wide_list_of_series): # -> dict[Unknown, Unknown]:
|
||||
...
|
||||
|
||||
@pytest.fixture
|
||||
def long_df(rng): # -> DataFrame:
|
||||
...
|
||||
|
||||
@pytest.fixture
|
||||
def long_dict(long_df):
|
||||
...
|
||||
|
||||
@pytest.fixture
|
||||
def repeated_df(rng): # -> DataFrame:
|
||||
...
|
||||
|
||||
@pytest.fixture
|
||||
def missing_df(rng, long_df):
|
||||
...
|
||||
|
||||
@pytest.fixture
|
||||
def object_df(rng, long_df):
|
||||
...
|
||||
|
||||
@pytest.fixture
|
||||
def null_series(flat_series): # -> Series:
|
||||
...
|
||||
|
Loading…
Add table
Add a link
Reference in a new issue