import numpy as np | |
import pytest | |
from pandas import ( | |
Series, | |
array, | |
) | |
def sort(request): | |
""" | |
Valid values for the 'sort' parameter used in the Index | |
setops methods (intersection, union, etc.) | |
Caution: | |
Don't confuse this one with the "sort" fixture used | |
for DataFrame.append or concat. That one has | |
parameters [True, False]. | |
We can't combine them as sort=True is not permitted | |
in the Index setops methods. | |
""" | |
return request.param | |
def freq_sample(request): | |
""" | |
Valid values for 'freq' parameter used to create date_range and | |
timedelta_range.. | |
""" | |
return request.param | |
def listlike_box(request): | |
""" | |
Types that may be passed as the indexer to searchsorted. | |
""" | |
return request.param | |