pkgsrc-Changes archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

CVS commit: pkgsrc/math/py-pandas



Module Name:    pkgsrc
Committed By:   adam
Date:           Mon Aug 28 10:34:02 UTC 2023

Modified Files:
        pkgsrc/math/py-pandas: Makefile PLIST distinfo
        pkgsrc/math/py-pandas/patches:
            patch-pandas___libs_window_aggregations.pyx

Log Message:
py-pandas: updated to 2.0.3

2.0.3

Fixed regressions

Bug in Timestamp.weekday`() was returning incorrect results before '0000-02-29' (GH53738)
Fixed performance regression in merging on datetime-like columns (GH53231)
Fixed regression when DataFrame.to_string() creates extra space for string dtypes (GH52690)

Bug fixes

Bug in DataFrame.convert_dtype() and Series.convert_dtype() when trying to convert ArrowDtype with dtype_backend="nullable_numpy" (GH53648)
Bug in RangeIndex.union() when using sort=True with another RangeIndex (GH53490)
Bug in Series.reindex() when expanding a non-nanosecond datetime or timedelta Series would not fill with NaT correctly (GH53497)
Bug in read_csv() when defining dtype with bool[pyarrow] for the "c" and "python" engines (GH53390)
Bug in Series.str.split() and Series.str.rsplit() with expand=True for ArrowDtype with pyarrow.string (GH53532)
Bug in indexing methods (e.g. DataFrame.__getitem__()) where taking the entire DataFrame/Series would raise an OverflowError when Copy on Write was enabled and the length of the array was over the 
maximum size a 32-bit integer can hold (GH53616)
Bug when constructing a DataFrame with columns of an ArrowDtype with a pyarrow.dictionary type that reindexes the data (GH53617)
Bug when indexing a DataFrame or Series with an Index with a timestamp ArrowDtype would raise an AttributeError (GH53644)

2.0.2

Fixed regressions

Fixed performance regression in GroupBy.apply() (GH53195)
Fixed regression in merge() on Windows when dtype is np.intc (GH52451)
Fixed regression in read_sql() dropping columns with duplicated column names (GH53117)
Fixed regression in DataFrame.loc() losing MultiIndex name when enlarging object (GH53053)
Fixed regression in DataFrame.to_string() printing a backslash at the end of the first row of data, instead of headers, when the DataFrame doesn’t fit the line width (GH53054)
Fixed regression in MultiIndex.join() returning levels in wrong order (GH53093)

Bug fixes

Bug in arrays.ArrowExtensionArray incorrectly assigning dict instead of list for .type with pyarrow.map_ and raising a NotImplementedError with pyarrow.struct (GH53328)
Bug in api.interchange.from_dataframe() was raising IndexError on empty categorical data (GH53077)
Bug in api.interchange.from_dataframe() was returning DataFrame’s of incorrect sizes when called on slices (GH52824)
Bug in api.interchange.from_dataframe() was unnecessarily raising on bitmasks (GH49888)
Bug in merge() when merging on datetime columns on different resolutions (GH53200)
Bug in read_csv() raising OverflowError for engine="pyarrow" and parse_dates set (GH53295)
Bug in to_datetime() was inferring format to contain "%H" instead of "%I" if date contained “AM” / “PM” tokens (GH53147)
Bug in DataFrame.convert_dtypes() ignores convert_* keywords when set to False dtype_backend="pyarrow" (GH52872)
Bug in DataFrame.convert_dtypes() losing timezone for tz-aware dtypes and dtype_backend="pyarrow" (GH53382)
Bug in DataFrame.sort_values() raising for PyArrow dictionary dtype (GH53232)
Bug in Series.describe() treating pyarrow-backed timestamps and timedeltas as categorical data (GH53001)
Bug in Series.rename() not making a lazy copy when Copy-on-Write is enabled when a scalar is passed to it (GH52450)
Bug in pd.array() raising for NumPy array and pa.large_string or pa.large_binary (GH52590)
Bug in DataFrame.__getitem__() not preserving dtypes for MultiIndex partial keys (GH51895)

2.0.1

Fixed regressions

Fixed regression for subclassed Series when constructing from a dictionary (GH52445)
Fixed regression in SeriesGroupBy.agg() failing when grouping with categorical data, multiple groupings, as_index=False, and a list of aggregations (GH52760)
Fixed regression in DataFrame.pivot() changing Index name of input object (GH52629)
Fixed regression in DataFrame.resample() raising on a DataFrame with no columns (GH52484)
Fixed regression in DataFrame.sort_values() not resetting index when DataFrame is already sorted and ignore_index=True (GH52553)
Fixed regression in MultiIndex.isin() raising TypeError for Generator (GH52568)
Fixed regression in Series.describe() showing RuntimeWarning for extension dtype Series with one element (GH52515)
Fixed regression when adding a new column to a DataFrame when the DataFrame.columns was a RangeIndex and the new key was hashable but not a scalar (GH52652)

Bug fixes

Bug in Series.dt.days that would overflow int32 number of days (GH52391)
Bug in arrays.DatetimeArray constructor returning an incorrect unit when passed a non-nanosecond numpy datetime array (GH52555)
Bug in ArrowExtensionArray with duration dtype overflowing when constructed from data containing numpy NaT (GH52843)
Bug in Series.dt.round() when passing a freq of equal or higher resolution compared to the Series would raise a ZeroDivisionError (GH52761)
Bug in Series.median() with ArrowDtype returning an approximate median (GH52679)
Bug in api.interchange.from_dataframe() was unnecessarily raising on categorical dtypes (GH49889)
Bug in api.interchange.from_dataframe() was unnecessarily raising on large string dtypes (GH52795)
Bug in pandas.testing.assert_series_equal() where check_dtype=False would still raise for datetime or timedelta types with different resolutions (GH52449)
Bug in read_csv() casting PyArrow datetimes to NumPy when dtype_backend="pyarrow" and parse_dates is set causing a performance bottleneck in the process (GH52546)
Bug in to_datetime() and to_timedelta() when trying to convert numeric data with a ArrowDtype (GH52425)
Bug in to_numeric() with errors='coerce' and dtype_backend='pyarrow' with ArrowDtype data (GH52588)
Bug in ArrowDtype.__from_arrow__() not respecting if dtype is explicitly given (GH52533)
Bug in DataFrame.describe() not respecting ArrowDtype in include and exclude (GH52570)
Bug in DataFrame.max() and related casting different Timestamp resolutions always to nanoseconds (GH52524)
Bug in Series.describe() not returning ArrowDtype with pyarrow.float64 type with numeric data (GH52427)
Bug in Series.dt.tz_localize() incorrectly localizing timestamps with ArrowDtype (GH52677)
Bug in arithmetic between np.datetime64 and np.timedelta64 NaT scalars with units always returning nanosecond resolution (GH52295)
Bug in logical and comparison operations between ArrowDtype and numpy masked types (e.g. "boolean") (GH52625)
Fixed bug in merge() when merging with ArrowDtype one one and a NumPy dtype on the other side (GH52406)
Fixed segfault in Series.to_numpy() with null[pyarrow] dtype (GH52443)

Other

DataFrame created from empty dicts had columns of dtype object. It is now a RangeIndex (GH52404)
Series created from empty dicts had index of dtype object. It is now a RangeIndex (GH52404)
Implemented Series.str.split() and Series.str.rsplit() for ArrowDtype with pyarrow.string (GH52401)
Implemented most str accessor methods for ArrowDtype with pyarrow.string (GH52401)
Supplying a non-integer hashable key that tests False in api.types.is_scalar() now raises a KeyError for RangeIndex.get_loc(), like it does for Index.get_loc(). Previously it raised an 
InvalidIndexError (GH52652).


To generate a diff of this commit:
cvs rdiff -u -r1.46 -r1.47 pkgsrc/math/py-pandas/Makefile
cvs rdiff -u -r1.21 -r1.22 pkgsrc/math/py-pandas/PLIST
cvs rdiff -u -r1.32 -r1.33 pkgsrc/math/py-pandas/distinfo
cvs rdiff -u -r1.2 -r1.3 \
    pkgsrc/math/py-pandas/patches/patch-pandas___libs_window_aggregations.pyx

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Modified files:

Index: pkgsrc/math/py-pandas/Makefile
diff -u pkgsrc/math/py-pandas/Makefile:1.46 pkgsrc/math/py-pandas/Makefile:1.47
--- pkgsrc/math/py-pandas/Makefile:1.46 Tue Aug  1 23:20:47 2023
+++ pkgsrc/math/py-pandas/Makefile      Mon Aug 28 10:34:02 2023
@@ -1,6 +1,6 @@
-# $NetBSD: Makefile,v 1.46 2023/08/01 23:20:47 wiz Exp $
+# $NetBSD: Makefile,v 1.47 2023/08/28 10:34:02 adam Exp $
 
-DISTNAME=      pandas-1.5.3
+DISTNAME=      pandas-2.0.3
 PKGNAME=       ${PYPKGPREFIX}-${DISTNAME}
 CATEGORIES=    math graphics python
 MASTER_SITES=  ${MASTER_SITE_PYPI:=p/pandas/}
@@ -10,13 +10,16 @@ HOMEPAGE=   https://pandas.pydata.org/
 COMMENT=       Python Data Analysis Library
 LICENSE=       modified-bsd
 
-DEPENDS+=      ${PYPKGPREFIX}-dateutil>=2.8.1:../../time/py-dateutil
+TOOL_DEPENDS+= ${PYPKGPREFIX}-cython>=0.29.33:../../devel/py-cython
+TOOL_DEPENDS+= ${PYPKGPREFIX}-versioneer-[0-9]*:../../devel/py-versioneer
+DEPENDS+=      ${PYPKGPREFIX}-dateutil>=2.8.2:../../time/py-dateutil
 DEPENDS+=      ${PYPKGPREFIX}-pytz>=2020.1:../../time/py-pytz
 DEPENDS+=      ${PYPKGPREFIX}-sqlite3-[0-9]*:../../databases/py-sqlite3
-TEST_DEPENDS+= ${PYPKGPREFIX}-hypothesis>=5.5.3:../../devel/py-hypothesis
-TEST_DEPENDS+= ${PYPKGPREFIX}-test>=6.0:../../devel/py-test
-TEST_DEPENDS+= ${PYPKGPREFIX}-test-asyncio-[0-9]*:../../devel/py-test-asyncio
-TEST_DEPENDS+= ${PYPKGPREFIX}-test-xdist>=1.31:../../devel/py-test-xdist
+DEPENDS+=      ${PYPKGPREFIX}-tzdata>=2022.1:../../time/py-tzdata
+TEST_DEPENDS+= ${PYPKGPREFIX}-hypothesis>=6.34.2:../../devel/py-hypothesis
+TEST_DEPENDS+= ${PYPKGPREFIX}-test>=7.3.2:../../devel/py-test
+TEST_DEPENDS+= ${PYPKGPREFIX}-test-asyncio>=0.17.0:../../devel/py-test-asyncio
+TEST_DEPENDS+= ${PYPKGPREFIX}-test-xdist>=2.2.0:../../devel/py-test-xdist
 
 USE_LANGUAGES= c c++11
 
@@ -29,9 +32,9 @@ do-test:
 
 # This would otherwise be installed, causing PLIST mismatch
 post-patch:
-       cd ${WRKSRC} && rm -f pandas/_libs/window/aggregations.pyx.orig
+       cd ${WRKSRC} && ${RM} -f pandas/_libs/window/aggregations.pyx.orig
 
-.include "../../lang/python/egg.mk"
+.include "../../lang/python/wheel.mk"
 BUILDLINK_API_DEPENDS.py-numpy+= ${PYPKGPREFIX}-numpy>=1.23.2
 .include "../../math/py-numpy/buildlink3.mk"
 .include "../../mk/bsd.pkg.mk"

Index: pkgsrc/math/py-pandas/PLIST
diff -u pkgsrc/math/py-pandas/PLIST:1.21 pkgsrc/math/py-pandas/PLIST:1.22
--- pkgsrc/math/py-pandas/PLIST:1.21    Mon Nov 28 21:46:51 2022
+++ pkgsrc/math/py-pandas/PLIST Mon Aug 28 10:34:02 2023
@@ -1,32 +1,28 @@
-@comment $NetBSD: PLIST,v 1.21 2022/11/28 21:46:51 adam Exp $
-${PYSITELIB}/${EGG_INFODIR}/PKG-INFO
-${PYSITELIB}/${EGG_INFODIR}/SOURCES.txt
-${PYSITELIB}/${EGG_INFODIR}/dependency_links.txt
-${PYSITELIB}/${EGG_INFODIR}/entry_points.txt
-${PYSITELIB}/${EGG_INFODIR}/not-zip-safe
-${PYSITELIB}/${EGG_INFODIR}/requires.txt
-${PYSITELIB}/${EGG_INFODIR}/top_level.txt
+@comment $NetBSD: PLIST,v 1.22 2023/08/28 10:34:02 adam Exp $
+${PYSITELIB}/${WHEEL_INFODIR}/AUTHORS.md
+${PYSITELIB}/${WHEEL_INFODIR}/INSTALLER
+${PYSITELIB}/${WHEEL_INFODIR}/LICENSE
+${PYSITELIB}/${WHEEL_INFODIR}/METADATA
+${PYSITELIB}/${WHEEL_INFODIR}/RECORD
+${PYSITELIB}/${WHEEL_INFODIR}/REQUESTED
+${PYSITELIB}/${WHEEL_INFODIR}/WHEEL
+${PYSITELIB}/${WHEEL_INFODIR}/direct_url.json
+${PYSITELIB}/${WHEEL_INFODIR}/entry_points.txt
+${PYSITELIB}/${WHEEL_INFODIR}/top_level.txt
 ${PYSITELIB}/pandas/__init__.py
 ${PYSITELIB}/pandas/__init__.pyc
-${PYSITELIB}/pandas/__init__.pyo
 ${PYSITELIB}/pandas/_config/__init__.py
 ${PYSITELIB}/pandas/_config/__init__.pyc
-${PYSITELIB}/pandas/_config/__init__.pyo
 ${PYSITELIB}/pandas/_config/config.py
 ${PYSITELIB}/pandas/_config/config.pyc
-${PYSITELIB}/pandas/_config/config.pyo
 ${PYSITELIB}/pandas/_config/dates.py
 ${PYSITELIB}/pandas/_config/dates.pyc
-${PYSITELIB}/pandas/_config/dates.pyo
 ${PYSITELIB}/pandas/_config/display.py
 ${PYSITELIB}/pandas/_config/display.pyc
-${PYSITELIB}/pandas/_config/display.pyo
 ${PYSITELIB}/pandas/_config/localization.py
 ${PYSITELIB}/pandas/_config/localization.pyc
-${PYSITELIB}/pandas/_config/localization.pyo
 ${PYSITELIB}/pandas/_libs/__init__.py
 ${PYSITELIB}/pandas/_libs/__init__.pyc
-${PYSITELIB}/pandas/_libs/__init__.pyo
 ${PYSITELIB}/pandas/_libs/algos.pxd
 ${PYSITELIB}/pandas/_libs/algos.pyi
 ${PYSITELIB}/pandas/_libs/algos.pyx
@@ -109,7 +105,6 @@ ${PYSITELIB}/pandas/_libs/tslib.pyx
 ${PYSITELIB}/pandas/_libs/tslib.so
 ${PYSITELIB}/pandas/_libs/tslibs/__init__.py
 ${PYSITELIB}/pandas/_libs/tslibs/__init__.pyc
-${PYSITELIB}/pandas/_libs/tslibs/__init__.pyo
 ${PYSITELIB}/pandas/_libs/tslibs/base.pxd
 ${PYSITELIB}/pandas/_libs/tslibs/base.pyx
 ${PYSITELIB}/pandas/_libs/tslibs/base.so
@@ -148,6 +143,7 @@ ${PYSITELIB}/pandas/_libs/tslibs/period.
 ${PYSITELIB}/pandas/_libs/tslibs/period.pyi
 ${PYSITELIB}/pandas/_libs/tslibs/period.pyx
 ${PYSITELIB}/pandas/_libs/tslibs/period.so
+${PYSITELIB}/pandas/_libs/tslibs/strptime.pxd
 ${PYSITELIB}/pandas/_libs/tslibs/strptime.pyi
 ${PYSITELIB}/pandas/_libs/tslibs/strptime.pyx
 ${PYSITELIB}/pandas/_libs/tslibs/strptime.so
@@ -174,7 +170,6 @@ ${PYSITELIB}/pandas/_libs/tslibs/vectori
 ${PYSITELIB}/pandas/_libs/util.pxd
 ${PYSITELIB}/pandas/_libs/window/__init__.py
 ${PYSITELIB}/pandas/_libs/window/__init__.pyc
-${PYSITELIB}/pandas/_libs/window/__init__.pyo
 ${PYSITELIB}/pandas/_libs/window/aggregations.pyi
 ${PYSITELIB}/pandas/_libs/window/aggregations.pyx
 ${PYSITELIB}/pandas/_libs/window/aggregations.so
@@ -186,697 +181,472 @@ ${PYSITELIB}/pandas/_libs/writers.pyx
 ${PYSITELIB}/pandas/_libs/writers.so
 ${PYSITELIB}/pandas/_testing/__init__.py
 ${PYSITELIB}/pandas/_testing/__init__.pyc
-${PYSITELIB}/pandas/_testing/__init__.pyo
 ${PYSITELIB}/pandas/_testing/_hypothesis.py
 ${PYSITELIB}/pandas/_testing/_hypothesis.pyc
-${PYSITELIB}/pandas/_testing/_hypothesis.pyo
 ${PYSITELIB}/pandas/_testing/_io.py
 ${PYSITELIB}/pandas/_testing/_io.pyc
-${PYSITELIB}/pandas/_testing/_io.pyo
 ${PYSITELIB}/pandas/_testing/_random.py
 ${PYSITELIB}/pandas/_testing/_random.pyc
-${PYSITELIB}/pandas/_testing/_random.pyo
 ${PYSITELIB}/pandas/_testing/_warnings.py
 ${PYSITELIB}/pandas/_testing/_warnings.pyc
-${PYSITELIB}/pandas/_testing/_warnings.pyo
 ${PYSITELIB}/pandas/_testing/asserters.py
 ${PYSITELIB}/pandas/_testing/asserters.pyc
-${PYSITELIB}/pandas/_testing/asserters.pyo
 ${PYSITELIB}/pandas/_testing/compat.py
 ${PYSITELIB}/pandas/_testing/compat.pyc
-${PYSITELIB}/pandas/_testing/compat.pyo
 ${PYSITELIB}/pandas/_testing/contexts.py
 ${PYSITELIB}/pandas/_testing/contexts.pyc
-${PYSITELIB}/pandas/_testing/contexts.pyo
 ${PYSITELIB}/pandas/_typing.py
 ${PYSITELIB}/pandas/_typing.pyc
-${PYSITELIB}/pandas/_typing.pyo
 ${PYSITELIB}/pandas/_version.py
 ${PYSITELIB}/pandas/_version.pyc
-${PYSITELIB}/pandas/_version.pyo
 ${PYSITELIB}/pandas/api/__init__.py
 ${PYSITELIB}/pandas/api/__init__.pyc
-${PYSITELIB}/pandas/api/__init__.pyo
 ${PYSITELIB}/pandas/api/extensions/__init__.py
 ${PYSITELIB}/pandas/api/extensions/__init__.pyc
-${PYSITELIB}/pandas/api/extensions/__init__.pyo
 ${PYSITELIB}/pandas/api/indexers/__init__.py
 ${PYSITELIB}/pandas/api/indexers/__init__.pyc
-${PYSITELIB}/pandas/api/indexers/__init__.pyo
 ${PYSITELIB}/pandas/api/interchange/__init__.py
 ${PYSITELIB}/pandas/api/interchange/__init__.pyc
-${PYSITELIB}/pandas/api/interchange/__init__.pyo
 ${PYSITELIB}/pandas/api/types/__init__.py
 ${PYSITELIB}/pandas/api/types/__init__.pyc
-${PYSITELIB}/pandas/api/types/__init__.pyo
 ${PYSITELIB}/pandas/arrays/__init__.py
 ${PYSITELIB}/pandas/arrays/__init__.pyc
-${PYSITELIB}/pandas/arrays/__init__.pyo
 ${PYSITELIB}/pandas/compat/__init__.py
 ${PYSITELIB}/pandas/compat/__init__.pyc
-${PYSITELIB}/pandas/compat/__init__.pyo
+${PYSITELIB}/pandas/compat/_constants.py
+${PYSITELIB}/pandas/compat/_constants.pyc
 ${PYSITELIB}/pandas/compat/_optional.py
 ${PYSITELIB}/pandas/compat/_optional.pyc
-${PYSITELIB}/pandas/compat/_optional.pyo
-${PYSITELIB}/pandas/compat/chainmap.py
-${PYSITELIB}/pandas/compat/chainmap.pyc
-${PYSITELIB}/pandas/compat/chainmap.pyo
+${PYSITELIB}/pandas/compat/compressors.py
+${PYSITELIB}/pandas/compat/compressors.pyc
 ${PYSITELIB}/pandas/compat/numpy/__init__.py
 ${PYSITELIB}/pandas/compat/numpy/__init__.pyc
-${PYSITELIB}/pandas/compat/numpy/__init__.pyo
 ${PYSITELIB}/pandas/compat/numpy/function.py
 ${PYSITELIB}/pandas/compat/numpy/function.pyc
-${PYSITELIB}/pandas/compat/numpy/function.pyo
 ${PYSITELIB}/pandas/compat/pickle_compat.py
 ${PYSITELIB}/pandas/compat/pickle_compat.pyc
-${PYSITELIB}/pandas/compat/pickle_compat.pyo
 ${PYSITELIB}/pandas/compat/pyarrow.py
 ${PYSITELIB}/pandas/compat/pyarrow.pyc
-${PYSITELIB}/pandas/compat/pyarrow.pyo
 ${PYSITELIB}/pandas/conftest.py
 ${PYSITELIB}/pandas/conftest.pyc
-${PYSITELIB}/pandas/conftest.pyo
 ${PYSITELIB}/pandas/core/__init__.py
 ${PYSITELIB}/pandas/core/__init__.pyc
-${PYSITELIB}/pandas/core/__init__.pyo
 ${PYSITELIB}/pandas/core/_numba/__init__.py
 ${PYSITELIB}/pandas/core/_numba/__init__.pyc
-${PYSITELIB}/pandas/core/_numba/__init__.pyo
 ${PYSITELIB}/pandas/core/_numba/executor.py
 ${PYSITELIB}/pandas/core/_numba/executor.pyc
-${PYSITELIB}/pandas/core/_numba/executor.pyo
 ${PYSITELIB}/pandas/core/_numba/kernels/__init__.py
 ${PYSITELIB}/pandas/core/_numba/kernels/__init__.pyc
-${PYSITELIB}/pandas/core/_numba/kernels/__init__.pyo
 ${PYSITELIB}/pandas/core/_numba/kernels/mean_.py
 ${PYSITELIB}/pandas/core/_numba/kernels/mean_.pyc
-${PYSITELIB}/pandas/core/_numba/kernels/mean_.pyo
 ${PYSITELIB}/pandas/core/_numba/kernels/min_max_.py
 ${PYSITELIB}/pandas/core/_numba/kernels/min_max_.pyc
-${PYSITELIB}/pandas/core/_numba/kernels/min_max_.pyo
 ${PYSITELIB}/pandas/core/_numba/kernels/shared.py
 ${PYSITELIB}/pandas/core/_numba/kernels/shared.pyc
-${PYSITELIB}/pandas/core/_numba/kernels/shared.pyo
 ${PYSITELIB}/pandas/core/_numba/kernels/sum_.py
 ${PYSITELIB}/pandas/core/_numba/kernels/sum_.pyc
-${PYSITELIB}/pandas/core/_numba/kernels/sum_.pyo
 ${PYSITELIB}/pandas/core/_numba/kernels/var_.py
 ${PYSITELIB}/pandas/core/_numba/kernels/var_.pyc
-${PYSITELIB}/pandas/core/_numba/kernels/var_.pyo
 ${PYSITELIB}/pandas/core/accessor.py
 ${PYSITELIB}/pandas/core/accessor.pyc
-${PYSITELIB}/pandas/core/accessor.pyo
 ${PYSITELIB}/pandas/core/algorithms.py
 ${PYSITELIB}/pandas/core/algorithms.pyc
-${PYSITELIB}/pandas/core/algorithms.pyo
 ${PYSITELIB}/pandas/core/api.py
 ${PYSITELIB}/pandas/core/api.pyc
-${PYSITELIB}/pandas/core/api.pyo
 ${PYSITELIB}/pandas/core/apply.py
 ${PYSITELIB}/pandas/core/apply.pyc
-${PYSITELIB}/pandas/core/apply.pyo
 ${PYSITELIB}/pandas/core/array_algos/__init__.py
 ${PYSITELIB}/pandas/core/array_algos/__init__.pyc
-${PYSITELIB}/pandas/core/array_algos/__init__.pyo
+${PYSITELIB}/pandas/core/array_algos/datetimelike_accumulations.py
+${PYSITELIB}/pandas/core/array_algos/datetimelike_accumulations.pyc
+${PYSITELIB}/pandas/core/array_algos/masked_accumulations.py
+${PYSITELIB}/pandas/core/array_algos/masked_accumulations.pyc
 ${PYSITELIB}/pandas/core/array_algos/masked_reductions.py
 ${PYSITELIB}/pandas/core/array_algos/masked_reductions.pyc
-${PYSITELIB}/pandas/core/array_algos/masked_reductions.pyo
 ${PYSITELIB}/pandas/core/array_algos/putmask.py
 ${PYSITELIB}/pandas/core/array_algos/putmask.pyc
-${PYSITELIB}/pandas/core/array_algos/putmask.pyo
 ${PYSITELIB}/pandas/core/array_algos/quantile.py
 ${PYSITELIB}/pandas/core/array_algos/quantile.pyc
-${PYSITELIB}/pandas/core/array_algos/quantile.pyo
 ${PYSITELIB}/pandas/core/array_algos/replace.py
 ${PYSITELIB}/pandas/core/array_algos/replace.pyc
-${PYSITELIB}/pandas/core/array_algos/replace.pyo
 ${PYSITELIB}/pandas/core/array_algos/take.py
 ${PYSITELIB}/pandas/core/array_algos/take.pyc
-${PYSITELIB}/pandas/core/array_algos/take.pyo
 ${PYSITELIB}/pandas/core/array_algos/transforms.py
 ${PYSITELIB}/pandas/core/array_algos/transforms.pyc
-${PYSITELIB}/pandas/core/array_algos/transforms.pyo
 ${PYSITELIB}/pandas/core/arraylike.py
 ${PYSITELIB}/pandas/core/arraylike.pyc
-${PYSITELIB}/pandas/core/arraylike.pyo
 ${PYSITELIB}/pandas/core/arrays/__init__.py
 ${PYSITELIB}/pandas/core/arrays/__init__.pyc
-${PYSITELIB}/pandas/core/arrays/__init__.pyo
 ${PYSITELIB}/pandas/core/arrays/_mixins.py
 ${PYSITELIB}/pandas/core/arrays/_mixins.pyc
-${PYSITELIB}/pandas/core/arrays/_mixins.pyo
 ${PYSITELIB}/pandas/core/arrays/_ranges.py
 ${PYSITELIB}/pandas/core/arrays/_ranges.pyc
-${PYSITELIB}/pandas/core/arrays/_ranges.pyo
 ${PYSITELIB}/pandas/core/arrays/arrow/__init__.py
 ${PYSITELIB}/pandas/core/arrays/arrow/__init__.pyc
-${PYSITELIB}/pandas/core/arrays/arrow/__init__.pyo
 ${PYSITELIB}/pandas/core/arrays/arrow/_arrow_utils.py
 ${PYSITELIB}/pandas/core/arrays/arrow/_arrow_utils.pyc
-${PYSITELIB}/pandas/core/arrays/arrow/_arrow_utils.pyo
 ${PYSITELIB}/pandas/core/arrays/arrow/array.py
 ${PYSITELIB}/pandas/core/arrays/arrow/array.pyc
-${PYSITELIB}/pandas/core/arrays/arrow/array.pyo
 ${PYSITELIB}/pandas/core/arrays/arrow/dtype.py
 ${PYSITELIB}/pandas/core/arrays/arrow/dtype.pyc
-${PYSITELIB}/pandas/core/arrays/arrow/dtype.pyo
 ${PYSITELIB}/pandas/core/arrays/arrow/extension_types.py
 ${PYSITELIB}/pandas/core/arrays/arrow/extension_types.pyc
-${PYSITELIB}/pandas/core/arrays/arrow/extension_types.pyo
 ${PYSITELIB}/pandas/core/arrays/base.py
 ${PYSITELIB}/pandas/core/arrays/base.pyc
-${PYSITELIB}/pandas/core/arrays/base.pyo
 ${PYSITELIB}/pandas/core/arrays/boolean.py
 ${PYSITELIB}/pandas/core/arrays/boolean.pyc
-${PYSITELIB}/pandas/core/arrays/boolean.pyo
 ${PYSITELIB}/pandas/core/arrays/categorical.py
 ${PYSITELIB}/pandas/core/arrays/categorical.pyc
-${PYSITELIB}/pandas/core/arrays/categorical.pyo
 ${PYSITELIB}/pandas/core/arrays/datetimelike.py
 ${PYSITELIB}/pandas/core/arrays/datetimelike.pyc
-${PYSITELIB}/pandas/core/arrays/datetimelike.pyo
 ${PYSITELIB}/pandas/core/arrays/datetimes.py
 ${PYSITELIB}/pandas/core/arrays/datetimes.pyc
-${PYSITELIB}/pandas/core/arrays/datetimes.pyo
 ${PYSITELIB}/pandas/core/arrays/floating.py
 ${PYSITELIB}/pandas/core/arrays/floating.pyc
-${PYSITELIB}/pandas/core/arrays/floating.pyo
 ${PYSITELIB}/pandas/core/arrays/integer.py
 ${PYSITELIB}/pandas/core/arrays/integer.pyc
-${PYSITELIB}/pandas/core/arrays/integer.pyo
 ${PYSITELIB}/pandas/core/arrays/interval.py
 ${PYSITELIB}/pandas/core/arrays/interval.pyc
-${PYSITELIB}/pandas/core/arrays/interval.pyo
 ${PYSITELIB}/pandas/core/arrays/masked.py
 ${PYSITELIB}/pandas/core/arrays/masked.pyc
-${PYSITELIB}/pandas/core/arrays/masked.pyo
 ${PYSITELIB}/pandas/core/arrays/numeric.py
 ${PYSITELIB}/pandas/core/arrays/numeric.pyc
-${PYSITELIB}/pandas/core/arrays/numeric.pyo
 ${PYSITELIB}/pandas/core/arrays/numpy_.py
 ${PYSITELIB}/pandas/core/arrays/numpy_.pyc
-${PYSITELIB}/pandas/core/arrays/numpy_.pyo
 ${PYSITELIB}/pandas/core/arrays/period.py
 ${PYSITELIB}/pandas/core/arrays/period.pyc
-${PYSITELIB}/pandas/core/arrays/period.pyo
 ${PYSITELIB}/pandas/core/arrays/sparse/__init__.py
 ${PYSITELIB}/pandas/core/arrays/sparse/__init__.pyc
-${PYSITELIB}/pandas/core/arrays/sparse/__init__.pyo
 ${PYSITELIB}/pandas/core/arrays/sparse/accessor.py
 ${PYSITELIB}/pandas/core/arrays/sparse/accessor.pyc
-${PYSITELIB}/pandas/core/arrays/sparse/accessor.pyo
 ${PYSITELIB}/pandas/core/arrays/sparse/array.py
 ${PYSITELIB}/pandas/core/arrays/sparse/array.pyc
-${PYSITELIB}/pandas/core/arrays/sparse/array.pyo
 ${PYSITELIB}/pandas/core/arrays/sparse/dtype.py
 ${PYSITELIB}/pandas/core/arrays/sparse/dtype.pyc
-${PYSITELIB}/pandas/core/arrays/sparse/dtype.pyo
 ${PYSITELIB}/pandas/core/arrays/sparse/scipy_sparse.py
 ${PYSITELIB}/pandas/core/arrays/sparse/scipy_sparse.pyc
-${PYSITELIB}/pandas/core/arrays/sparse/scipy_sparse.pyo
 ${PYSITELIB}/pandas/core/arrays/string_.py
 ${PYSITELIB}/pandas/core/arrays/string_.pyc
-${PYSITELIB}/pandas/core/arrays/string_.pyo
 ${PYSITELIB}/pandas/core/arrays/string_arrow.py
 ${PYSITELIB}/pandas/core/arrays/string_arrow.pyc
-${PYSITELIB}/pandas/core/arrays/string_arrow.pyo
 ${PYSITELIB}/pandas/core/arrays/timedeltas.py
 ${PYSITELIB}/pandas/core/arrays/timedeltas.pyc
-${PYSITELIB}/pandas/core/arrays/timedeltas.pyo
 ${PYSITELIB}/pandas/core/base.py
 ${PYSITELIB}/pandas/core/base.pyc
-${PYSITELIB}/pandas/core/base.pyo
 ${PYSITELIB}/pandas/core/common.py
 ${PYSITELIB}/pandas/core/common.pyc
-${PYSITELIB}/pandas/core/common.pyo
 ${PYSITELIB}/pandas/core/computation/__init__.py
 ${PYSITELIB}/pandas/core/computation/__init__.pyc
-${PYSITELIB}/pandas/core/computation/__init__.pyo
 ${PYSITELIB}/pandas/core/computation/align.py
 ${PYSITELIB}/pandas/core/computation/align.pyc
-${PYSITELIB}/pandas/core/computation/align.pyo
 ${PYSITELIB}/pandas/core/computation/api.py
 ${PYSITELIB}/pandas/core/computation/api.pyc
-${PYSITELIB}/pandas/core/computation/api.pyo
 ${PYSITELIB}/pandas/core/computation/check.py
 ${PYSITELIB}/pandas/core/computation/check.pyc
-${PYSITELIB}/pandas/core/computation/check.pyo
 ${PYSITELIB}/pandas/core/computation/common.py
 ${PYSITELIB}/pandas/core/computation/common.pyc
-${PYSITELIB}/pandas/core/computation/common.pyo
 ${PYSITELIB}/pandas/core/computation/engines.py
 ${PYSITELIB}/pandas/core/computation/engines.pyc
-${PYSITELIB}/pandas/core/computation/engines.pyo
 ${PYSITELIB}/pandas/core/computation/eval.py
 ${PYSITELIB}/pandas/core/computation/eval.pyc
-${PYSITELIB}/pandas/core/computation/eval.pyo
 ${PYSITELIB}/pandas/core/computation/expr.py
 ${PYSITELIB}/pandas/core/computation/expr.pyc
-${PYSITELIB}/pandas/core/computation/expr.pyo
 ${PYSITELIB}/pandas/core/computation/expressions.py
 ${PYSITELIB}/pandas/core/computation/expressions.pyc
-${PYSITELIB}/pandas/core/computation/expressions.pyo
 ${PYSITELIB}/pandas/core/computation/ops.py
 ${PYSITELIB}/pandas/core/computation/ops.pyc
-${PYSITELIB}/pandas/core/computation/ops.pyo
 ${PYSITELIB}/pandas/core/computation/parsing.py
 ${PYSITELIB}/pandas/core/computation/parsing.pyc
-${PYSITELIB}/pandas/core/computation/parsing.pyo
 ${PYSITELIB}/pandas/core/computation/pytables.py
 ${PYSITELIB}/pandas/core/computation/pytables.pyc
-${PYSITELIB}/pandas/core/computation/pytables.pyo
 ${PYSITELIB}/pandas/core/computation/scope.py
 ${PYSITELIB}/pandas/core/computation/scope.pyc
-${PYSITELIB}/pandas/core/computation/scope.pyo
 ${PYSITELIB}/pandas/core/config_init.py
 ${PYSITELIB}/pandas/core/config_init.pyc
-${PYSITELIB}/pandas/core/config_init.pyo
 ${PYSITELIB}/pandas/core/construction.py
 ${PYSITELIB}/pandas/core/construction.pyc
-${PYSITELIB}/pandas/core/construction.pyo
-${PYSITELIB}/pandas/core/describe.py
-${PYSITELIB}/pandas/core/describe.pyc
-${PYSITELIB}/pandas/core/describe.pyo
 ${PYSITELIB}/pandas/core/dtypes/__init__.py
 ${PYSITELIB}/pandas/core/dtypes/__init__.pyc
-${PYSITELIB}/pandas/core/dtypes/__init__.pyo
 ${PYSITELIB}/pandas/core/dtypes/api.py
 ${PYSITELIB}/pandas/core/dtypes/api.pyc
-${PYSITELIB}/pandas/core/dtypes/api.pyo
 ${PYSITELIB}/pandas/core/dtypes/astype.py
 ${PYSITELIB}/pandas/core/dtypes/astype.pyc
-${PYSITELIB}/pandas/core/dtypes/astype.pyo
 ${PYSITELIB}/pandas/core/dtypes/base.py
 ${PYSITELIB}/pandas/core/dtypes/base.pyc
-${PYSITELIB}/pandas/core/dtypes/base.pyo
 ${PYSITELIB}/pandas/core/dtypes/cast.py
 ${PYSITELIB}/pandas/core/dtypes/cast.pyc
-${PYSITELIB}/pandas/core/dtypes/cast.pyo
 ${PYSITELIB}/pandas/core/dtypes/common.py
 ${PYSITELIB}/pandas/core/dtypes/common.pyc
-${PYSITELIB}/pandas/core/dtypes/common.pyo
 ${PYSITELIB}/pandas/core/dtypes/concat.py
 ${PYSITELIB}/pandas/core/dtypes/concat.pyc
-${PYSITELIB}/pandas/core/dtypes/concat.pyo
 ${PYSITELIB}/pandas/core/dtypes/dtypes.py
 ${PYSITELIB}/pandas/core/dtypes/dtypes.pyc
-${PYSITELIB}/pandas/core/dtypes/dtypes.pyo
 ${PYSITELIB}/pandas/core/dtypes/generic.py
 ${PYSITELIB}/pandas/core/dtypes/generic.pyc
-${PYSITELIB}/pandas/core/dtypes/generic.pyo
 ${PYSITELIB}/pandas/core/dtypes/inference.py
 ${PYSITELIB}/pandas/core/dtypes/inference.pyc
-${PYSITELIB}/pandas/core/dtypes/inference.pyo
 ${PYSITELIB}/pandas/core/dtypes/missing.py
 ${PYSITELIB}/pandas/core/dtypes/missing.pyc
-${PYSITELIB}/pandas/core/dtypes/missing.pyo
 ${PYSITELIB}/pandas/core/flags.py
 ${PYSITELIB}/pandas/core/flags.pyc
-${PYSITELIB}/pandas/core/flags.pyo
 ${PYSITELIB}/pandas/core/frame.py
 ${PYSITELIB}/pandas/core/frame.pyc
-${PYSITELIB}/pandas/core/frame.pyo
 ${PYSITELIB}/pandas/core/generic.py
 ${PYSITELIB}/pandas/core/generic.pyc
-${PYSITELIB}/pandas/core/generic.pyo
 ${PYSITELIB}/pandas/core/groupby/__init__.py
 ${PYSITELIB}/pandas/core/groupby/__init__.pyc
-${PYSITELIB}/pandas/core/groupby/__init__.pyo
 ${PYSITELIB}/pandas/core/groupby/base.py
 ${PYSITELIB}/pandas/core/groupby/base.pyc
-${PYSITELIB}/pandas/core/groupby/base.pyo
 ${PYSITELIB}/pandas/core/groupby/categorical.py
 ${PYSITELIB}/pandas/core/groupby/categorical.pyc
-${PYSITELIB}/pandas/core/groupby/categorical.pyo
 ${PYSITELIB}/pandas/core/groupby/generic.py
 ${PYSITELIB}/pandas/core/groupby/generic.pyc
-${PYSITELIB}/pandas/core/groupby/generic.pyo
 ${PYSITELIB}/pandas/core/groupby/groupby.py
 ${PYSITELIB}/pandas/core/groupby/groupby.pyc
-${PYSITELIB}/pandas/core/groupby/groupby.pyo
 ${PYSITELIB}/pandas/core/groupby/grouper.py
 ${PYSITELIB}/pandas/core/groupby/grouper.pyc
-${PYSITELIB}/pandas/core/groupby/grouper.pyo
 ${PYSITELIB}/pandas/core/groupby/indexing.py
 ${PYSITELIB}/pandas/core/groupby/indexing.pyc
-${PYSITELIB}/pandas/core/groupby/indexing.pyo
 ${PYSITELIB}/pandas/core/groupby/numba_.py
 ${PYSITELIB}/pandas/core/groupby/numba_.pyc
-${PYSITELIB}/pandas/core/groupby/numba_.pyo
 ${PYSITELIB}/pandas/core/groupby/ops.py
 ${PYSITELIB}/pandas/core/groupby/ops.pyc
-${PYSITELIB}/pandas/core/groupby/ops.pyo
-${PYSITELIB}/pandas/core/index.py
-${PYSITELIB}/pandas/core/index.pyc
-${PYSITELIB}/pandas/core/index.pyo
 ${PYSITELIB}/pandas/core/indexers/__init__.py
 ${PYSITELIB}/pandas/core/indexers/__init__.pyc
-${PYSITELIB}/pandas/core/indexers/__init__.pyo
 ${PYSITELIB}/pandas/core/indexers/objects.py
 ${PYSITELIB}/pandas/core/indexers/objects.pyc
-${PYSITELIB}/pandas/core/indexers/objects.pyo
 ${PYSITELIB}/pandas/core/indexers/utils.py
 ${PYSITELIB}/pandas/core/indexers/utils.pyc
-${PYSITELIB}/pandas/core/indexers/utils.pyo
 ${PYSITELIB}/pandas/core/indexes/__init__.py
 ${PYSITELIB}/pandas/core/indexes/__init__.pyc
-${PYSITELIB}/pandas/core/indexes/__init__.pyo
 ${PYSITELIB}/pandas/core/indexes/accessors.py
 ${PYSITELIB}/pandas/core/indexes/accessors.pyc
-${PYSITELIB}/pandas/core/indexes/accessors.pyo
 ${PYSITELIB}/pandas/core/indexes/api.py
 ${PYSITELIB}/pandas/core/indexes/api.pyc
-${PYSITELIB}/pandas/core/indexes/api.pyo
 ${PYSITELIB}/pandas/core/indexes/base.py
 ${PYSITELIB}/pandas/core/indexes/base.pyc
-${PYSITELIB}/pandas/core/indexes/base.pyo
 ${PYSITELIB}/pandas/core/indexes/category.py
 ${PYSITELIB}/pandas/core/indexes/category.pyc
-${PYSITELIB}/pandas/core/indexes/category.pyo
 ${PYSITELIB}/pandas/core/indexes/datetimelike.py
 ${PYSITELIB}/pandas/core/indexes/datetimelike.pyc
-${PYSITELIB}/pandas/core/indexes/datetimelike.pyo
 ${PYSITELIB}/pandas/core/indexes/datetimes.py
 ${PYSITELIB}/pandas/core/indexes/datetimes.pyc
-${PYSITELIB}/pandas/core/indexes/datetimes.pyo
 ${PYSITELIB}/pandas/core/indexes/extension.py
 ${PYSITELIB}/pandas/core/indexes/extension.pyc
-${PYSITELIB}/pandas/core/indexes/extension.pyo
 ${PYSITELIB}/pandas/core/indexes/frozen.py
 ${PYSITELIB}/pandas/core/indexes/frozen.pyc
-${PYSITELIB}/pandas/core/indexes/frozen.pyo
 ${PYSITELIB}/pandas/core/indexes/interval.py
 ${PYSITELIB}/pandas/core/indexes/interval.pyc
-${PYSITELIB}/pandas/core/indexes/interval.pyo
 ${PYSITELIB}/pandas/core/indexes/multi.py
 ${PYSITELIB}/pandas/core/indexes/multi.pyc
-${PYSITELIB}/pandas/core/indexes/multi.pyo
-${PYSITELIB}/pandas/core/indexes/numeric.py
-${PYSITELIB}/pandas/core/indexes/numeric.pyc
-${PYSITELIB}/pandas/core/indexes/numeric.pyo
 ${PYSITELIB}/pandas/core/indexes/period.py
 ${PYSITELIB}/pandas/core/indexes/period.pyc
-${PYSITELIB}/pandas/core/indexes/period.pyo
 ${PYSITELIB}/pandas/core/indexes/range.py
 ${PYSITELIB}/pandas/core/indexes/range.pyc
-${PYSITELIB}/pandas/core/indexes/range.pyo
 ${PYSITELIB}/pandas/core/indexes/timedeltas.py
 ${PYSITELIB}/pandas/core/indexes/timedeltas.pyc
-${PYSITELIB}/pandas/core/indexes/timedeltas.pyo
 ${PYSITELIB}/pandas/core/indexing.py
 ${PYSITELIB}/pandas/core/indexing.pyc
-${PYSITELIB}/pandas/core/indexing.pyo
 ${PYSITELIB}/pandas/core/interchange/__init__.py
 ${PYSITELIB}/pandas/core/interchange/__init__.pyc
-${PYSITELIB}/pandas/core/interchange/__init__.pyo
 ${PYSITELIB}/pandas/core/interchange/buffer.py
 ${PYSITELIB}/pandas/core/interchange/buffer.pyc
-${PYSITELIB}/pandas/core/interchange/buffer.pyo
 ${PYSITELIB}/pandas/core/interchange/column.py
 ${PYSITELIB}/pandas/core/interchange/column.pyc
-${PYSITELIB}/pandas/core/interchange/column.pyo
 ${PYSITELIB}/pandas/core/interchange/dataframe.py
 ${PYSITELIB}/pandas/core/interchange/dataframe.pyc
-${PYSITELIB}/pandas/core/interchange/dataframe.pyo
 ${PYSITELIB}/pandas/core/interchange/dataframe_protocol.py
 ${PYSITELIB}/pandas/core/interchange/dataframe_protocol.pyc
-${PYSITELIB}/pandas/core/interchange/dataframe_protocol.pyo
 ${PYSITELIB}/pandas/core/interchange/from_dataframe.py
 ${PYSITELIB}/pandas/core/interchange/from_dataframe.pyc
-${PYSITELIB}/pandas/core/interchange/from_dataframe.pyo
 ${PYSITELIB}/pandas/core/interchange/utils.py
 ${PYSITELIB}/pandas/core/interchange/utils.pyc
-${PYSITELIB}/pandas/core/interchange/utils.pyo
 ${PYSITELIB}/pandas/core/internals/__init__.py
 ${PYSITELIB}/pandas/core/internals/__init__.pyc
-${PYSITELIB}/pandas/core/internals/__init__.pyo
 ${PYSITELIB}/pandas/core/internals/api.py
 ${PYSITELIB}/pandas/core/internals/api.pyc
-${PYSITELIB}/pandas/core/internals/api.pyo
 ${PYSITELIB}/pandas/core/internals/array_manager.py
 ${PYSITELIB}/pandas/core/internals/array_manager.pyc
-${PYSITELIB}/pandas/core/internals/array_manager.pyo
 ${PYSITELIB}/pandas/core/internals/base.py
 ${PYSITELIB}/pandas/core/internals/base.pyc
-${PYSITELIB}/pandas/core/internals/base.pyo
 ${PYSITELIB}/pandas/core/internals/blocks.py
 ${PYSITELIB}/pandas/core/internals/blocks.pyc
-${PYSITELIB}/pandas/core/internals/blocks.pyo
 ${PYSITELIB}/pandas/core/internals/concat.py
 ${PYSITELIB}/pandas/core/internals/concat.pyc
-${PYSITELIB}/pandas/core/internals/concat.pyo
 ${PYSITELIB}/pandas/core/internals/construction.py
 ${PYSITELIB}/pandas/core/internals/construction.pyc
-${PYSITELIB}/pandas/core/internals/construction.pyo
 ${PYSITELIB}/pandas/core/internals/managers.py
 ${PYSITELIB}/pandas/core/internals/managers.pyc
-${PYSITELIB}/pandas/core/internals/managers.pyo
 ${PYSITELIB}/pandas/core/internals/ops.py
 ${PYSITELIB}/pandas/core/internals/ops.pyc
-${PYSITELIB}/pandas/core/internals/ops.pyo
+${PYSITELIB}/pandas/core/methods/__init__.py
+${PYSITELIB}/pandas/core/methods/__init__.pyc
+${PYSITELIB}/pandas/core/methods/describe.py
+${PYSITELIB}/pandas/core/methods/describe.pyc
+${PYSITELIB}/pandas/core/methods/selectn.py
+${PYSITELIB}/pandas/core/methods/selectn.pyc
+${PYSITELIB}/pandas/core/methods/to_dict.py
+${PYSITELIB}/pandas/core/methods/to_dict.pyc
 ${PYSITELIB}/pandas/core/missing.py
 ${PYSITELIB}/pandas/core/missing.pyc
-${PYSITELIB}/pandas/core/missing.pyo
 ${PYSITELIB}/pandas/core/nanops.py
 ${PYSITELIB}/pandas/core/nanops.pyc
-${PYSITELIB}/pandas/core/nanops.pyo
 ${PYSITELIB}/pandas/core/ops/__init__.py
 ${PYSITELIB}/pandas/core/ops/__init__.pyc
-${PYSITELIB}/pandas/core/ops/__init__.pyo
 ${PYSITELIB}/pandas/core/ops/array_ops.py
 ${PYSITELIB}/pandas/core/ops/array_ops.pyc
-${PYSITELIB}/pandas/core/ops/array_ops.pyo
 ${PYSITELIB}/pandas/core/ops/common.py
 ${PYSITELIB}/pandas/core/ops/common.pyc
-${PYSITELIB}/pandas/core/ops/common.pyo
 ${PYSITELIB}/pandas/core/ops/dispatch.py
 ${PYSITELIB}/pandas/core/ops/dispatch.pyc
-${PYSITELIB}/pandas/core/ops/dispatch.pyo
 ${PYSITELIB}/pandas/core/ops/docstrings.py
 ${PYSITELIB}/pandas/core/ops/docstrings.pyc
-${PYSITELIB}/pandas/core/ops/docstrings.pyo
 ${PYSITELIB}/pandas/core/ops/invalid.py
 ${PYSITELIB}/pandas/core/ops/invalid.pyc
-${PYSITELIB}/pandas/core/ops/invalid.pyo
 ${PYSITELIB}/pandas/core/ops/mask_ops.py
 ${PYSITELIB}/pandas/core/ops/mask_ops.pyc
-${PYSITELIB}/pandas/core/ops/mask_ops.pyo
 ${PYSITELIB}/pandas/core/ops/methods.py
 ${PYSITELIB}/pandas/core/ops/methods.pyc
-${PYSITELIB}/pandas/core/ops/methods.pyo
 ${PYSITELIB}/pandas/core/ops/missing.py
 ${PYSITELIB}/pandas/core/ops/missing.pyc
-${PYSITELIB}/pandas/core/ops/missing.pyo
 ${PYSITELIB}/pandas/core/resample.py
 ${PYSITELIB}/pandas/core/resample.pyc
-${PYSITELIB}/pandas/core/resample.pyo
 ${PYSITELIB}/pandas/core/reshape/__init__.py
 ${PYSITELIB}/pandas/core/reshape/__init__.pyc
-${PYSITELIB}/pandas/core/reshape/__init__.pyo
 ${PYSITELIB}/pandas/core/reshape/api.py
 ${PYSITELIB}/pandas/core/reshape/api.pyc
-${PYSITELIB}/pandas/core/reshape/api.pyo
 ${PYSITELIB}/pandas/core/reshape/concat.py
 ${PYSITELIB}/pandas/core/reshape/concat.pyc
-${PYSITELIB}/pandas/core/reshape/concat.pyo
 ${PYSITELIB}/pandas/core/reshape/encoding.py
 ${PYSITELIB}/pandas/core/reshape/encoding.pyc
-${PYSITELIB}/pandas/core/reshape/encoding.pyo
 ${PYSITELIB}/pandas/core/reshape/melt.py
 ${PYSITELIB}/pandas/core/reshape/melt.pyc
-${PYSITELIB}/pandas/core/reshape/melt.pyo
 ${PYSITELIB}/pandas/core/reshape/merge.py
 ${PYSITELIB}/pandas/core/reshape/merge.pyc
-${PYSITELIB}/pandas/core/reshape/merge.pyo
 ${PYSITELIB}/pandas/core/reshape/pivot.py
 ${PYSITELIB}/pandas/core/reshape/pivot.pyc
-${PYSITELIB}/pandas/core/reshape/pivot.pyo
 ${PYSITELIB}/pandas/core/reshape/reshape.py
 ${PYSITELIB}/pandas/core/reshape/reshape.pyc
-${PYSITELIB}/pandas/core/reshape/reshape.pyo
 ${PYSITELIB}/pandas/core/reshape/tile.py
 ${PYSITELIB}/pandas/core/reshape/tile.pyc
-${PYSITELIB}/pandas/core/reshape/tile.pyo
 ${PYSITELIB}/pandas/core/reshape/util.py
 ${PYSITELIB}/pandas/core/reshape/util.pyc
-${PYSITELIB}/pandas/core/reshape/util.pyo
 ${PYSITELIB}/pandas/core/roperator.py
 ${PYSITELIB}/pandas/core/roperator.pyc
-${PYSITELIB}/pandas/core/roperator.pyo
 ${PYSITELIB}/pandas/core/sample.py
 ${PYSITELIB}/pandas/core/sample.pyc
-${PYSITELIB}/pandas/core/sample.pyo
 ${PYSITELIB}/pandas/core/series.py
 ${PYSITELIB}/pandas/core/series.pyc
-${PYSITELIB}/pandas/core/series.pyo
 ${PYSITELIB}/pandas/core/shared_docs.py
 ${PYSITELIB}/pandas/core/shared_docs.pyc
-${PYSITELIB}/pandas/core/shared_docs.pyo
 ${PYSITELIB}/pandas/core/sorting.py
 ${PYSITELIB}/pandas/core/sorting.pyc
-${PYSITELIB}/pandas/core/sorting.pyo
 ${PYSITELIB}/pandas/core/sparse/__init__.py
 ${PYSITELIB}/pandas/core/sparse/__init__.pyc
-${PYSITELIB}/pandas/core/sparse/__init__.pyo
 ${PYSITELIB}/pandas/core/sparse/api.py
 ${PYSITELIB}/pandas/core/sparse/api.pyc
-${PYSITELIB}/pandas/core/sparse/api.pyo
 ${PYSITELIB}/pandas/core/strings/__init__.py
 ${PYSITELIB}/pandas/core/strings/__init__.pyc
-${PYSITELIB}/pandas/core/strings/__init__.pyo
 ${PYSITELIB}/pandas/core/strings/accessor.py
 ${PYSITELIB}/pandas/core/strings/accessor.pyc
-${PYSITELIB}/pandas/core/strings/accessor.pyo
 ${PYSITELIB}/pandas/core/strings/base.py
 ${PYSITELIB}/pandas/core/strings/base.pyc
-${PYSITELIB}/pandas/core/strings/base.pyo
 ${PYSITELIB}/pandas/core/strings/object_array.py
 ${PYSITELIB}/pandas/core/strings/object_array.pyc
-${PYSITELIB}/pandas/core/strings/object_array.pyo
 ${PYSITELIB}/pandas/core/tools/__init__.py
 ${PYSITELIB}/pandas/core/tools/__init__.pyc
-${PYSITELIB}/pandas/core/tools/__init__.pyo
 ${PYSITELIB}/pandas/core/tools/datetimes.py
 ${PYSITELIB}/pandas/core/tools/datetimes.pyc
-${PYSITELIB}/pandas/core/tools/datetimes.pyo
 ${PYSITELIB}/pandas/core/tools/numeric.py
 ${PYSITELIB}/pandas/core/tools/numeric.pyc
-${PYSITELIB}/pandas/core/tools/numeric.pyo
 ${PYSITELIB}/pandas/core/tools/timedeltas.py
 ${PYSITELIB}/pandas/core/tools/timedeltas.pyc
-${PYSITELIB}/pandas/core/tools/timedeltas.pyo
 ${PYSITELIB}/pandas/core/tools/times.py
 ${PYSITELIB}/pandas/core/tools/times.pyc
-${PYSITELIB}/pandas/core/tools/times.pyo
 ${PYSITELIB}/pandas/core/util/__init__.py
 ${PYSITELIB}/pandas/core/util/__init__.pyc
-${PYSITELIB}/pandas/core/util/__init__.pyo
 ${PYSITELIB}/pandas/core/util/hashing.py
 ${PYSITELIB}/pandas/core/util/hashing.pyc
-${PYSITELIB}/pandas/core/util/hashing.pyo
 ${PYSITELIB}/pandas/core/util/numba_.py
 ${PYSITELIB}/pandas/core/util/numba_.pyc
-${PYSITELIB}/pandas/core/util/numba_.pyo
 ${PYSITELIB}/pandas/core/window/__init__.py
 ${PYSITELIB}/pandas/core/window/__init__.pyc
-${PYSITELIB}/pandas/core/window/__init__.pyo
 ${PYSITELIB}/pandas/core/window/common.py
 ${PYSITELIB}/pandas/core/window/common.pyc
-${PYSITELIB}/pandas/core/window/common.pyo
 ${PYSITELIB}/pandas/core/window/doc.py
 ${PYSITELIB}/pandas/core/window/doc.pyc
-${PYSITELIB}/pandas/core/window/doc.pyo
 ${PYSITELIB}/pandas/core/window/ewm.py
 ${PYSITELIB}/pandas/core/window/ewm.pyc
-${PYSITELIB}/pandas/core/window/ewm.pyo
 ${PYSITELIB}/pandas/core/window/expanding.py
 ${PYSITELIB}/pandas/core/window/expanding.pyc
-${PYSITELIB}/pandas/core/window/expanding.pyo
 ${PYSITELIB}/pandas/core/window/numba_.py
 ${PYSITELIB}/pandas/core/window/numba_.pyc
-${PYSITELIB}/pandas/core/window/numba_.pyo
 ${PYSITELIB}/pandas/core/window/online.py
 ${PYSITELIB}/pandas/core/window/online.pyc
-${PYSITELIB}/pandas/core/window/online.pyo
 ${PYSITELIB}/pandas/core/window/rolling.py
 ${PYSITELIB}/pandas/core/window/rolling.pyc
-${PYSITELIB}/pandas/core/window/rolling.pyo
 ${PYSITELIB}/pandas/errors/__init__.py
 ${PYSITELIB}/pandas/errors/__init__.pyc
-${PYSITELIB}/pandas/errors/__init__.pyo
 ${PYSITELIB}/pandas/io/__init__.py
 ${PYSITELIB}/pandas/io/__init__.pyc
-${PYSITELIB}/pandas/io/__init__.pyo
+${PYSITELIB}/pandas/io/_util.py
+${PYSITELIB}/pandas/io/_util.pyc
 ${PYSITELIB}/pandas/io/api.py
 ${PYSITELIB}/pandas/io/api.pyc
-${PYSITELIB}/pandas/io/api.pyo
 ${PYSITELIB}/pandas/io/clipboard/__init__.py
 ${PYSITELIB}/pandas/io/clipboard/__init__.pyc
-${PYSITELIB}/pandas/io/clipboard/__init__.pyo
 ${PYSITELIB}/pandas/io/clipboards.py
 ${PYSITELIB}/pandas/io/clipboards.pyc
-${PYSITELIB}/pandas/io/clipboards.pyo
 ${PYSITELIB}/pandas/io/common.py
 ${PYSITELIB}/pandas/io/common.pyc
-${PYSITELIB}/pandas/io/common.pyo
-${PYSITELIB}/pandas/io/date_converters.py
-${PYSITELIB}/pandas/io/date_converters.pyc
-${PYSITELIB}/pandas/io/date_converters.pyo
 ${PYSITELIB}/pandas/io/excel/__init__.py
 ${PYSITELIB}/pandas/io/excel/__init__.pyc
-${PYSITELIB}/pandas/io/excel/__init__.pyo
 ${PYSITELIB}/pandas/io/excel/_base.py
 ${PYSITELIB}/pandas/io/excel/_base.pyc
-${PYSITELIB}/pandas/io/excel/_base.pyo
 ${PYSITELIB}/pandas/io/excel/_odfreader.py
 ${PYSITELIB}/pandas/io/excel/_odfreader.pyc
-${PYSITELIB}/pandas/io/excel/_odfreader.pyo
 ${PYSITELIB}/pandas/io/excel/_odswriter.py
 ${PYSITELIB}/pandas/io/excel/_odswriter.pyc
-${PYSITELIB}/pandas/io/excel/_odswriter.pyo
 ${PYSITELIB}/pandas/io/excel/_openpyxl.py
 ${PYSITELIB}/pandas/io/excel/_openpyxl.pyc
-${PYSITELIB}/pandas/io/excel/_openpyxl.pyo
 ${PYSITELIB}/pandas/io/excel/_pyxlsb.py
 ${PYSITELIB}/pandas/io/excel/_pyxlsb.pyc
-${PYSITELIB}/pandas/io/excel/_pyxlsb.pyo
 ${PYSITELIB}/pandas/io/excel/_util.py
 ${PYSITELIB}/pandas/io/excel/_util.pyc
-${PYSITELIB}/pandas/io/excel/_util.pyo
 ${PYSITELIB}/pandas/io/excel/_xlrd.py
 ${PYSITELIB}/pandas/io/excel/_xlrd.pyc
-${PYSITELIB}/pandas/io/excel/_xlrd.pyo
 ${PYSITELIB}/pandas/io/excel/_xlsxwriter.py
 ${PYSITELIB}/pandas/io/excel/_xlsxwriter.pyc
-${PYSITELIB}/pandas/io/excel/_xlsxwriter.pyo
-${PYSITELIB}/pandas/io/excel/_xlwt.py
-${PYSITELIB}/pandas/io/excel/_xlwt.pyc
-${PYSITELIB}/pandas/io/excel/_xlwt.pyo
 ${PYSITELIB}/pandas/io/feather_format.py
 ${PYSITELIB}/pandas/io/feather_format.pyc
-${PYSITELIB}/pandas/io/feather_format.pyo
 ${PYSITELIB}/pandas/io/formats/__init__.py
 ${PYSITELIB}/pandas/io/formats/__init__.pyc
-${PYSITELIB}/pandas/io/formats/__init__.pyo
 ${PYSITELIB}/pandas/io/formats/_color_data.py
 ${PYSITELIB}/pandas/io/formats/_color_data.pyc
-${PYSITELIB}/pandas/io/formats/_color_data.pyo
 ${PYSITELIB}/pandas/io/formats/console.py
 ${PYSITELIB}/pandas/io/formats/console.pyc
-${PYSITELIB}/pandas/io/formats/console.pyo
 ${PYSITELIB}/pandas/io/formats/css.py
 ${PYSITELIB}/pandas/io/formats/css.pyc
-${PYSITELIB}/pandas/io/formats/css.pyo
 ${PYSITELIB}/pandas/io/formats/csvs.py
 ${PYSITELIB}/pandas/io/formats/csvs.pyc
-${PYSITELIB}/pandas/io/formats/csvs.pyo
 ${PYSITELIB}/pandas/io/formats/excel.py
 ${PYSITELIB}/pandas/io/formats/excel.pyc
-${PYSITELIB}/pandas/io/formats/excel.pyo
 ${PYSITELIB}/pandas/io/formats/format.py
 ${PYSITELIB}/pandas/io/formats/format.pyc
-${PYSITELIB}/pandas/io/formats/format.pyo
 ${PYSITELIB}/pandas/io/formats/html.py
 ${PYSITELIB}/pandas/io/formats/html.pyc
-${PYSITELIB}/pandas/io/formats/html.pyo
 ${PYSITELIB}/pandas/io/formats/info.py
 ${PYSITELIB}/pandas/io/formats/info.pyc
-${PYSITELIB}/pandas/io/formats/info.pyo
 ${PYSITELIB}/pandas/io/formats/latex.py
 ${PYSITELIB}/pandas/io/formats/latex.pyc
-${PYSITELIB}/pandas/io/formats/latex.pyo
 ${PYSITELIB}/pandas/io/formats/printing.py
 ${PYSITELIB}/pandas/io/formats/printing.pyc
-${PYSITELIB}/pandas/io/formats/printing.pyo
 ${PYSITELIB}/pandas/io/formats/string.py
 ${PYSITELIB}/pandas/io/formats/string.pyc
-${PYSITELIB}/pandas/io/formats/string.pyo
 ${PYSITELIB}/pandas/io/formats/style.py
 ${PYSITELIB}/pandas/io/formats/style.pyc
-${PYSITELIB}/pandas/io/formats/style.pyo
 ${PYSITELIB}/pandas/io/formats/style_render.py
 ${PYSITELIB}/pandas/io/formats/style_render.pyc
-${PYSITELIB}/pandas/io/formats/style_render.pyo
 ${PYSITELIB}/pandas/io/formats/templates/html.tpl
 ${PYSITELIB}/pandas/io/formats/templates/html_style.tpl
 ${PYSITELIB}/pandas/io/formats/templates/html_table.tpl
@@ -886,1942 +656,1320 @@ ${PYSITELIB}/pandas/io/formats/templates
 ${PYSITELIB}/pandas/io/formats/templates/string.tpl
 ${PYSITELIB}/pandas/io/formats/xml.py
 ${PYSITELIB}/pandas/io/formats/xml.pyc
-${PYSITELIB}/pandas/io/formats/xml.pyo
 ${PYSITELIB}/pandas/io/gbq.py
 ${PYSITELIB}/pandas/io/gbq.pyc
-${PYSITELIB}/pandas/io/gbq.pyo
 ${PYSITELIB}/pandas/io/html.py
 ${PYSITELIB}/pandas/io/html.pyc
-${PYSITELIB}/pandas/io/html.pyo
 ${PYSITELIB}/pandas/io/json/__init__.py
 ${PYSITELIB}/pandas/io/json/__init__.pyc
-${PYSITELIB}/pandas/io/json/__init__.pyo
 ${PYSITELIB}/pandas/io/json/_json.py
 ${PYSITELIB}/pandas/io/json/_json.pyc
-${PYSITELIB}/pandas/io/json/_json.pyo
 ${PYSITELIB}/pandas/io/json/_normalize.py
 ${PYSITELIB}/pandas/io/json/_normalize.pyc
-${PYSITELIB}/pandas/io/json/_normalize.pyo
 ${PYSITELIB}/pandas/io/json/_table_schema.py
 ${PYSITELIB}/pandas/io/json/_table_schema.pyc
-${PYSITELIB}/pandas/io/json/_table_schema.pyo
 ${PYSITELIB}/pandas/io/orc.py
 ${PYSITELIB}/pandas/io/orc.pyc
-${PYSITELIB}/pandas/io/orc.pyo
 ${PYSITELIB}/pandas/io/parquet.py
 ${PYSITELIB}/pandas/io/parquet.pyc
-${PYSITELIB}/pandas/io/parquet.pyo
 ${PYSITELIB}/pandas/io/parsers/__init__.py
 ${PYSITELIB}/pandas/io/parsers/__init__.pyc
-${PYSITELIB}/pandas/io/parsers/__init__.pyo
 ${PYSITELIB}/pandas/io/parsers/arrow_parser_wrapper.py
 ${PYSITELIB}/pandas/io/parsers/arrow_parser_wrapper.pyc
-${PYSITELIB}/pandas/io/parsers/arrow_parser_wrapper.pyo
 ${PYSITELIB}/pandas/io/parsers/base_parser.py
 ${PYSITELIB}/pandas/io/parsers/base_parser.pyc
-${PYSITELIB}/pandas/io/parsers/base_parser.pyo
 ${PYSITELIB}/pandas/io/parsers/c_parser_wrapper.py
 ${PYSITELIB}/pandas/io/parsers/c_parser_wrapper.pyc
-${PYSITELIB}/pandas/io/parsers/c_parser_wrapper.pyo
 ${PYSITELIB}/pandas/io/parsers/python_parser.py
 ${PYSITELIB}/pandas/io/parsers/python_parser.pyc
-${PYSITELIB}/pandas/io/parsers/python_parser.pyo
 ${PYSITELIB}/pandas/io/parsers/readers.py
 ${PYSITELIB}/pandas/io/parsers/readers.pyc
-${PYSITELIB}/pandas/io/parsers/readers.pyo
 ${PYSITELIB}/pandas/io/pickle.py
 ${PYSITELIB}/pandas/io/pickle.pyc
-${PYSITELIB}/pandas/io/pickle.pyo
 ${PYSITELIB}/pandas/io/pytables.py
 ${PYSITELIB}/pandas/io/pytables.pyc
-${PYSITELIB}/pandas/io/pytables.pyo
 ${PYSITELIB}/pandas/io/sas/__init__.py
 ${PYSITELIB}/pandas/io/sas/__init__.pyc
-${PYSITELIB}/pandas/io/sas/__init__.pyo
+${PYSITELIB}/pandas/io/sas/_byteswap.pyi
+${PYSITELIB}/pandas/io/sas/_byteswap.so
 ${PYSITELIB}/pandas/io/sas/_sas.pyi
 ${PYSITELIB}/pandas/io/sas/_sas.so
+${PYSITELIB}/pandas/io/sas/byteswap.pyx
 ${PYSITELIB}/pandas/io/sas/sas.pyx
 ${PYSITELIB}/pandas/io/sas/sas7bdat.py
 ${PYSITELIB}/pandas/io/sas/sas7bdat.pyc
-${PYSITELIB}/pandas/io/sas/sas7bdat.pyo
 ${PYSITELIB}/pandas/io/sas/sas_constants.py
 ${PYSITELIB}/pandas/io/sas/sas_constants.pyc
-${PYSITELIB}/pandas/io/sas/sas_constants.pyo
 ${PYSITELIB}/pandas/io/sas/sas_xport.py
 ${PYSITELIB}/pandas/io/sas/sas_xport.pyc
-${PYSITELIB}/pandas/io/sas/sas_xport.pyo
 ${PYSITELIB}/pandas/io/sas/sasreader.py
 ${PYSITELIB}/pandas/io/sas/sasreader.pyc
-${PYSITELIB}/pandas/io/sas/sasreader.pyo
 ${PYSITELIB}/pandas/io/spss.py
 ${PYSITELIB}/pandas/io/spss.pyc
-${PYSITELIB}/pandas/io/spss.pyo
 ${PYSITELIB}/pandas/io/sql.py
 ${PYSITELIB}/pandas/io/sql.pyc
-${PYSITELIB}/pandas/io/sql.pyo
 ${PYSITELIB}/pandas/io/stata.py
 ${PYSITELIB}/pandas/io/stata.pyc
-${PYSITELIB}/pandas/io/stata.pyo
 ${PYSITELIB}/pandas/io/xml.py
 ${PYSITELIB}/pandas/io/xml.pyc
-${PYSITELIB}/pandas/io/xml.pyo
 ${PYSITELIB}/pandas/plotting/__init__.py
 ${PYSITELIB}/pandas/plotting/__init__.pyc
-${PYSITELIB}/pandas/plotting/__init__.pyo
 ${PYSITELIB}/pandas/plotting/_core.py
 ${PYSITELIB}/pandas/plotting/_core.pyc
-${PYSITELIB}/pandas/plotting/_core.pyo
 ${PYSITELIB}/pandas/plotting/_matplotlib/__init__.py
 ${PYSITELIB}/pandas/plotting/_matplotlib/__init__.pyc
-${PYSITELIB}/pandas/plotting/_matplotlib/__init__.pyo
 ${PYSITELIB}/pandas/plotting/_matplotlib/boxplot.py
 ${PYSITELIB}/pandas/plotting/_matplotlib/boxplot.pyc
-${PYSITELIB}/pandas/plotting/_matplotlib/boxplot.pyo
-${PYSITELIB}/pandas/plotting/_matplotlib/compat.py
-${PYSITELIB}/pandas/plotting/_matplotlib/compat.pyc
-${PYSITELIB}/pandas/plotting/_matplotlib/compat.pyo
 ${PYSITELIB}/pandas/plotting/_matplotlib/converter.py
 ${PYSITELIB}/pandas/plotting/_matplotlib/converter.pyc
-${PYSITELIB}/pandas/plotting/_matplotlib/converter.pyo
 ${PYSITELIB}/pandas/plotting/_matplotlib/core.py
 ${PYSITELIB}/pandas/plotting/_matplotlib/core.pyc
-${PYSITELIB}/pandas/plotting/_matplotlib/core.pyo
 ${PYSITELIB}/pandas/plotting/_matplotlib/groupby.py
 ${PYSITELIB}/pandas/plotting/_matplotlib/groupby.pyc
-${PYSITELIB}/pandas/plotting/_matplotlib/groupby.pyo
 ${PYSITELIB}/pandas/plotting/_matplotlib/hist.py
 ${PYSITELIB}/pandas/plotting/_matplotlib/hist.pyc
-${PYSITELIB}/pandas/plotting/_matplotlib/hist.pyo
 ${PYSITELIB}/pandas/plotting/_matplotlib/misc.py
 ${PYSITELIB}/pandas/plotting/_matplotlib/misc.pyc
-${PYSITELIB}/pandas/plotting/_matplotlib/misc.pyo
 ${PYSITELIB}/pandas/plotting/_matplotlib/style.py
 ${PYSITELIB}/pandas/plotting/_matplotlib/style.pyc
-${PYSITELIB}/pandas/plotting/_matplotlib/style.pyo
 ${PYSITELIB}/pandas/plotting/_matplotlib/timeseries.py
 ${PYSITELIB}/pandas/plotting/_matplotlib/timeseries.pyc
-${PYSITELIB}/pandas/plotting/_matplotlib/timeseries.pyo
 ${PYSITELIB}/pandas/plotting/_matplotlib/tools.py
 ${PYSITELIB}/pandas/plotting/_matplotlib/tools.pyc
-${PYSITELIB}/pandas/plotting/_matplotlib/tools.pyo
 ${PYSITELIB}/pandas/plotting/_misc.py
 ${PYSITELIB}/pandas/plotting/_misc.pyc
-${PYSITELIB}/pandas/plotting/_misc.pyo
 ${PYSITELIB}/pandas/testing.py
 ${PYSITELIB}/pandas/testing.pyc
-${PYSITELIB}/pandas/testing.pyo
 ${PYSITELIB}/pandas/tests/__init__.py
 ${PYSITELIB}/pandas/tests/__init__.pyc
-${PYSITELIB}/pandas/tests/__init__.pyo
 ${PYSITELIB}/pandas/tests/api/__init__.py
 ${PYSITELIB}/pandas/tests/api/__init__.pyc
-${PYSITELIB}/pandas/tests/api/__init__.pyo
 ${PYSITELIB}/pandas/tests/api/test_api.py
 ${PYSITELIB}/pandas/tests/api/test_api.pyc
-${PYSITELIB}/pandas/tests/api/test_api.pyo
 ${PYSITELIB}/pandas/tests/api/test_types.py
 ${PYSITELIB}/pandas/tests/api/test_types.pyc
-${PYSITELIB}/pandas/tests/api/test_types.pyo
 ${PYSITELIB}/pandas/tests/apply/__init__.py
 ${PYSITELIB}/pandas/tests/apply/__init__.pyc
-${PYSITELIB}/pandas/tests/apply/__init__.pyo
 ${PYSITELIB}/pandas/tests/apply/common.py
 ${PYSITELIB}/pandas/tests/apply/common.pyc
-${PYSITELIB}/pandas/tests/apply/common.pyo
 ${PYSITELIB}/pandas/tests/apply/conftest.py
 ${PYSITELIB}/pandas/tests/apply/conftest.pyc
-${PYSITELIB}/pandas/tests/apply/conftest.pyo
 ${PYSITELIB}/pandas/tests/apply/test_frame_apply.py
 ${PYSITELIB}/pandas/tests/apply/test_frame_apply.pyc
-${PYSITELIB}/pandas/tests/apply/test_frame_apply.pyo
 ${PYSITELIB}/pandas/tests/apply/test_frame_apply_relabeling.py
 ${PYSITELIB}/pandas/tests/apply/test_frame_apply_relabeling.pyc
-${PYSITELIB}/pandas/tests/apply/test_frame_apply_relabeling.pyo
 ${PYSITELIB}/pandas/tests/apply/test_frame_transform.py
 ${PYSITELIB}/pandas/tests/apply/test_frame_transform.pyc
-${PYSITELIB}/pandas/tests/apply/test_frame_transform.pyo
 ${PYSITELIB}/pandas/tests/apply/test_invalid_arg.py
 ${PYSITELIB}/pandas/tests/apply/test_invalid_arg.pyc
-${PYSITELIB}/pandas/tests/apply/test_invalid_arg.pyo
 ${PYSITELIB}/pandas/tests/apply/test_series_apply.py
 ${PYSITELIB}/pandas/tests/apply/test_series_apply.pyc
-${PYSITELIB}/pandas/tests/apply/test_series_apply.pyo
 ${PYSITELIB}/pandas/tests/apply/test_series_apply_relabeling.py
 ${PYSITELIB}/pandas/tests/apply/test_series_apply_relabeling.pyc
-${PYSITELIB}/pandas/tests/apply/test_series_apply_relabeling.pyo
 ${PYSITELIB}/pandas/tests/apply/test_series_transform.py
 ${PYSITELIB}/pandas/tests/apply/test_series_transform.pyc
-${PYSITELIB}/pandas/tests/apply/test_series_transform.pyo
 ${PYSITELIB}/pandas/tests/apply/test_str.py
 ${PYSITELIB}/pandas/tests/apply/test_str.pyc
-${PYSITELIB}/pandas/tests/apply/test_str.pyo
 ${PYSITELIB}/pandas/tests/arithmetic/__init__.py
 ${PYSITELIB}/pandas/tests/arithmetic/__init__.pyc
-${PYSITELIB}/pandas/tests/arithmetic/__init__.pyo
 ${PYSITELIB}/pandas/tests/arithmetic/common.py
 ${PYSITELIB}/pandas/tests/arithmetic/common.pyc
-${PYSITELIB}/pandas/tests/arithmetic/common.pyo
 ${PYSITELIB}/pandas/tests/arithmetic/conftest.py
 ${PYSITELIB}/pandas/tests/arithmetic/conftest.pyc
-${PYSITELIB}/pandas/tests/arithmetic/conftest.pyo
 ${PYSITELIB}/pandas/tests/arithmetic/test_array_ops.py
 ${PYSITELIB}/pandas/tests/arithmetic/test_array_ops.pyc
-${PYSITELIB}/pandas/tests/arithmetic/test_array_ops.pyo
 ${PYSITELIB}/pandas/tests/arithmetic/test_categorical.py
 ${PYSITELIB}/pandas/tests/arithmetic/test_categorical.pyc
-${PYSITELIB}/pandas/tests/arithmetic/test_categorical.pyo
 ${PYSITELIB}/pandas/tests/arithmetic/test_datetime64.py
 ${PYSITELIB}/pandas/tests/arithmetic/test_datetime64.pyc
-${PYSITELIB}/pandas/tests/arithmetic/test_datetime64.pyo
 ${PYSITELIB}/pandas/tests/arithmetic/test_interval.py
 ${PYSITELIB}/pandas/tests/arithmetic/test_interval.pyc
-${PYSITELIB}/pandas/tests/arithmetic/test_interval.pyo
 ${PYSITELIB}/pandas/tests/arithmetic/test_numeric.py
 ${PYSITELIB}/pandas/tests/arithmetic/test_numeric.pyc
-${PYSITELIB}/pandas/tests/arithmetic/test_numeric.pyo
 ${PYSITELIB}/pandas/tests/arithmetic/test_object.py
 ${PYSITELIB}/pandas/tests/arithmetic/test_object.pyc
-${PYSITELIB}/pandas/tests/arithmetic/test_object.pyo
 ${PYSITELIB}/pandas/tests/arithmetic/test_period.py
 ${PYSITELIB}/pandas/tests/arithmetic/test_period.pyc
-${PYSITELIB}/pandas/tests/arithmetic/test_period.pyo
 ${PYSITELIB}/pandas/tests/arithmetic/test_timedelta64.py
 ${PYSITELIB}/pandas/tests/arithmetic/test_timedelta64.pyc
-${PYSITELIB}/pandas/tests/arithmetic/test_timedelta64.pyo
 ${PYSITELIB}/pandas/tests/arrays/__init__.py
 ${PYSITELIB}/pandas/tests/arrays/__init__.pyc
-${PYSITELIB}/pandas/tests/arrays/__init__.pyo
 ${PYSITELIB}/pandas/tests/arrays/boolean/__init__.py
 ${PYSITELIB}/pandas/tests/arrays/boolean/__init__.pyc
-${PYSITELIB}/pandas/tests/arrays/boolean/__init__.pyo
 ${PYSITELIB}/pandas/tests/arrays/boolean/test_arithmetic.py
 ${PYSITELIB}/pandas/tests/arrays/boolean/test_arithmetic.pyc
-${PYSITELIB}/pandas/tests/arrays/boolean/test_arithmetic.pyo
 ${PYSITELIB}/pandas/tests/arrays/boolean/test_astype.py
 ${PYSITELIB}/pandas/tests/arrays/boolean/test_astype.pyc
-${PYSITELIB}/pandas/tests/arrays/boolean/test_astype.pyo
 ${PYSITELIB}/pandas/tests/arrays/boolean/test_comparison.py
 ${PYSITELIB}/pandas/tests/arrays/boolean/test_comparison.pyc
-${PYSITELIB}/pandas/tests/arrays/boolean/test_comparison.pyo
 ${PYSITELIB}/pandas/tests/arrays/boolean/test_construction.py
 ${PYSITELIB}/pandas/tests/arrays/boolean/test_construction.pyc
-${PYSITELIB}/pandas/tests/arrays/boolean/test_construction.pyo
 ${PYSITELIB}/pandas/tests/arrays/boolean/test_function.py
 ${PYSITELIB}/pandas/tests/arrays/boolean/test_function.pyc
-${PYSITELIB}/pandas/tests/arrays/boolean/test_function.pyo
 ${PYSITELIB}/pandas/tests/arrays/boolean/test_indexing.py
 ${PYSITELIB}/pandas/tests/arrays/boolean/test_indexing.pyc
-${PYSITELIB}/pandas/tests/arrays/boolean/test_indexing.pyo
 ${PYSITELIB}/pandas/tests/arrays/boolean/test_logical.py
 ${PYSITELIB}/pandas/tests/arrays/boolean/test_logical.pyc
-${PYSITELIB}/pandas/tests/arrays/boolean/test_logical.pyo
 ${PYSITELIB}/pandas/tests/arrays/boolean/test_ops.py
 ${PYSITELIB}/pandas/tests/arrays/boolean/test_ops.pyc
-${PYSITELIB}/pandas/tests/arrays/boolean/test_ops.pyo
 ${PYSITELIB}/pandas/tests/arrays/boolean/test_reduction.py
 ${PYSITELIB}/pandas/tests/arrays/boolean/test_reduction.pyc
-${PYSITELIB}/pandas/tests/arrays/boolean/test_reduction.pyo
 ${PYSITELIB}/pandas/tests/arrays/boolean/test_repr.py
 ${PYSITELIB}/pandas/tests/arrays/boolean/test_repr.pyc
-${PYSITELIB}/pandas/tests/arrays/boolean/test_repr.pyo
 ${PYSITELIB}/pandas/tests/arrays/categorical/__init__.py
 ${PYSITELIB}/pandas/tests/arrays/categorical/__init__.pyc
-${PYSITELIB}/pandas/tests/arrays/categorical/__init__.pyo
 ${PYSITELIB}/pandas/tests/arrays/categorical/conftest.py
 ${PYSITELIB}/pandas/tests/arrays/categorical/conftest.pyc
-${PYSITELIB}/pandas/tests/arrays/categorical/conftest.pyo
 ${PYSITELIB}/pandas/tests/arrays/categorical/test_algos.py
 ${PYSITELIB}/pandas/tests/arrays/categorical/test_algos.pyc
-${PYSITELIB}/pandas/tests/arrays/categorical/test_algos.pyo
 ${PYSITELIB}/pandas/tests/arrays/categorical/test_analytics.py
 ${PYSITELIB}/pandas/tests/arrays/categorical/test_analytics.pyc
-${PYSITELIB}/pandas/tests/arrays/categorical/test_analytics.pyo
 ${PYSITELIB}/pandas/tests/arrays/categorical/test_api.py
 ${PYSITELIB}/pandas/tests/arrays/categorical/test_api.pyc
-${PYSITELIB}/pandas/tests/arrays/categorical/test_api.pyo
 ${PYSITELIB}/pandas/tests/arrays/categorical/test_astype.py
 ${PYSITELIB}/pandas/tests/arrays/categorical/test_astype.pyc
-${PYSITELIB}/pandas/tests/arrays/categorical/test_astype.pyo
 ${PYSITELIB}/pandas/tests/arrays/categorical/test_constructors.py
 ${PYSITELIB}/pandas/tests/arrays/categorical/test_constructors.pyc
-${PYSITELIB}/pandas/tests/arrays/categorical/test_constructors.pyo
 ${PYSITELIB}/pandas/tests/arrays/categorical/test_dtypes.py
 ${PYSITELIB}/pandas/tests/arrays/categorical/test_dtypes.pyc
-${PYSITELIB}/pandas/tests/arrays/categorical/test_dtypes.pyo
 ${PYSITELIB}/pandas/tests/arrays/categorical/test_indexing.py
 ${PYSITELIB}/pandas/tests/arrays/categorical/test_indexing.pyc
-${PYSITELIB}/pandas/tests/arrays/categorical/test_indexing.pyo
 ${PYSITELIB}/pandas/tests/arrays/categorical/test_missing.py
 ${PYSITELIB}/pandas/tests/arrays/categorical/test_missing.pyc
-${PYSITELIB}/pandas/tests/arrays/categorical/test_missing.pyo
 ${PYSITELIB}/pandas/tests/arrays/categorical/test_operators.py
 ${PYSITELIB}/pandas/tests/arrays/categorical/test_operators.pyc
-${PYSITELIB}/pandas/tests/arrays/categorical/test_operators.pyo
 ${PYSITELIB}/pandas/tests/arrays/categorical/test_replace.py
 ${PYSITELIB}/pandas/tests/arrays/categorical/test_replace.pyc
-${PYSITELIB}/pandas/tests/arrays/categorical/test_replace.pyo
 ${PYSITELIB}/pandas/tests/arrays/categorical/test_repr.py
 ${PYSITELIB}/pandas/tests/arrays/categorical/test_repr.pyc
-${PYSITELIB}/pandas/tests/arrays/categorical/test_repr.pyo
 ${PYSITELIB}/pandas/tests/arrays/categorical/test_sorting.py
 ${PYSITELIB}/pandas/tests/arrays/categorical/test_sorting.pyc
-${PYSITELIB}/pandas/tests/arrays/categorical/test_sorting.pyo
 ${PYSITELIB}/pandas/tests/arrays/categorical/test_subclass.py
 ${PYSITELIB}/pandas/tests/arrays/categorical/test_subclass.pyc
-${PYSITELIB}/pandas/tests/arrays/categorical/test_subclass.pyo
 ${PYSITELIB}/pandas/tests/arrays/categorical/test_take.py
 ${PYSITELIB}/pandas/tests/arrays/categorical/test_take.pyc
-${PYSITELIB}/pandas/tests/arrays/categorical/test_take.pyo
 ${PYSITELIB}/pandas/tests/arrays/categorical/test_warnings.py
 ${PYSITELIB}/pandas/tests/arrays/categorical/test_warnings.pyc
-${PYSITELIB}/pandas/tests/arrays/categorical/test_warnings.pyo
 ${PYSITELIB}/pandas/tests/arrays/datetimes/__init__.py
 ${PYSITELIB}/pandas/tests/arrays/datetimes/__init__.pyc
-${PYSITELIB}/pandas/tests/arrays/datetimes/__init__.pyo
 ${PYSITELIB}/pandas/tests/arrays/datetimes/test_constructors.py
 ${PYSITELIB}/pandas/tests/arrays/datetimes/test_constructors.pyc
-${PYSITELIB}/pandas/tests/arrays/datetimes/test_constructors.pyo
+${PYSITELIB}/pandas/tests/arrays/datetimes/test_cumulative.py
+${PYSITELIB}/pandas/tests/arrays/datetimes/test_cumulative.pyc
 ${PYSITELIB}/pandas/tests/arrays/datetimes/test_reductions.py
 ${PYSITELIB}/pandas/tests/arrays/datetimes/test_reductions.pyc
-${PYSITELIB}/pandas/tests/arrays/datetimes/test_reductions.pyo
 ${PYSITELIB}/pandas/tests/arrays/floating/__init__.py
 ${PYSITELIB}/pandas/tests/arrays/floating/__init__.pyc
-${PYSITELIB}/pandas/tests/arrays/floating/__init__.pyo
 ${PYSITELIB}/pandas/tests/arrays/floating/conftest.py
 ${PYSITELIB}/pandas/tests/arrays/floating/conftest.pyc
-${PYSITELIB}/pandas/tests/arrays/floating/conftest.pyo
 ${PYSITELIB}/pandas/tests/arrays/floating/test_arithmetic.py
 ${PYSITELIB}/pandas/tests/arrays/floating/test_arithmetic.pyc
-${PYSITELIB}/pandas/tests/arrays/floating/test_arithmetic.pyo
 ${PYSITELIB}/pandas/tests/arrays/floating/test_astype.py
 ${PYSITELIB}/pandas/tests/arrays/floating/test_astype.pyc
-${PYSITELIB}/pandas/tests/arrays/floating/test_astype.pyo
 ${PYSITELIB}/pandas/tests/arrays/floating/test_comparison.py
 ${PYSITELIB}/pandas/tests/arrays/floating/test_comparison.pyc
-${PYSITELIB}/pandas/tests/arrays/floating/test_comparison.pyo
 ${PYSITELIB}/pandas/tests/arrays/floating/test_concat.py
 ${PYSITELIB}/pandas/tests/arrays/floating/test_concat.pyc
-${PYSITELIB}/pandas/tests/arrays/floating/test_concat.pyo
 ${PYSITELIB}/pandas/tests/arrays/floating/test_construction.py
 ${PYSITELIB}/pandas/tests/arrays/floating/test_construction.pyc
-${PYSITELIB}/pandas/tests/arrays/floating/test_construction.pyo
 ${PYSITELIB}/pandas/tests/arrays/floating/test_function.py
 ${PYSITELIB}/pandas/tests/arrays/floating/test_function.pyc
-${PYSITELIB}/pandas/tests/arrays/floating/test_function.pyo
 ${PYSITELIB}/pandas/tests/arrays/floating/test_repr.py
 ${PYSITELIB}/pandas/tests/arrays/floating/test_repr.pyc
-${PYSITELIB}/pandas/tests/arrays/floating/test_repr.pyo
 ${PYSITELIB}/pandas/tests/arrays/floating/test_to_numpy.py
 ${PYSITELIB}/pandas/tests/arrays/floating/test_to_numpy.pyc
-${PYSITELIB}/pandas/tests/arrays/floating/test_to_numpy.pyo
 ${PYSITELIB}/pandas/tests/arrays/integer/__init__.py
 ${PYSITELIB}/pandas/tests/arrays/integer/__init__.pyc
-${PYSITELIB}/pandas/tests/arrays/integer/__init__.pyo
 ${PYSITELIB}/pandas/tests/arrays/integer/conftest.py
 ${PYSITELIB}/pandas/tests/arrays/integer/conftest.pyc
-${PYSITELIB}/pandas/tests/arrays/integer/conftest.pyo
 ${PYSITELIB}/pandas/tests/arrays/integer/test_arithmetic.py
 ${PYSITELIB}/pandas/tests/arrays/integer/test_arithmetic.pyc
-${PYSITELIB}/pandas/tests/arrays/integer/test_arithmetic.pyo
 ${PYSITELIB}/pandas/tests/arrays/integer/test_comparison.py
 ${PYSITELIB}/pandas/tests/arrays/integer/test_comparison.pyc
-${PYSITELIB}/pandas/tests/arrays/integer/test_comparison.pyo
 ${PYSITELIB}/pandas/tests/arrays/integer/test_concat.py
 ${PYSITELIB}/pandas/tests/arrays/integer/test_concat.pyc
-${PYSITELIB}/pandas/tests/arrays/integer/test_concat.pyo
 ${PYSITELIB}/pandas/tests/arrays/integer/test_construction.py
 ${PYSITELIB}/pandas/tests/arrays/integer/test_construction.pyc
-${PYSITELIB}/pandas/tests/arrays/integer/test_construction.pyo
 ${PYSITELIB}/pandas/tests/arrays/integer/test_dtypes.py
 ${PYSITELIB}/pandas/tests/arrays/integer/test_dtypes.pyc
-${PYSITELIB}/pandas/tests/arrays/integer/test_dtypes.pyo
 ${PYSITELIB}/pandas/tests/arrays/integer/test_function.py
 ${PYSITELIB}/pandas/tests/arrays/integer/test_function.pyc
-${PYSITELIB}/pandas/tests/arrays/integer/test_function.pyo
 ${PYSITELIB}/pandas/tests/arrays/integer/test_indexing.py
 ${PYSITELIB}/pandas/tests/arrays/integer/test_indexing.pyc
-${PYSITELIB}/pandas/tests/arrays/integer/test_indexing.pyo
 ${PYSITELIB}/pandas/tests/arrays/integer/test_repr.py
 ${PYSITELIB}/pandas/tests/arrays/integer/test_repr.pyc
-${PYSITELIB}/pandas/tests/arrays/integer/test_repr.pyo
 ${PYSITELIB}/pandas/tests/arrays/interval/__init__.py
 ${PYSITELIB}/pandas/tests/arrays/interval/__init__.pyc
-${PYSITELIB}/pandas/tests/arrays/interval/__init__.pyo
 ${PYSITELIB}/pandas/tests/arrays/interval/test_astype.py
 ${PYSITELIB}/pandas/tests/arrays/interval/test_astype.pyc
-${PYSITELIB}/pandas/tests/arrays/interval/test_astype.pyo
 ${PYSITELIB}/pandas/tests/arrays/interval/test_interval.py
 ${PYSITELIB}/pandas/tests/arrays/interval/test_interval.pyc
-${PYSITELIB}/pandas/tests/arrays/interval/test_interval.pyo
 ${PYSITELIB}/pandas/tests/arrays/interval/test_ops.py
 ${PYSITELIB}/pandas/tests/arrays/interval/test_ops.pyc
-${PYSITELIB}/pandas/tests/arrays/interval/test_ops.pyo
 ${PYSITELIB}/pandas/tests/arrays/masked/__init__.py
 ${PYSITELIB}/pandas/tests/arrays/masked/__init__.pyc
-${PYSITELIB}/pandas/tests/arrays/masked/__init__.pyo
 ${PYSITELIB}/pandas/tests/arrays/masked/test_arithmetic.py
 ${PYSITELIB}/pandas/tests/arrays/masked/test_arithmetic.pyc
-${PYSITELIB}/pandas/tests/arrays/masked/test_arithmetic.pyo
 ${PYSITELIB}/pandas/tests/arrays/masked/test_arrow_compat.py
 ${PYSITELIB}/pandas/tests/arrays/masked/test_arrow_compat.pyc
-${PYSITELIB}/pandas/tests/arrays/masked/test_arrow_compat.pyo
 ${PYSITELIB}/pandas/tests/arrays/masked/test_function.py
 ${PYSITELIB}/pandas/tests/arrays/masked/test_function.pyc
-${PYSITELIB}/pandas/tests/arrays/masked/test_function.pyo
 ${PYSITELIB}/pandas/tests/arrays/masked/test_indexing.py
 ${PYSITELIB}/pandas/tests/arrays/masked/test_indexing.pyc
-${PYSITELIB}/pandas/tests/arrays/masked/test_indexing.pyo
 ${PYSITELIB}/pandas/tests/arrays/masked_shared.py
 ${PYSITELIB}/pandas/tests/arrays/masked_shared.pyc
-${PYSITELIB}/pandas/tests/arrays/masked_shared.pyo
 ${PYSITELIB}/pandas/tests/arrays/numpy_/__init__.py
 ${PYSITELIB}/pandas/tests/arrays/numpy_/__init__.pyc
-${PYSITELIB}/pandas/tests/arrays/numpy_/__init__.pyo
 ${PYSITELIB}/pandas/tests/arrays/numpy_/test_indexing.py
 ${PYSITELIB}/pandas/tests/arrays/numpy_/test_indexing.pyc
-${PYSITELIB}/pandas/tests/arrays/numpy_/test_indexing.pyo
 ${PYSITELIB}/pandas/tests/arrays/numpy_/test_numpy.py
 ${PYSITELIB}/pandas/tests/arrays/numpy_/test_numpy.pyc
-${PYSITELIB}/pandas/tests/arrays/numpy_/test_numpy.pyo
 ${PYSITELIB}/pandas/tests/arrays/period/__init__.py
 ${PYSITELIB}/pandas/tests/arrays/period/__init__.pyc
-${PYSITELIB}/pandas/tests/arrays/period/__init__.pyo
 ${PYSITELIB}/pandas/tests/arrays/period/test_arrow_compat.py
 ${PYSITELIB}/pandas/tests/arrays/period/test_arrow_compat.pyc
-${PYSITELIB}/pandas/tests/arrays/period/test_arrow_compat.pyo
 ${PYSITELIB}/pandas/tests/arrays/period/test_astype.py
 ${PYSITELIB}/pandas/tests/arrays/period/test_astype.pyc
-${PYSITELIB}/pandas/tests/arrays/period/test_astype.pyo
 ${PYSITELIB}/pandas/tests/arrays/period/test_constructors.py
 ${PYSITELIB}/pandas/tests/arrays/period/test_constructors.pyc
-${PYSITELIB}/pandas/tests/arrays/period/test_constructors.pyo
 ${PYSITELIB}/pandas/tests/arrays/period/test_reductions.py
 ${PYSITELIB}/pandas/tests/arrays/period/test_reductions.pyc
-${PYSITELIB}/pandas/tests/arrays/period/test_reductions.pyo
 ${PYSITELIB}/pandas/tests/arrays/sparse/__init__.py
 ${PYSITELIB}/pandas/tests/arrays/sparse/__init__.pyc
-${PYSITELIB}/pandas/tests/arrays/sparse/__init__.pyo
 ${PYSITELIB}/pandas/tests/arrays/sparse/test_accessor.py
 ${PYSITELIB}/pandas/tests/arrays/sparse/test_accessor.pyc
-${PYSITELIB}/pandas/tests/arrays/sparse/test_accessor.pyo
 ${PYSITELIB}/pandas/tests/arrays/sparse/test_arithmetics.py
 ${PYSITELIB}/pandas/tests/arrays/sparse/test_arithmetics.pyc
-${PYSITELIB}/pandas/tests/arrays/sparse/test_arithmetics.pyo
 ${PYSITELIB}/pandas/tests/arrays/sparse/test_array.py
 ${PYSITELIB}/pandas/tests/arrays/sparse/test_array.pyc
-${PYSITELIB}/pandas/tests/arrays/sparse/test_array.pyo
 ${PYSITELIB}/pandas/tests/arrays/sparse/test_astype.py
 ${PYSITELIB}/pandas/tests/arrays/sparse/test_astype.pyc
-${PYSITELIB}/pandas/tests/arrays/sparse/test_astype.pyo
 ${PYSITELIB}/pandas/tests/arrays/sparse/test_combine_concat.py
 ${PYSITELIB}/pandas/tests/arrays/sparse/test_combine_concat.pyc
-${PYSITELIB}/pandas/tests/arrays/sparse/test_combine_concat.pyo
 ${PYSITELIB}/pandas/tests/arrays/sparse/test_constructors.py
 ${PYSITELIB}/pandas/tests/arrays/sparse/test_constructors.pyc
-${PYSITELIB}/pandas/tests/arrays/sparse/test_constructors.pyo
 ${PYSITELIB}/pandas/tests/arrays/sparse/test_dtype.py
 ${PYSITELIB}/pandas/tests/arrays/sparse/test_dtype.pyc
-${PYSITELIB}/pandas/tests/arrays/sparse/test_dtype.pyo
 ${PYSITELIB}/pandas/tests/arrays/sparse/test_indexing.py
 ${PYSITELIB}/pandas/tests/arrays/sparse/test_indexing.pyc
-${PYSITELIB}/pandas/tests/arrays/sparse/test_indexing.pyo
 ${PYSITELIB}/pandas/tests/arrays/sparse/test_libsparse.py
 ${PYSITELIB}/pandas/tests/arrays/sparse/test_libsparse.pyc
-${PYSITELIB}/pandas/tests/arrays/sparse/test_libsparse.pyo
 ${PYSITELIB}/pandas/tests/arrays/sparse/test_reductions.py
 ${PYSITELIB}/pandas/tests/arrays/sparse/test_reductions.pyc
-${PYSITELIB}/pandas/tests/arrays/sparse/test_reductions.pyo
 ${PYSITELIB}/pandas/tests/arrays/sparse/test_unary.py
 ${PYSITELIB}/pandas/tests/arrays/sparse/test_unary.pyc
-${PYSITELIB}/pandas/tests/arrays/sparse/test_unary.pyo
 ${PYSITELIB}/pandas/tests/arrays/string_/__init__.py
 ${PYSITELIB}/pandas/tests/arrays/string_/__init__.pyc
-${PYSITELIB}/pandas/tests/arrays/string_/__init__.pyo
 ${PYSITELIB}/pandas/tests/arrays/string_/test_string.py
 ${PYSITELIB}/pandas/tests/arrays/string_/test_string.pyc
-${PYSITELIB}/pandas/tests/arrays/string_/test_string.pyo
 ${PYSITELIB}/pandas/tests/arrays/string_/test_string_arrow.py
 ${PYSITELIB}/pandas/tests/arrays/string_/test_string_arrow.pyc
-${PYSITELIB}/pandas/tests/arrays/string_/test_string_arrow.pyo
 ${PYSITELIB}/pandas/tests/arrays/test_array.py
 ${PYSITELIB}/pandas/tests/arrays/test_array.pyc
-${PYSITELIB}/pandas/tests/arrays/test_array.pyo
 ${PYSITELIB}/pandas/tests/arrays/test_datetimelike.py
 ${PYSITELIB}/pandas/tests/arrays/test_datetimelike.pyc
-${PYSITELIB}/pandas/tests/arrays/test_datetimelike.pyo
 ${PYSITELIB}/pandas/tests/arrays/test_datetimes.py
 ${PYSITELIB}/pandas/tests/arrays/test_datetimes.pyc
-${PYSITELIB}/pandas/tests/arrays/test_datetimes.pyo
 ${PYSITELIB}/pandas/tests/arrays/test_ndarray_backed.py
 ${PYSITELIB}/pandas/tests/arrays/test_ndarray_backed.pyc
-${PYSITELIB}/pandas/tests/arrays/test_ndarray_backed.pyo
 ${PYSITELIB}/pandas/tests/arrays/test_period.py
 ${PYSITELIB}/pandas/tests/arrays/test_period.pyc
-${PYSITELIB}/pandas/tests/arrays/test_period.pyo
 ${PYSITELIB}/pandas/tests/arrays/test_timedeltas.py
 ${PYSITELIB}/pandas/tests/arrays/test_timedeltas.pyc
-${PYSITELIB}/pandas/tests/arrays/test_timedeltas.pyo
 ${PYSITELIB}/pandas/tests/arrays/timedeltas/__init__.py
 ${PYSITELIB}/pandas/tests/arrays/timedeltas/__init__.pyc
-${PYSITELIB}/pandas/tests/arrays/timedeltas/__init__.pyo
 ${PYSITELIB}/pandas/tests/arrays/timedeltas/test_constructors.py
 ${PYSITELIB}/pandas/tests/arrays/timedeltas/test_constructors.pyc
-${PYSITELIB}/pandas/tests/arrays/timedeltas/test_constructors.pyo
+${PYSITELIB}/pandas/tests/arrays/timedeltas/test_cumulative.py
+${PYSITELIB}/pandas/tests/arrays/timedeltas/test_cumulative.pyc
 ${PYSITELIB}/pandas/tests/arrays/timedeltas/test_reductions.py
 ${PYSITELIB}/pandas/tests/arrays/timedeltas/test_reductions.pyc
-${PYSITELIB}/pandas/tests/arrays/timedeltas/test_reductions.pyo
 ${PYSITELIB}/pandas/tests/base/__init__.py
 ${PYSITELIB}/pandas/tests/base/__init__.pyc
-${PYSITELIB}/pandas/tests/base/__init__.pyo
 ${PYSITELIB}/pandas/tests/base/common.py
 ${PYSITELIB}/pandas/tests/base/common.pyc
-${PYSITELIB}/pandas/tests/base/common.pyo
 ${PYSITELIB}/pandas/tests/base/test_constructors.py
 ${PYSITELIB}/pandas/tests/base/test_constructors.pyc
-${PYSITELIB}/pandas/tests/base/test_constructors.pyo
 ${PYSITELIB}/pandas/tests/base/test_conversion.py
 ${PYSITELIB}/pandas/tests/base/test_conversion.pyc
-${PYSITELIB}/pandas/tests/base/test_conversion.pyo
 ${PYSITELIB}/pandas/tests/base/test_fillna.py
 ${PYSITELIB}/pandas/tests/base/test_fillna.pyc
-${PYSITELIB}/pandas/tests/base/test_fillna.pyo
 ${PYSITELIB}/pandas/tests/base/test_misc.py
 ${PYSITELIB}/pandas/tests/base/test_misc.pyc
-${PYSITELIB}/pandas/tests/base/test_misc.pyo
 ${PYSITELIB}/pandas/tests/base/test_transpose.py
 ${PYSITELIB}/pandas/tests/base/test_transpose.pyc
-${PYSITELIB}/pandas/tests/base/test_transpose.pyo
 ${PYSITELIB}/pandas/tests/base/test_unique.py
 ${PYSITELIB}/pandas/tests/base/test_unique.pyc
-${PYSITELIB}/pandas/tests/base/test_unique.pyo
 ${PYSITELIB}/pandas/tests/base/test_value_counts.py
 ${PYSITELIB}/pandas/tests/base/test_value_counts.pyc
-${PYSITELIB}/pandas/tests/base/test_value_counts.pyo
 ${PYSITELIB}/pandas/tests/computation/__init__.py
 ${PYSITELIB}/pandas/tests/computation/__init__.pyc
-${PYSITELIB}/pandas/tests/computation/__init__.pyo
 ${PYSITELIB}/pandas/tests/computation/test_compat.py
 ${PYSITELIB}/pandas/tests/computation/test_compat.pyc
-${PYSITELIB}/pandas/tests/computation/test_compat.pyo
 ${PYSITELIB}/pandas/tests/computation/test_eval.py
 ${PYSITELIB}/pandas/tests/computation/test_eval.pyc
-${PYSITELIB}/pandas/tests/computation/test_eval.pyo
 ${PYSITELIB}/pandas/tests/config/__init__.py
 ${PYSITELIB}/pandas/tests/config/__init__.pyc
-${PYSITELIB}/pandas/tests/config/__init__.pyo
 ${PYSITELIB}/pandas/tests/config/test_config.py
 ${PYSITELIB}/pandas/tests/config/test_config.pyc
-${PYSITELIB}/pandas/tests/config/test_config.pyo
 ${PYSITELIB}/pandas/tests/config/test_localization.py
 ${PYSITELIB}/pandas/tests/config/test_localization.pyc
-${PYSITELIB}/pandas/tests/config/test_localization.pyo
 ${PYSITELIB}/pandas/tests/construction/__init__.py
 ${PYSITELIB}/pandas/tests/construction/__init__.pyc
-${PYSITELIB}/pandas/tests/construction/__init__.pyo
 ${PYSITELIB}/pandas/tests/construction/test_extract_array.py
 ${PYSITELIB}/pandas/tests/construction/test_extract_array.pyc
-${PYSITELIB}/pandas/tests/construction/test_extract_array.pyo
 ${PYSITELIB}/pandas/tests/copy_view/__init__.py
 ${PYSITELIB}/pandas/tests/copy_view/__init__.pyc
-${PYSITELIB}/pandas/tests/copy_view/__init__.pyo
+${PYSITELIB}/pandas/tests/copy_view/index/__init__.py
+${PYSITELIB}/pandas/tests/copy_view/index/__init__.pyc
+${PYSITELIB}/pandas/tests/copy_view/index/test_datetimeindex.py
+${PYSITELIB}/pandas/tests/copy_view/index/test_datetimeindex.pyc
+${PYSITELIB}/pandas/tests/copy_view/index/test_index.py
+${PYSITELIB}/pandas/tests/copy_view/index/test_index.pyc
+${PYSITELIB}/pandas/tests/copy_view/index/test_periodindex.py
+${PYSITELIB}/pandas/tests/copy_view/index/test_periodindex.pyc
+${PYSITELIB}/pandas/tests/copy_view/index/test_timedeltaindex.py
+${PYSITELIB}/pandas/tests/copy_view/index/test_timedeltaindex.pyc
+${PYSITELIB}/pandas/tests/copy_view/test_array.py
+${PYSITELIB}/pandas/tests/copy_view/test_array.pyc
+${PYSITELIB}/pandas/tests/copy_view/test_astype.py
+${PYSITELIB}/pandas/tests/copy_view/test_astype.pyc
+${PYSITELIB}/pandas/tests/copy_view/test_clip.py
+${PYSITELIB}/pandas/tests/copy_view/test_clip.pyc
+${PYSITELIB}/pandas/tests/copy_view/test_constructors.py
+${PYSITELIB}/pandas/tests/copy_view/test_constructors.pyc
+${PYSITELIB}/pandas/tests/copy_view/test_core_functionalities.py
+${PYSITELIB}/pandas/tests/copy_view/test_core_functionalities.pyc
+${PYSITELIB}/pandas/tests/copy_view/test_functions.py
+${PYSITELIB}/pandas/tests/copy_view/test_functions.pyc
 ${PYSITELIB}/pandas/tests/copy_view/test_indexing.py
 ${PYSITELIB}/pandas/tests/copy_view/test_indexing.pyc
-${PYSITELIB}/pandas/tests/copy_view/test_indexing.pyo
 ${PYSITELIB}/pandas/tests/copy_view/test_internals.py
 ${PYSITELIB}/pandas/tests/copy_view/test_internals.pyc
-${PYSITELIB}/pandas/tests/copy_view/test_internals.pyo
+${PYSITELIB}/pandas/tests/copy_view/test_interp_fillna.py
+${PYSITELIB}/pandas/tests/copy_view/test_interp_fillna.pyc
 ${PYSITELIB}/pandas/tests/copy_view/test_methods.py
 ${PYSITELIB}/pandas/tests/copy_view/test_methods.pyc
-${PYSITELIB}/pandas/tests/copy_view/test_methods.pyo
+${PYSITELIB}/pandas/tests/copy_view/test_replace.py
+${PYSITELIB}/pandas/tests/copy_view/test_replace.pyc
 ${PYSITELIB}/pandas/tests/copy_view/test_setitem.py
 ${PYSITELIB}/pandas/tests/copy_view/test_setitem.pyc
-${PYSITELIB}/pandas/tests/copy_view/test_setitem.pyo
+${PYSITELIB}/pandas/tests/copy_view/test_util.py
+${PYSITELIB}/pandas/tests/copy_view/test_util.pyc
 ${PYSITELIB}/pandas/tests/copy_view/util.py
 ${PYSITELIB}/pandas/tests/copy_view/util.pyc
-${PYSITELIB}/pandas/tests/copy_view/util.pyo
 ${PYSITELIB}/pandas/tests/dtypes/__init__.py
 ${PYSITELIB}/pandas/tests/dtypes/__init__.pyc
-${PYSITELIB}/pandas/tests/dtypes/__init__.pyo
 ${PYSITELIB}/pandas/tests/dtypes/cast/__init__.py
 ${PYSITELIB}/pandas/tests/dtypes/cast/__init__.pyc
-${PYSITELIB}/pandas/tests/dtypes/cast/__init__.pyo
 ${PYSITELIB}/pandas/tests/dtypes/cast/test_can_hold_element.py
 ${PYSITELIB}/pandas/tests/dtypes/cast/test_can_hold_element.pyc
-${PYSITELIB}/pandas/tests/dtypes/cast/test_can_hold_element.pyo
 ${PYSITELIB}/pandas/tests/dtypes/cast/test_construct_from_scalar.py
 ${PYSITELIB}/pandas/tests/dtypes/cast/test_construct_from_scalar.pyc
-${PYSITELIB}/pandas/tests/dtypes/cast/test_construct_from_scalar.pyo
 ${PYSITELIB}/pandas/tests/dtypes/cast/test_construct_ndarray.py
 ${PYSITELIB}/pandas/tests/dtypes/cast/test_construct_ndarray.pyc
-${PYSITELIB}/pandas/tests/dtypes/cast/test_construct_ndarray.pyo
 ${PYSITELIB}/pandas/tests/dtypes/cast/test_construct_object_arr.py
 ${PYSITELIB}/pandas/tests/dtypes/cast/test_construct_object_arr.pyc
-${PYSITELIB}/pandas/tests/dtypes/cast/test_construct_object_arr.pyo
 ${PYSITELIB}/pandas/tests/dtypes/cast/test_dict_compat.py
 ${PYSITELIB}/pandas/tests/dtypes/cast/test_dict_compat.pyc
-${PYSITELIB}/pandas/tests/dtypes/cast/test_dict_compat.pyo
 ${PYSITELIB}/pandas/tests/dtypes/cast/test_downcast.py
 ${PYSITELIB}/pandas/tests/dtypes/cast/test_downcast.pyc
-${PYSITELIB}/pandas/tests/dtypes/cast/test_downcast.pyo
 ${PYSITELIB}/pandas/tests/dtypes/cast/test_find_common_type.py
 ${PYSITELIB}/pandas/tests/dtypes/cast/test_find_common_type.pyc
-${PYSITELIB}/pandas/tests/dtypes/cast/test_find_common_type.pyo
 ${PYSITELIB}/pandas/tests/dtypes/cast/test_infer_datetimelike.py
 ${PYSITELIB}/pandas/tests/dtypes/cast/test_infer_datetimelike.pyc
-${PYSITELIB}/pandas/tests/dtypes/cast/test_infer_datetimelike.pyo
 ${PYSITELIB}/pandas/tests/dtypes/cast/test_infer_dtype.py
 ${PYSITELIB}/pandas/tests/dtypes/cast/test_infer_dtype.pyc
-${PYSITELIB}/pandas/tests/dtypes/cast/test_infer_dtype.pyo
 ${PYSITELIB}/pandas/tests/dtypes/cast/test_maybe_box_native.py
 ${PYSITELIB}/pandas/tests/dtypes/cast/test_maybe_box_native.pyc
-${PYSITELIB}/pandas/tests/dtypes/cast/test_maybe_box_native.pyo
 ${PYSITELIB}/pandas/tests/dtypes/cast/test_promote.py
 ${PYSITELIB}/pandas/tests/dtypes/cast/test_promote.pyc
-${PYSITELIB}/pandas/tests/dtypes/cast/test_promote.pyo
 ${PYSITELIB}/pandas/tests/dtypes/test_common.py
 ${PYSITELIB}/pandas/tests/dtypes/test_common.pyc
-${PYSITELIB}/pandas/tests/dtypes/test_common.pyo
 ${PYSITELIB}/pandas/tests/dtypes/test_concat.py
 ${PYSITELIB}/pandas/tests/dtypes/test_concat.pyc
-${PYSITELIB}/pandas/tests/dtypes/test_concat.pyo
 ${PYSITELIB}/pandas/tests/dtypes/test_dtypes.py
 ${PYSITELIB}/pandas/tests/dtypes/test_dtypes.pyc
-${PYSITELIB}/pandas/tests/dtypes/test_dtypes.pyo
 ${PYSITELIB}/pandas/tests/dtypes/test_generic.py
 ${PYSITELIB}/pandas/tests/dtypes/test_generic.pyc
-${PYSITELIB}/pandas/tests/dtypes/test_generic.pyo
 ${PYSITELIB}/pandas/tests/dtypes/test_inference.py
 ${PYSITELIB}/pandas/tests/dtypes/test_inference.pyc
-${PYSITELIB}/pandas/tests/dtypes/test_inference.pyo
 ${PYSITELIB}/pandas/tests/dtypes/test_missing.py
 ${PYSITELIB}/pandas/tests/dtypes/test_missing.pyc
-${PYSITELIB}/pandas/tests/dtypes/test_missing.pyo
 ${PYSITELIB}/pandas/tests/extension/__init__.py
 ${PYSITELIB}/pandas/tests/extension/__init__.pyc
-${PYSITELIB}/pandas/tests/extension/__init__.pyo
 ${PYSITELIB}/pandas/tests/extension/array_with_attr/__init__.py
 ${PYSITELIB}/pandas/tests/extension/array_with_attr/__init__.pyc
-${PYSITELIB}/pandas/tests/extension/array_with_attr/__init__.pyo
 ${PYSITELIB}/pandas/tests/extension/array_with_attr/array.py
 ${PYSITELIB}/pandas/tests/extension/array_with_attr/array.pyc
-${PYSITELIB}/pandas/tests/extension/array_with_attr/array.pyo
 ${PYSITELIB}/pandas/tests/extension/array_with_attr/test_array_with_attr.py
 ${PYSITELIB}/pandas/tests/extension/array_with_attr/test_array_with_attr.pyc
-${PYSITELIB}/pandas/tests/extension/array_with_attr/test_array_with_attr.pyo
-${PYSITELIB}/pandas/tests/extension/arrow/__init__.py
-${PYSITELIB}/pandas/tests/extension/arrow/__init__.pyc
-${PYSITELIB}/pandas/tests/extension/arrow/__init__.pyo
-${PYSITELIB}/pandas/tests/extension/arrow/arrays.py
-${PYSITELIB}/pandas/tests/extension/arrow/arrays.pyc
-${PYSITELIB}/pandas/tests/extension/arrow/arrays.pyo
-${PYSITELIB}/pandas/tests/extension/arrow/test_bool.py
-${PYSITELIB}/pandas/tests/extension/arrow/test_bool.pyc
-${PYSITELIB}/pandas/tests/extension/arrow/test_bool.pyo
-${PYSITELIB}/pandas/tests/extension/arrow/test_string.py
-${PYSITELIB}/pandas/tests/extension/arrow/test_string.pyc
-${PYSITELIB}/pandas/tests/extension/arrow/test_string.pyo
-${PYSITELIB}/pandas/tests/extension/arrow/test_timestamp.py
-${PYSITELIB}/pandas/tests/extension/arrow/test_timestamp.pyc
-${PYSITELIB}/pandas/tests/extension/arrow/test_timestamp.pyo
 ${PYSITELIB}/pandas/tests/extension/base/__init__.py
 ${PYSITELIB}/pandas/tests/extension/base/__init__.pyc
-${PYSITELIB}/pandas/tests/extension/base/__init__.pyo
+${PYSITELIB}/pandas/tests/extension/base/accumulate.py
+${PYSITELIB}/pandas/tests/extension/base/accumulate.pyc
 ${PYSITELIB}/pandas/tests/extension/base/base.py
 ${PYSITELIB}/pandas/tests/extension/base/base.pyc
-${PYSITELIB}/pandas/tests/extension/base/base.pyo
 ${PYSITELIB}/pandas/tests/extension/base/casting.py
 ${PYSITELIB}/pandas/tests/extension/base/casting.pyc
-${PYSITELIB}/pandas/tests/extension/base/casting.pyo
 ${PYSITELIB}/pandas/tests/extension/base/constructors.py
 ${PYSITELIB}/pandas/tests/extension/base/constructors.pyc
-${PYSITELIB}/pandas/tests/extension/base/constructors.pyo
 ${PYSITELIB}/pandas/tests/extension/base/dim2.py
 ${PYSITELIB}/pandas/tests/extension/base/dim2.pyc
-${PYSITELIB}/pandas/tests/extension/base/dim2.pyo
 ${PYSITELIB}/pandas/tests/extension/base/dtype.py
 ${PYSITELIB}/pandas/tests/extension/base/dtype.pyc
-${PYSITELIB}/pandas/tests/extension/base/dtype.pyo
 ${PYSITELIB}/pandas/tests/extension/base/getitem.py
 ${PYSITELIB}/pandas/tests/extension/base/getitem.pyc
-${PYSITELIB}/pandas/tests/extension/base/getitem.pyo
 ${PYSITELIB}/pandas/tests/extension/base/groupby.py
 ${PYSITELIB}/pandas/tests/extension/base/groupby.pyc
-${PYSITELIB}/pandas/tests/extension/base/groupby.pyo
 ${PYSITELIB}/pandas/tests/extension/base/index.py
 ${PYSITELIB}/pandas/tests/extension/base/index.pyc
-${PYSITELIB}/pandas/tests/extension/base/index.pyo
 ${PYSITELIB}/pandas/tests/extension/base/interface.py
 ${PYSITELIB}/pandas/tests/extension/base/interface.pyc
-${PYSITELIB}/pandas/tests/extension/base/interface.pyo
 ${PYSITELIB}/pandas/tests/extension/base/io.py
 ${PYSITELIB}/pandas/tests/extension/base/io.pyc
-${PYSITELIB}/pandas/tests/extension/base/io.pyo
 ${PYSITELIB}/pandas/tests/extension/base/methods.py
 ${PYSITELIB}/pandas/tests/extension/base/methods.pyc
-${PYSITELIB}/pandas/tests/extension/base/methods.pyo
 ${PYSITELIB}/pandas/tests/extension/base/missing.py
 ${PYSITELIB}/pandas/tests/extension/base/missing.pyc
-${PYSITELIB}/pandas/tests/extension/base/missing.pyo
 ${PYSITELIB}/pandas/tests/extension/base/ops.py
 ${PYSITELIB}/pandas/tests/extension/base/ops.pyc
-${PYSITELIB}/pandas/tests/extension/base/ops.pyo
 ${PYSITELIB}/pandas/tests/extension/base/printing.py
 ${PYSITELIB}/pandas/tests/extension/base/printing.pyc
-${PYSITELIB}/pandas/tests/extension/base/printing.pyo
 ${PYSITELIB}/pandas/tests/extension/base/reduce.py
 ${PYSITELIB}/pandas/tests/extension/base/reduce.pyc
-${PYSITELIB}/pandas/tests/extension/base/reduce.pyo
 ${PYSITELIB}/pandas/tests/extension/base/reshaping.py
 ${PYSITELIB}/pandas/tests/extension/base/reshaping.pyc
-${PYSITELIB}/pandas/tests/extension/base/reshaping.pyo
 ${PYSITELIB}/pandas/tests/extension/base/setitem.py
 ${PYSITELIB}/pandas/tests/extension/base/setitem.pyc
-${PYSITELIB}/pandas/tests/extension/base/setitem.pyo
 ${PYSITELIB}/pandas/tests/extension/conftest.py
 ${PYSITELIB}/pandas/tests/extension/conftest.pyc
-${PYSITELIB}/pandas/tests/extension/conftest.pyo
 ${PYSITELIB}/pandas/tests/extension/date/__init__.py
 ${PYSITELIB}/pandas/tests/extension/date/__init__.pyc
-${PYSITELIB}/pandas/tests/extension/date/__init__.pyo
 ${PYSITELIB}/pandas/tests/extension/date/array.py
 ${PYSITELIB}/pandas/tests/extension/date/array.pyc
-${PYSITELIB}/pandas/tests/extension/date/array.pyo
 ${PYSITELIB}/pandas/tests/extension/decimal/__init__.py
 ${PYSITELIB}/pandas/tests/extension/decimal/__init__.pyc
-${PYSITELIB}/pandas/tests/extension/decimal/__init__.pyo
 ${PYSITELIB}/pandas/tests/extension/decimal/array.py
 ${PYSITELIB}/pandas/tests/extension/decimal/array.pyc
-${PYSITELIB}/pandas/tests/extension/decimal/array.pyo
 ${PYSITELIB}/pandas/tests/extension/decimal/test_decimal.py
 ${PYSITELIB}/pandas/tests/extension/decimal/test_decimal.pyc
-${PYSITELIB}/pandas/tests/extension/decimal/test_decimal.pyo
 ${PYSITELIB}/pandas/tests/extension/json/__init__.py
 ${PYSITELIB}/pandas/tests/extension/json/__init__.pyc
-${PYSITELIB}/pandas/tests/extension/json/__init__.pyo
 ${PYSITELIB}/pandas/tests/extension/json/array.py
 ${PYSITELIB}/pandas/tests/extension/json/array.pyc
-${PYSITELIB}/pandas/tests/extension/json/array.pyo
 ${PYSITELIB}/pandas/tests/extension/json/test_json.py
 ${PYSITELIB}/pandas/tests/extension/json/test_json.pyc
-${PYSITELIB}/pandas/tests/extension/json/test_json.pyo
 ${PYSITELIB}/pandas/tests/extension/list/__init__.py
 ${PYSITELIB}/pandas/tests/extension/list/__init__.pyc
-${PYSITELIB}/pandas/tests/extension/list/__init__.pyo
 ${PYSITELIB}/pandas/tests/extension/list/array.py
 ${PYSITELIB}/pandas/tests/extension/list/array.pyc
-${PYSITELIB}/pandas/tests/extension/list/array.pyo
 ${PYSITELIB}/pandas/tests/extension/list/test_list.py
 ${PYSITELIB}/pandas/tests/extension/list/test_list.pyc
-${PYSITELIB}/pandas/tests/extension/list/test_list.pyo
 ${PYSITELIB}/pandas/tests/extension/test_arrow.py
 ${PYSITELIB}/pandas/tests/extension/test_arrow.pyc
-${PYSITELIB}/pandas/tests/extension/test_arrow.pyo
 ${PYSITELIB}/pandas/tests/extension/test_boolean.py
 ${PYSITELIB}/pandas/tests/extension/test_boolean.pyc
-${PYSITELIB}/pandas/tests/extension/test_boolean.pyo
 ${PYSITELIB}/pandas/tests/extension/test_categorical.py
 ${PYSITELIB}/pandas/tests/extension/test_categorical.pyc
-${PYSITELIB}/pandas/tests/extension/test_categorical.pyo
 ${PYSITELIB}/pandas/tests/extension/test_common.py
 ${PYSITELIB}/pandas/tests/extension/test_common.pyc
-${PYSITELIB}/pandas/tests/extension/test_common.pyo
 ${PYSITELIB}/pandas/tests/extension/test_datetime.py
 ${PYSITELIB}/pandas/tests/extension/test_datetime.pyc
-${PYSITELIB}/pandas/tests/extension/test_datetime.pyo
 ${PYSITELIB}/pandas/tests/extension/test_extension.py
 ${PYSITELIB}/pandas/tests/extension/test_extension.pyc
-${PYSITELIB}/pandas/tests/extension/test_extension.pyo
 ${PYSITELIB}/pandas/tests/extension/test_external_block.py
 ${PYSITELIB}/pandas/tests/extension/test_external_block.pyc
-${PYSITELIB}/pandas/tests/extension/test_external_block.pyo
 ${PYSITELIB}/pandas/tests/extension/test_floating.py
 ${PYSITELIB}/pandas/tests/extension/test_floating.pyc
-${PYSITELIB}/pandas/tests/extension/test_floating.pyo
 ${PYSITELIB}/pandas/tests/extension/test_integer.py
 ${PYSITELIB}/pandas/tests/extension/test_integer.pyc
-${PYSITELIB}/pandas/tests/extension/test_integer.pyo
 ${PYSITELIB}/pandas/tests/extension/test_interval.py
 ${PYSITELIB}/pandas/tests/extension/test_interval.pyc
-${PYSITELIB}/pandas/tests/extension/test_interval.pyo
 ${PYSITELIB}/pandas/tests/extension/test_numpy.py
 ${PYSITELIB}/pandas/tests/extension/test_numpy.pyc
-${PYSITELIB}/pandas/tests/extension/test_numpy.pyo
 ${PYSITELIB}/pandas/tests/extension/test_period.py
 ${PYSITELIB}/pandas/tests/extension/test_period.pyc
-${PYSITELIB}/pandas/tests/extension/test_period.pyo
 ${PYSITELIB}/pandas/tests/extension/test_sparse.py
 ${PYSITELIB}/pandas/tests/extension/test_sparse.pyc
-${PYSITELIB}/pandas/tests/extension/test_sparse.pyo
 ${PYSITELIB}/pandas/tests/extension/test_string.py
 ${PYSITELIB}/pandas/tests/extension/test_string.pyc
-${PYSITELIB}/pandas/tests/extension/test_string.pyo
 ${PYSITELIB}/pandas/tests/frame/__init__.py
 ${PYSITELIB}/pandas/tests/frame/__init__.pyc
-${PYSITELIB}/pandas/tests/frame/__init__.pyo
 ${PYSITELIB}/pandas/tests/frame/common.py
 ${PYSITELIB}/pandas/tests/frame/common.pyc
-${PYSITELIB}/pandas/tests/frame/common.pyo
 ${PYSITELIB}/pandas/tests/frame/conftest.py
 ${PYSITELIB}/pandas/tests/frame/conftest.pyc
-${PYSITELIB}/pandas/tests/frame/conftest.pyo
 ${PYSITELIB}/pandas/tests/frame/constructors/__init__.py
 ${PYSITELIB}/pandas/tests/frame/constructors/__init__.pyc
-${PYSITELIB}/pandas/tests/frame/constructors/__init__.pyo
 ${PYSITELIB}/pandas/tests/frame/constructors/test_from_dict.py
 ${PYSITELIB}/pandas/tests/frame/constructors/test_from_dict.pyc
-${PYSITELIB}/pandas/tests/frame/constructors/test_from_dict.pyo
 ${PYSITELIB}/pandas/tests/frame/constructors/test_from_records.py
 ${PYSITELIB}/pandas/tests/frame/constructors/test_from_records.pyc
-${PYSITELIB}/pandas/tests/frame/constructors/test_from_records.pyo
 ${PYSITELIB}/pandas/tests/frame/indexing/__init__.py
 ${PYSITELIB}/pandas/tests/frame/indexing/__init__.pyc
-${PYSITELIB}/pandas/tests/frame/indexing/__init__.pyo
 ${PYSITELIB}/pandas/tests/frame/indexing/test_coercion.py
 ${PYSITELIB}/pandas/tests/frame/indexing/test_coercion.pyc
-${PYSITELIB}/pandas/tests/frame/indexing/test_coercion.pyo
 ${PYSITELIB}/pandas/tests/frame/indexing/test_delitem.py
 ${PYSITELIB}/pandas/tests/frame/indexing/test_delitem.pyc
-${PYSITELIB}/pandas/tests/frame/indexing/test_delitem.pyo
 ${PYSITELIB}/pandas/tests/frame/indexing/test_get.py
 ${PYSITELIB}/pandas/tests/frame/indexing/test_get.pyc
-${PYSITELIB}/pandas/tests/frame/indexing/test_get.pyo
 ${PYSITELIB}/pandas/tests/frame/indexing/test_get_value.py
 ${PYSITELIB}/pandas/tests/frame/indexing/test_get_value.pyc
-${PYSITELIB}/pandas/tests/frame/indexing/test_get_value.pyo
 ${PYSITELIB}/pandas/tests/frame/indexing/test_getitem.py
 ${PYSITELIB}/pandas/tests/frame/indexing/test_getitem.pyc
-${PYSITELIB}/pandas/tests/frame/indexing/test_getitem.pyo
 ${PYSITELIB}/pandas/tests/frame/indexing/test_indexing.py
 ${PYSITELIB}/pandas/tests/frame/indexing/test_indexing.pyc
-${PYSITELIB}/pandas/tests/frame/indexing/test_indexing.pyo
 ${PYSITELIB}/pandas/tests/frame/indexing/test_insert.py
 ${PYSITELIB}/pandas/tests/frame/indexing/test_insert.pyc
-${PYSITELIB}/pandas/tests/frame/indexing/test_insert.pyo
-${PYSITELIB}/pandas/tests/frame/indexing/test_lookup.py
-${PYSITELIB}/pandas/tests/frame/indexing/test_lookup.pyc
-${PYSITELIB}/pandas/tests/frame/indexing/test_lookup.pyo
 ${PYSITELIB}/pandas/tests/frame/indexing/test_mask.py
 ${PYSITELIB}/pandas/tests/frame/indexing/test_mask.pyc
-${PYSITELIB}/pandas/tests/frame/indexing/test_mask.pyo
 ${PYSITELIB}/pandas/tests/frame/indexing/test_set_value.py
 ${PYSITELIB}/pandas/tests/frame/indexing/test_set_value.pyc
-${PYSITELIB}/pandas/tests/frame/indexing/test_set_value.pyo
 ${PYSITELIB}/pandas/tests/frame/indexing/test_setitem.py
 ${PYSITELIB}/pandas/tests/frame/indexing/test_setitem.pyc
-${PYSITELIB}/pandas/tests/frame/indexing/test_setitem.pyo
 ${PYSITELIB}/pandas/tests/frame/indexing/test_take.py
 ${PYSITELIB}/pandas/tests/frame/indexing/test_take.pyc
-${PYSITELIB}/pandas/tests/frame/indexing/test_take.pyo
 ${PYSITELIB}/pandas/tests/frame/indexing/test_where.py
 ${PYSITELIB}/pandas/tests/frame/indexing/test_where.pyc
-${PYSITELIB}/pandas/tests/frame/indexing/test_where.pyo
 ${PYSITELIB}/pandas/tests/frame/indexing/test_xs.py
 ${PYSITELIB}/pandas/tests/frame/indexing/test_xs.pyc
-${PYSITELIB}/pandas/tests/frame/indexing/test_xs.pyo
 ${PYSITELIB}/pandas/tests/frame/methods/__init__.py
 ${PYSITELIB}/pandas/tests/frame/methods/__init__.pyc
-${PYSITELIB}/pandas/tests/frame/methods/__init__.pyo
 ${PYSITELIB}/pandas/tests/frame/methods/test_add_prefix_suffix.py
 ${PYSITELIB}/pandas/tests/frame/methods/test_add_prefix_suffix.pyc
-${PYSITELIB}/pandas/tests/frame/methods/test_add_prefix_suffix.pyo
 ${PYSITELIB}/pandas/tests/frame/methods/test_align.py
 ${PYSITELIB}/pandas/tests/frame/methods/test_align.pyc
-${PYSITELIB}/pandas/tests/frame/methods/test_align.pyo
-${PYSITELIB}/pandas/tests/frame/methods/test_append.py
-${PYSITELIB}/pandas/tests/frame/methods/test_append.pyc
-${PYSITELIB}/pandas/tests/frame/methods/test_append.pyo
 ${PYSITELIB}/pandas/tests/frame/methods/test_asfreq.py
 ${PYSITELIB}/pandas/tests/frame/methods/test_asfreq.pyc
-${PYSITELIB}/pandas/tests/frame/methods/test_asfreq.pyo
 ${PYSITELIB}/pandas/tests/frame/methods/test_asof.py
 ${PYSITELIB}/pandas/tests/frame/methods/test_asof.pyc
-${PYSITELIB}/pandas/tests/frame/methods/test_asof.pyo
 ${PYSITELIB}/pandas/tests/frame/methods/test_assign.py
 ${PYSITELIB}/pandas/tests/frame/methods/test_assign.pyc
-${PYSITELIB}/pandas/tests/frame/methods/test_assign.pyo
 ${PYSITELIB}/pandas/tests/frame/methods/test_astype.py
 ${PYSITELIB}/pandas/tests/frame/methods/test_astype.pyc
-${PYSITELIB}/pandas/tests/frame/methods/test_astype.pyo
 ${PYSITELIB}/pandas/tests/frame/methods/test_at_time.py
 ${PYSITELIB}/pandas/tests/frame/methods/test_at_time.pyc
-${PYSITELIB}/pandas/tests/frame/methods/test_at_time.pyo
 ${PYSITELIB}/pandas/tests/frame/methods/test_between_time.py
 ${PYSITELIB}/pandas/tests/frame/methods/test_between_time.pyc
-${PYSITELIB}/pandas/tests/frame/methods/test_between_time.pyo
 ${PYSITELIB}/pandas/tests/frame/methods/test_clip.py
 ${PYSITELIB}/pandas/tests/frame/methods/test_clip.pyc
-${PYSITELIB}/pandas/tests/frame/methods/test_clip.pyo
 ${PYSITELIB}/pandas/tests/frame/methods/test_combine.py
 ${PYSITELIB}/pandas/tests/frame/methods/test_combine.pyc
-${PYSITELIB}/pandas/tests/frame/methods/test_combine.pyo
 ${PYSITELIB}/pandas/tests/frame/methods/test_combine_first.py
 ${PYSITELIB}/pandas/tests/frame/methods/test_combine_first.pyc
-${PYSITELIB}/pandas/tests/frame/methods/test_combine_first.pyo
 ${PYSITELIB}/pandas/tests/frame/methods/test_compare.py
 ${PYSITELIB}/pandas/tests/frame/methods/test_compare.pyc
-${PYSITELIB}/pandas/tests/frame/methods/test_compare.pyo
-${PYSITELIB}/pandas/tests/frame/methods/test_convert.py
-${PYSITELIB}/pandas/tests/frame/methods/test_convert.pyc
-${PYSITELIB}/pandas/tests/frame/methods/test_convert.pyo
 ${PYSITELIB}/pandas/tests/frame/methods/test_convert_dtypes.py
 ${PYSITELIB}/pandas/tests/frame/methods/test_convert_dtypes.pyc
-${PYSITELIB}/pandas/tests/frame/methods/test_convert_dtypes.pyo
 ${PYSITELIB}/pandas/tests/frame/methods/test_copy.py
 ${PYSITELIB}/pandas/tests/frame/methods/test_copy.pyc
-${PYSITELIB}/pandas/tests/frame/methods/test_copy.pyo
 ${PYSITELIB}/pandas/tests/frame/methods/test_count.py
 ${PYSITELIB}/pandas/tests/frame/methods/test_count.pyc
-${PYSITELIB}/pandas/tests/frame/methods/test_count.pyo
-${PYSITELIB}/pandas/tests/frame/methods/test_count_with_level_deprecated.py
-${PYSITELIB}/pandas/tests/frame/methods/test_count_with_level_deprecated.pyc
-${PYSITELIB}/pandas/tests/frame/methods/test_count_with_level_deprecated.pyo
 ${PYSITELIB}/pandas/tests/frame/methods/test_cov_corr.py
 ${PYSITELIB}/pandas/tests/frame/methods/test_cov_corr.pyc
-${PYSITELIB}/pandas/tests/frame/methods/test_cov_corr.pyo
 ${PYSITELIB}/pandas/tests/frame/methods/test_describe.py
 ${PYSITELIB}/pandas/tests/frame/methods/test_describe.pyc
-${PYSITELIB}/pandas/tests/frame/methods/test_describe.pyo
 ${PYSITELIB}/pandas/tests/frame/methods/test_diff.py
 ${PYSITELIB}/pandas/tests/frame/methods/test_diff.pyc
-${PYSITELIB}/pandas/tests/frame/methods/test_diff.pyo
 ${PYSITELIB}/pandas/tests/frame/methods/test_dot.py
 ${PYSITELIB}/pandas/tests/frame/methods/test_dot.pyc
-${PYSITELIB}/pandas/tests/frame/methods/test_dot.pyo
 ${PYSITELIB}/pandas/tests/frame/methods/test_drop.py
 ${PYSITELIB}/pandas/tests/frame/methods/test_drop.pyc
-${PYSITELIB}/pandas/tests/frame/methods/test_drop.pyo
 ${PYSITELIB}/pandas/tests/frame/methods/test_drop_duplicates.py
 ${PYSITELIB}/pandas/tests/frame/methods/test_drop_duplicates.pyc
-${PYSITELIB}/pandas/tests/frame/methods/test_drop_duplicates.pyo
 ${PYSITELIB}/pandas/tests/frame/methods/test_droplevel.py
 ${PYSITELIB}/pandas/tests/frame/methods/test_droplevel.pyc
-${PYSITELIB}/pandas/tests/frame/methods/test_droplevel.pyo
 ${PYSITELIB}/pandas/tests/frame/methods/test_dropna.py
 ${PYSITELIB}/pandas/tests/frame/methods/test_dropna.pyc
-${PYSITELIB}/pandas/tests/frame/methods/test_dropna.pyo
 ${PYSITELIB}/pandas/tests/frame/methods/test_dtypes.py
 ${PYSITELIB}/pandas/tests/frame/methods/test_dtypes.pyc
-${PYSITELIB}/pandas/tests/frame/methods/test_dtypes.pyo
 ${PYSITELIB}/pandas/tests/frame/methods/test_duplicated.py
 ${PYSITELIB}/pandas/tests/frame/methods/test_duplicated.pyc
-${PYSITELIB}/pandas/tests/frame/methods/test_duplicated.pyo
 ${PYSITELIB}/pandas/tests/frame/methods/test_equals.py
 ${PYSITELIB}/pandas/tests/frame/methods/test_equals.pyc
-${PYSITELIB}/pandas/tests/frame/methods/test_equals.pyo
 ${PYSITELIB}/pandas/tests/frame/methods/test_explode.py
 ${PYSITELIB}/pandas/tests/frame/methods/test_explode.pyc
-${PYSITELIB}/pandas/tests/frame/methods/test_explode.pyo
 ${PYSITELIB}/pandas/tests/frame/methods/test_fillna.py
 ${PYSITELIB}/pandas/tests/frame/methods/test_fillna.pyc
-${PYSITELIB}/pandas/tests/frame/methods/test_fillna.pyo
 ${PYSITELIB}/pandas/tests/frame/methods/test_filter.py
 ${PYSITELIB}/pandas/tests/frame/methods/test_filter.pyc
-${PYSITELIB}/pandas/tests/frame/methods/test_filter.pyo
 ${PYSITELIB}/pandas/tests/frame/methods/test_first_and_last.py
 ${PYSITELIB}/pandas/tests/frame/methods/test_first_and_last.pyc
-${PYSITELIB}/pandas/tests/frame/methods/test_first_and_last.pyo
 ${PYSITELIB}/pandas/tests/frame/methods/test_first_valid_index.py
 ${PYSITELIB}/pandas/tests/frame/methods/test_first_valid_index.pyc
-${PYSITELIB}/pandas/tests/frame/methods/test_first_valid_index.pyo
 ${PYSITELIB}/pandas/tests/frame/methods/test_get_numeric_data.py
 ${PYSITELIB}/pandas/tests/frame/methods/test_get_numeric_data.pyc
-${PYSITELIB}/pandas/tests/frame/methods/test_get_numeric_data.pyo
 ${PYSITELIB}/pandas/tests/frame/methods/test_head_tail.py
 ${PYSITELIB}/pandas/tests/frame/methods/test_head_tail.pyc
-${PYSITELIB}/pandas/tests/frame/methods/test_head_tail.pyo
 ${PYSITELIB}/pandas/tests/frame/methods/test_infer_objects.py
 ${PYSITELIB}/pandas/tests/frame/methods/test_infer_objects.pyc
-${PYSITELIB}/pandas/tests/frame/methods/test_infer_objects.pyo
 ${PYSITELIB}/pandas/tests/frame/methods/test_interpolate.py
 ${PYSITELIB}/pandas/tests/frame/methods/test_interpolate.pyc
-${PYSITELIB}/pandas/tests/frame/methods/test_interpolate.pyo
 ${PYSITELIB}/pandas/tests/frame/methods/test_is_homogeneous_dtype.py
 ${PYSITELIB}/pandas/tests/frame/methods/test_is_homogeneous_dtype.pyc
-${PYSITELIB}/pandas/tests/frame/methods/test_is_homogeneous_dtype.pyo
+${PYSITELIB}/pandas/tests/frame/methods/test_isetitem.py
+${PYSITELIB}/pandas/tests/frame/methods/test_isetitem.pyc
 ${PYSITELIB}/pandas/tests/frame/methods/test_isin.py
 ${PYSITELIB}/pandas/tests/frame/methods/test_isin.pyc
-${PYSITELIB}/pandas/tests/frame/methods/test_isin.pyo
 ${PYSITELIB}/pandas/tests/frame/methods/test_join.py
 ${PYSITELIB}/pandas/tests/frame/methods/test_join.pyc
-${PYSITELIB}/pandas/tests/frame/methods/test_join.pyo
 ${PYSITELIB}/pandas/tests/frame/methods/test_matmul.py
 ${PYSITELIB}/pandas/tests/frame/methods/test_matmul.pyc
-${PYSITELIB}/pandas/tests/frame/methods/test_matmul.pyo
 ${PYSITELIB}/pandas/tests/frame/methods/test_nlargest.py
 ${PYSITELIB}/pandas/tests/frame/methods/test_nlargest.pyc
-${PYSITELIB}/pandas/tests/frame/methods/test_nlargest.pyo
 ${PYSITELIB}/pandas/tests/frame/methods/test_pct_change.py
 ${PYSITELIB}/pandas/tests/frame/methods/test_pct_change.pyc
-${PYSITELIB}/pandas/tests/frame/methods/test_pct_change.pyo
 ${PYSITELIB}/pandas/tests/frame/methods/test_pipe.py
 ${PYSITELIB}/pandas/tests/frame/methods/test_pipe.pyc
-${PYSITELIB}/pandas/tests/frame/methods/test_pipe.pyo
 ${PYSITELIB}/pandas/tests/frame/methods/test_pop.py
 ${PYSITELIB}/pandas/tests/frame/methods/test_pop.pyc
-${PYSITELIB}/pandas/tests/frame/methods/test_pop.pyo
 ${PYSITELIB}/pandas/tests/frame/methods/test_quantile.py
 ${PYSITELIB}/pandas/tests/frame/methods/test_quantile.pyc
-${PYSITELIB}/pandas/tests/frame/methods/test_quantile.pyo
 ${PYSITELIB}/pandas/tests/frame/methods/test_rank.py
 ${PYSITELIB}/pandas/tests/frame/methods/test_rank.pyc
-${PYSITELIB}/pandas/tests/frame/methods/test_rank.pyo
 ${PYSITELIB}/pandas/tests/frame/methods/test_reindex.py
 ${PYSITELIB}/pandas/tests/frame/methods/test_reindex.pyc
-${PYSITELIB}/pandas/tests/frame/methods/test_reindex.pyo
 ${PYSITELIB}/pandas/tests/frame/methods/test_reindex_like.py
 ${PYSITELIB}/pandas/tests/frame/methods/test_reindex_like.pyc
-${PYSITELIB}/pandas/tests/frame/methods/test_reindex_like.pyo
 ${PYSITELIB}/pandas/tests/frame/methods/test_rename.py
 ${PYSITELIB}/pandas/tests/frame/methods/test_rename.pyc
-${PYSITELIB}/pandas/tests/frame/methods/test_rename.pyo
 ${PYSITELIB}/pandas/tests/frame/methods/test_rename_axis.py
 ${PYSITELIB}/pandas/tests/frame/methods/test_rename_axis.pyc
-${PYSITELIB}/pandas/tests/frame/methods/test_rename_axis.pyo
 ${PYSITELIB}/pandas/tests/frame/methods/test_reorder_levels.py
 ${PYSITELIB}/pandas/tests/frame/methods/test_reorder_levels.pyc
-${PYSITELIB}/pandas/tests/frame/methods/test_reorder_levels.pyo
 ${PYSITELIB}/pandas/tests/frame/methods/test_replace.py
 ${PYSITELIB}/pandas/tests/frame/methods/test_replace.pyc
-${PYSITELIB}/pandas/tests/frame/methods/test_replace.pyo
 ${PYSITELIB}/pandas/tests/frame/methods/test_reset_index.py
 ${PYSITELIB}/pandas/tests/frame/methods/test_reset_index.pyc
-${PYSITELIB}/pandas/tests/frame/methods/test_reset_index.pyo
 ${PYSITELIB}/pandas/tests/frame/methods/test_round.py
 ${PYSITELIB}/pandas/tests/frame/methods/test_round.pyc
-${PYSITELIB}/pandas/tests/frame/methods/test_round.pyo
 ${PYSITELIB}/pandas/tests/frame/methods/test_sample.py
 ${PYSITELIB}/pandas/tests/frame/methods/test_sample.pyc
-${PYSITELIB}/pandas/tests/frame/methods/test_sample.pyo
 ${PYSITELIB}/pandas/tests/frame/methods/test_select_dtypes.py
 ${PYSITELIB}/pandas/tests/frame/methods/test_select_dtypes.pyc
-${PYSITELIB}/pandas/tests/frame/methods/test_select_dtypes.pyo
 ${PYSITELIB}/pandas/tests/frame/methods/test_set_axis.py
 ${PYSITELIB}/pandas/tests/frame/methods/test_set_axis.pyc
-${PYSITELIB}/pandas/tests/frame/methods/test_set_axis.pyo
 ${PYSITELIB}/pandas/tests/frame/methods/test_set_index.py
 ${PYSITELIB}/pandas/tests/frame/methods/test_set_index.pyc
-${PYSITELIB}/pandas/tests/frame/methods/test_set_index.pyo
 ${PYSITELIB}/pandas/tests/frame/methods/test_shift.py
 ${PYSITELIB}/pandas/tests/frame/methods/test_shift.pyc
-${PYSITELIB}/pandas/tests/frame/methods/test_shift.pyo
 ${PYSITELIB}/pandas/tests/frame/methods/test_sort_index.py
 ${PYSITELIB}/pandas/tests/frame/methods/test_sort_index.pyc
-${PYSITELIB}/pandas/tests/frame/methods/test_sort_index.pyo
 ${PYSITELIB}/pandas/tests/frame/methods/test_sort_values.py
 ${PYSITELIB}/pandas/tests/frame/methods/test_sort_values.pyc
-${PYSITELIB}/pandas/tests/frame/methods/test_sort_values.pyo
 ${PYSITELIB}/pandas/tests/frame/methods/test_swapaxes.py
 ${PYSITELIB}/pandas/tests/frame/methods/test_swapaxes.pyc
-${PYSITELIB}/pandas/tests/frame/methods/test_swapaxes.pyo
 ${PYSITELIB}/pandas/tests/frame/methods/test_swaplevel.py
 ${PYSITELIB}/pandas/tests/frame/methods/test_swaplevel.pyc
-${PYSITELIB}/pandas/tests/frame/methods/test_swaplevel.pyo
 ${PYSITELIB}/pandas/tests/frame/methods/test_to_csv.py
 ${PYSITELIB}/pandas/tests/frame/methods/test_to_csv.pyc
-${PYSITELIB}/pandas/tests/frame/methods/test_to_csv.pyo
 ${PYSITELIB}/pandas/tests/frame/methods/test_to_dict.py
 ${PYSITELIB}/pandas/tests/frame/methods/test_to_dict.pyc
-${PYSITELIB}/pandas/tests/frame/methods/test_to_dict.pyo
 ${PYSITELIB}/pandas/tests/frame/methods/test_to_dict_of_blocks.py
 ${PYSITELIB}/pandas/tests/frame/methods/test_to_dict_of_blocks.pyc
-${PYSITELIB}/pandas/tests/frame/methods/test_to_dict_of_blocks.pyo
 ${PYSITELIB}/pandas/tests/frame/methods/test_to_numpy.py
 ${PYSITELIB}/pandas/tests/frame/methods/test_to_numpy.pyc
-${PYSITELIB}/pandas/tests/frame/methods/test_to_numpy.pyo
 ${PYSITELIB}/pandas/tests/frame/methods/test_to_period.py
 ${PYSITELIB}/pandas/tests/frame/methods/test_to_period.pyc
-${PYSITELIB}/pandas/tests/frame/methods/test_to_period.pyo
 ${PYSITELIB}/pandas/tests/frame/methods/test_to_records.py
 ${PYSITELIB}/pandas/tests/frame/methods/test_to_records.pyc
-${PYSITELIB}/pandas/tests/frame/methods/test_to_records.pyo
 ${PYSITELIB}/pandas/tests/frame/methods/test_to_timestamp.py
 ${PYSITELIB}/pandas/tests/frame/methods/test_to_timestamp.pyc
-${PYSITELIB}/pandas/tests/frame/methods/test_to_timestamp.pyo
 ${PYSITELIB}/pandas/tests/frame/methods/test_transpose.py
 ${PYSITELIB}/pandas/tests/frame/methods/test_transpose.pyc
-${PYSITELIB}/pandas/tests/frame/methods/test_transpose.pyo
 ${PYSITELIB}/pandas/tests/frame/methods/test_truncate.py
 ${PYSITELIB}/pandas/tests/frame/methods/test_truncate.pyc
-${PYSITELIB}/pandas/tests/frame/methods/test_truncate.pyo
 ${PYSITELIB}/pandas/tests/frame/methods/test_tz_convert.py
 ${PYSITELIB}/pandas/tests/frame/methods/test_tz_convert.pyc
-${PYSITELIB}/pandas/tests/frame/methods/test_tz_convert.pyo
 ${PYSITELIB}/pandas/tests/frame/methods/test_tz_localize.py
 ${PYSITELIB}/pandas/tests/frame/methods/test_tz_localize.pyc
-${PYSITELIB}/pandas/tests/frame/methods/test_tz_localize.pyo
 ${PYSITELIB}/pandas/tests/frame/methods/test_update.py
 ${PYSITELIB}/pandas/tests/frame/methods/test_update.pyc
-${PYSITELIB}/pandas/tests/frame/methods/test_update.pyo
 ${PYSITELIB}/pandas/tests/frame/methods/test_value_counts.py
 ${PYSITELIB}/pandas/tests/frame/methods/test_value_counts.pyc
-${PYSITELIB}/pandas/tests/frame/methods/test_value_counts.pyo
 ${PYSITELIB}/pandas/tests/frame/methods/test_values.py
 ${PYSITELIB}/pandas/tests/frame/methods/test_values.pyc
-${PYSITELIB}/pandas/tests/frame/methods/test_values.pyo
 ${PYSITELIB}/pandas/tests/frame/test_alter_axes.py
 ${PYSITELIB}/pandas/tests/frame/test_alter_axes.pyc
-${PYSITELIB}/pandas/tests/frame/test_alter_axes.pyo
 ${PYSITELIB}/pandas/tests/frame/test_api.py
 ${PYSITELIB}/pandas/tests/frame/test_api.pyc
-${PYSITELIB}/pandas/tests/frame/test_api.pyo
 ${PYSITELIB}/pandas/tests/frame/test_arithmetic.py
 ${PYSITELIB}/pandas/tests/frame/test_arithmetic.pyc
-${PYSITELIB}/pandas/tests/frame/test_arithmetic.pyo
 ${PYSITELIB}/pandas/tests/frame/test_block_internals.py
 ${PYSITELIB}/pandas/tests/frame/test_block_internals.pyc
-${PYSITELIB}/pandas/tests/frame/test_block_internals.pyo
 ${PYSITELIB}/pandas/tests/frame/test_constructors.py
 ${PYSITELIB}/pandas/tests/frame/test_constructors.pyc
-${PYSITELIB}/pandas/tests/frame/test_constructors.pyo
 ${PYSITELIB}/pandas/tests/frame/test_cumulative.py
 ${PYSITELIB}/pandas/tests/frame/test_cumulative.pyc
-${PYSITELIB}/pandas/tests/frame/test_cumulative.pyo
 ${PYSITELIB}/pandas/tests/frame/test_iteration.py
 ${PYSITELIB}/pandas/tests/frame/test_iteration.pyc
-${PYSITELIB}/pandas/tests/frame/test_iteration.pyo
 ${PYSITELIB}/pandas/tests/frame/test_logical_ops.py
 ${PYSITELIB}/pandas/tests/frame/test_logical_ops.pyc
-${PYSITELIB}/pandas/tests/frame/test_logical_ops.pyo
 ${PYSITELIB}/pandas/tests/frame/test_nonunique_indexes.py
 ${PYSITELIB}/pandas/tests/frame/test_nonunique_indexes.pyc
-${PYSITELIB}/pandas/tests/frame/test_nonunique_indexes.pyo
 ${PYSITELIB}/pandas/tests/frame/test_npfuncs.py
 ${PYSITELIB}/pandas/tests/frame/test_npfuncs.pyc
-${PYSITELIB}/pandas/tests/frame/test_npfuncs.pyo
 ${PYSITELIB}/pandas/tests/frame/test_query_eval.py
 ${PYSITELIB}/pandas/tests/frame/test_query_eval.pyc
-${PYSITELIB}/pandas/tests/frame/test_query_eval.pyo
 ${PYSITELIB}/pandas/tests/frame/test_reductions.py
 ${PYSITELIB}/pandas/tests/frame/test_reductions.pyc
-${PYSITELIB}/pandas/tests/frame/test_reductions.pyo
 ${PYSITELIB}/pandas/tests/frame/test_repr_info.py
 ${PYSITELIB}/pandas/tests/frame/test_repr_info.pyc
-${PYSITELIB}/pandas/tests/frame/test_repr_info.pyo
 ${PYSITELIB}/pandas/tests/frame/test_stack_unstack.py
 ${PYSITELIB}/pandas/tests/frame/test_stack_unstack.pyc
-${PYSITELIB}/pandas/tests/frame/test_stack_unstack.pyo
 ${PYSITELIB}/pandas/tests/frame/test_subclass.py
 ${PYSITELIB}/pandas/tests/frame/test_subclass.pyc
-${PYSITELIB}/pandas/tests/frame/test_subclass.pyo
 ${PYSITELIB}/pandas/tests/frame/test_ufunc.py
 ${PYSITELIB}/pandas/tests/frame/test_ufunc.pyc
-${PYSITELIB}/pandas/tests/frame/test_ufunc.pyo
 ${PYSITELIB}/pandas/tests/frame/test_unary.py
 ${PYSITELIB}/pandas/tests/frame/test_unary.pyc
-${PYSITELIB}/pandas/tests/frame/test_unary.pyo
 ${PYSITELIB}/pandas/tests/frame/test_validate.py
 ${PYSITELIB}/pandas/tests/frame/test_validate.pyc
-${PYSITELIB}/pandas/tests/frame/test_validate.pyo
 ${PYSITELIB}/pandas/tests/generic/__init__.py
 ${PYSITELIB}/pandas/tests/generic/__init__.pyc
-${PYSITELIB}/pandas/tests/generic/__init__.pyo
 ${PYSITELIB}/pandas/tests/generic/test_duplicate_labels.py
 ${PYSITELIB}/pandas/tests/generic/test_duplicate_labels.pyc
-${PYSITELIB}/pandas/tests/generic/test_duplicate_labels.pyo
 ${PYSITELIB}/pandas/tests/generic/test_finalize.py
 ${PYSITELIB}/pandas/tests/generic/test_finalize.pyc
-${PYSITELIB}/pandas/tests/generic/test_finalize.pyo
 ${PYSITELIB}/pandas/tests/generic/test_frame.py
 ${PYSITELIB}/pandas/tests/generic/test_frame.pyc
-${PYSITELIB}/pandas/tests/generic/test_frame.pyo
 ${PYSITELIB}/pandas/tests/generic/test_generic.py
 ${PYSITELIB}/pandas/tests/generic/test_generic.pyc
-${PYSITELIB}/pandas/tests/generic/test_generic.pyo
 ${PYSITELIB}/pandas/tests/generic/test_label_or_level_utils.py
 ${PYSITELIB}/pandas/tests/generic/test_label_or_level_utils.pyc
-${PYSITELIB}/pandas/tests/generic/test_label_or_level_utils.pyo
 ${PYSITELIB}/pandas/tests/generic/test_series.py
 ${PYSITELIB}/pandas/tests/generic/test_series.pyc
-${PYSITELIB}/pandas/tests/generic/test_series.pyo
 ${PYSITELIB}/pandas/tests/generic/test_to_xarray.py
 ${PYSITELIB}/pandas/tests/generic/test_to_xarray.pyc
-${PYSITELIB}/pandas/tests/generic/test_to_xarray.pyo
 ${PYSITELIB}/pandas/tests/groupby/__init__.py
 ${PYSITELIB}/pandas/tests/groupby/__init__.pyc
-${PYSITELIB}/pandas/tests/groupby/__init__.pyo
 ${PYSITELIB}/pandas/tests/groupby/aggregate/__init__.py
 ${PYSITELIB}/pandas/tests/groupby/aggregate/__init__.pyc
-${PYSITELIB}/pandas/tests/groupby/aggregate/__init__.pyo
 ${PYSITELIB}/pandas/tests/groupby/aggregate/test_aggregate.py
 ${PYSITELIB}/pandas/tests/groupby/aggregate/test_aggregate.pyc
-${PYSITELIB}/pandas/tests/groupby/aggregate/test_aggregate.pyo
 ${PYSITELIB}/pandas/tests/groupby/aggregate/test_cython.py
 ${PYSITELIB}/pandas/tests/groupby/aggregate/test_cython.pyc
-${PYSITELIB}/pandas/tests/groupby/aggregate/test_cython.pyo
 ${PYSITELIB}/pandas/tests/groupby/aggregate/test_numba.py
 ${PYSITELIB}/pandas/tests/groupby/aggregate/test_numba.pyc
-${PYSITELIB}/pandas/tests/groupby/aggregate/test_numba.pyo
 ${PYSITELIB}/pandas/tests/groupby/aggregate/test_other.py
 ${PYSITELIB}/pandas/tests/groupby/aggregate/test_other.pyc
-${PYSITELIB}/pandas/tests/groupby/aggregate/test_other.pyo
 ${PYSITELIB}/pandas/tests/groupby/conftest.py
 ${PYSITELIB}/pandas/tests/groupby/conftest.pyc
-${PYSITELIB}/pandas/tests/groupby/conftest.pyo
 ${PYSITELIB}/pandas/tests/groupby/test_allowlist.py
 ${PYSITELIB}/pandas/tests/groupby/test_allowlist.pyc
-${PYSITELIB}/pandas/tests/groupby/test_allowlist.pyo
 ${PYSITELIB}/pandas/tests/groupby/test_any_all.py
 ${PYSITELIB}/pandas/tests/groupby/test_any_all.pyc
-${PYSITELIB}/pandas/tests/groupby/test_any_all.pyo
+${PYSITELIB}/pandas/tests/groupby/test_api_consistency.py
+${PYSITELIB}/pandas/tests/groupby/test_api_consistency.pyc
 ${PYSITELIB}/pandas/tests/groupby/test_apply.py
 ${PYSITELIB}/pandas/tests/groupby/test_apply.pyc
-${PYSITELIB}/pandas/tests/groupby/test_apply.pyo
 ${PYSITELIB}/pandas/tests/groupby/test_apply_mutate.py
 ${PYSITELIB}/pandas/tests/groupby/test_apply_mutate.pyc
-${PYSITELIB}/pandas/tests/groupby/test_apply_mutate.pyo
 ${PYSITELIB}/pandas/tests/groupby/test_bin_groupby.py
 ${PYSITELIB}/pandas/tests/groupby/test_bin_groupby.pyc
-${PYSITELIB}/pandas/tests/groupby/test_bin_groupby.pyo
 ${PYSITELIB}/pandas/tests/groupby/test_categorical.py
 ${PYSITELIB}/pandas/tests/groupby/test_categorical.pyc
-${PYSITELIB}/pandas/tests/groupby/test_categorical.pyo
 ${PYSITELIB}/pandas/tests/groupby/test_counting.py
 ${PYSITELIB}/pandas/tests/groupby/test_counting.pyc
-${PYSITELIB}/pandas/tests/groupby/test_counting.pyo
 ${PYSITELIB}/pandas/tests/groupby/test_filters.py
 ${PYSITELIB}/pandas/tests/groupby/test_filters.pyc
-${PYSITELIB}/pandas/tests/groupby/test_filters.pyo
-${PYSITELIB}/pandas/tests/groupby/test_frame_value_counts.py
-${PYSITELIB}/pandas/tests/groupby/test_frame_value_counts.pyc
-${PYSITELIB}/pandas/tests/groupby/test_frame_value_counts.pyo
 ${PYSITELIB}/pandas/tests/groupby/test_function.py
 ${PYSITELIB}/pandas/tests/groupby/test_function.pyc
-${PYSITELIB}/pandas/tests/groupby/test_function.pyo
 ${PYSITELIB}/pandas/tests/groupby/test_groupby.py
 ${PYSITELIB}/pandas/tests/groupby/test_groupby.pyc
-${PYSITELIB}/pandas/tests/groupby/test_groupby.pyo
 ${PYSITELIB}/pandas/tests/groupby/test_groupby_dropna.py
 ${PYSITELIB}/pandas/tests/groupby/test_groupby_dropna.pyc
-${PYSITELIB}/pandas/tests/groupby/test_groupby_dropna.pyo
 ${PYSITELIB}/pandas/tests/groupby/test_groupby_shift_diff.py
 ${PYSITELIB}/pandas/tests/groupby/test_groupby_shift_diff.pyc
-${PYSITELIB}/pandas/tests/groupby/test_groupby_shift_diff.pyo
 ${PYSITELIB}/pandas/tests/groupby/test_groupby_subclass.py
 ${PYSITELIB}/pandas/tests/groupby/test_groupby_subclass.pyc
-${PYSITELIB}/pandas/tests/groupby/test_groupby_subclass.pyo
 ${PYSITELIB}/pandas/tests/groupby/test_grouping.py
 ${PYSITELIB}/pandas/tests/groupby/test_grouping.pyc
-${PYSITELIB}/pandas/tests/groupby/test_grouping.pyo
 ${PYSITELIB}/pandas/tests/groupby/test_index_as_string.py
 ${PYSITELIB}/pandas/tests/groupby/test_index_as_string.pyc
-${PYSITELIB}/pandas/tests/groupby/test_index_as_string.pyo
 ${PYSITELIB}/pandas/tests/groupby/test_indexing.py
 ${PYSITELIB}/pandas/tests/groupby/test_indexing.pyc
-${PYSITELIB}/pandas/tests/groupby/test_indexing.pyo
 ${PYSITELIB}/pandas/tests/groupby/test_libgroupby.py
 ${PYSITELIB}/pandas/tests/groupby/test_libgroupby.pyc
-${PYSITELIB}/pandas/tests/groupby/test_libgroupby.pyo
 ${PYSITELIB}/pandas/tests/groupby/test_min_max.py
 ${PYSITELIB}/pandas/tests/groupby/test_min_max.pyc
-${PYSITELIB}/pandas/tests/groupby/test_min_max.pyo
 ${PYSITELIB}/pandas/tests/groupby/test_missing.py
 ${PYSITELIB}/pandas/tests/groupby/test_missing.pyc
-${PYSITELIB}/pandas/tests/groupby/test_missing.pyo
 ${PYSITELIB}/pandas/tests/groupby/test_nth.py
 ${PYSITELIB}/pandas/tests/groupby/test_nth.pyc
-${PYSITELIB}/pandas/tests/groupby/test_nth.pyo
 ${PYSITELIB}/pandas/tests/groupby/test_numba.py
 ${PYSITELIB}/pandas/tests/groupby/test_numba.pyc
-${PYSITELIB}/pandas/tests/groupby/test_numba.pyo
 ${PYSITELIB}/pandas/tests/groupby/test_nunique.py
 ${PYSITELIB}/pandas/tests/groupby/test_nunique.pyc
-${PYSITELIB}/pandas/tests/groupby/test_nunique.pyo
 ${PYSITELIB}/pandas/tests/groupby/test_pipe.py
 ${PYSITELIB}/pandas/tests/groupby/test_pipe.pyc
-${PYSITELIB}/pandas/tests/groupby/test_pipe.pyo
 ${PYSITELIB}/pandas/tests/groupby/test_quantile.py
 ${PYSITELIB}/pandas/tests/groupby/test_quantile.pyc
-${PYSITELIB}/pandas/tests/groupby/test_quantile.pyo
+${PYSITELIB}/pandas/tests/groupby/test_raises.py
+${PYSITELIB}/pandas/tests/groupby/test_raises.pyc
 ${PYSITELIB}/pandas/tests/groupby/test_rank.py
 ${PYSITELIB}/pandas/tests/groupby/test_rank.pyc
-${PYSITELIB}/pandas/tests/groupby/test_rank.pyo
 ${PYSITELIB}/pandas/tests/groupby/test_sample.py
 ${PYSITELIB}/pandas/tests/groupby/test_sample.pyc
-${PYSITELIB}/pandas/tests/groupby/test_sample.pyo
 ${PYSITELIB}/pandas/tests/groupby/test_size.py
 ${PYSITELIB}/pandas/tests/groupby/test_size.pyc
-${PYSITELIB}/pandas/tests/groupby/test_size.pyo
 ${PYSITELIB}/pandas/tests/groupby/test_timegrouper.py
 ${PYSITELIB}/pandas/tests/groupby/test_timegrouper.pyc
-${PYSITELIB}/pandas/tests/groupby/test_timegrouper.pyo
 ${PYSITELIB}/pandas/tests/groupby/test_value_counts.py
 ${PYSITELIB}/pandas/tests/groupby/test_value_counts.pyc
-${PYSITELIB}/pandas/tests/groupby/test_value_counts.pyo
 ${PYSITELIB}/pandas/tests/groupby/transform/__init__.py
 ${PYSITELIB}/pandas/tests/groupby/transform/__init__.pyc
-${PYSITELIB}/pandas/tests/groupby/transform/__init__.pyo
 ${PYSITELIB}/pandas/tests/groupby/transform/test_numba.py
 ${PYSITELIB}/pandas/tests/groupby/transform/test_numba.pyc
-${PYSITELIB}/pandas/tests/groupby/transform/test_numba.pyo
 ${PYSITELIB}/pandas/tests/groupby/transform/test_transform.py
 ${PYSITELIB}/pandas/tests/groupby/transform/test_transform.pyc
-${PYSITELIB}/pandas/tests/groupby/transform/test_transform.pyo
 ${PYSITELIB}/pandas/tests/indexes/__init__.py
 ${PYSITELIB}/pandas/tests/indexes/__init__.pyc
-${PYSITELIB}/pandas/tests/indexes/__init__.pyo
 ${PYSITELIB}/pandas/tests/indexes/base_class/__init__.py
 ${PYSITELIB}/pandas/tests/indexes/base_class/__init__.pyc
-${PYSITELIB}/pandas/tests/indexes/base_class/__init__.pyo
 ${PYSITELIB}/pandas/tests/indexes/base_class/test_constructors.py
 ${PYSITELIB}/pandas/tests/indexes/base_class/test_constructors.pyc
-${PYSITELIB}/pandas/tests/indexes/base_class/test_constructors.pyo
 ${PYSITELIB}/pandas/tests/indexes/base_class/test_formats.py
 ${PYSITELIB}/pandas/tests/indexes/base_class/test_formats.pyc
-${PYSITELIB}/pandas/tests/indexes/base_class/test_formats.pyo
 ${PYSITELIB}/pandas/tests/indexes/base_class/test_indexing.py
 ${PYSITELIB}/pandas/tests/indexes/base_class/test_indexing.pyc
-${PYSITELIB}/pandas/tests/indexes/base_class/test_indexing.pyo
 ${PYSITELIB}/pandas/tests/indexes/base_class/test_pickle.py
 ${PYSITELIB}/pandas/tests/indexes/base_class/test_pickle.pyc
-${PYSITELIB}/pandas/tests/indexes/base_class/test_pickle.pyo
 ${PYSITELIB}/pandas/tests/indexes/base_class/test_reshape.py
 ${PYSITELIB}/pandas/tests/indexes/base_class/test_reshape.pyc
-${PYSITELIB}/pandas/tests/indexes/base_class/test_reshape.pyo
 ${PYSITELIB}/pandas/tests/indexes/base_class/test_setops.py
 ${PYSITELIB}/pandas/tests/indexes/base_class/test_setops.pyc
-${PYSITELIB}/pandas/tests/indexes/base_class/test_setops.pyo
 ${PYSITELIB}/pandas/tests/indexes/base_class/test_where.py
 ${PYSITELIB}/pandas/tests/indexes/base_class/test_where.pyc
-${PYSITELIB}/pandas/tests/indexes/base_class/test_where.pyo
 ${PYSITELIB}/pandas/tests/indexes/categorical/__init__.py
 ${PYSITELIB}/pandas/tests/indexes/categorical/__init__.pyc
-${PYSITELIB}/pandas/tests/indexes/categorical/__init__.pyo
 ${PYSITELIB}/pandas/tests/indexes/categorical/test_append.py
 ${PYSITELIB}/pandas/tests/indexes/categorical/test_append.pyc
-${PYSITELIB}/pandas/tests/indexes/categorical/test_append.pyo
 ${PYSITELIB}/pandas/tests/indexes/categorical/test_astype.py
 ${PYSITELIB}/pandas/tests/indexes/categorical/test_astype.pyc
-${PYSITELIB}/pandas/tests/indexes/categorical/test_astype.pyo
 ${PYSITELIB}/pandas/tests/indexes/categorical/test_category.py
 ${PYSITELIB}/pandas/tests/indexes/categorical/test_category.pyc
-${PYSITELIB}/pandas/tests/indexes/categorical/test_category.pyo
 ${PYSITELIB}/pandas/tests/indexes/categorical/test_constructors.py
 ${PYSITELIB}/pandas/tests/indexes/categorical/test_constructors.pyc
-${PYSITELIB}/pandas/tests/indexes/categorical/test_constructors.pyo
 ${PYSITELIB}/pandas/tests/indexes/categorical/test_equals.py
 ${PYSITELIB}/pandas/tests/indexes/categorical/test_equals.pyc
-${PYSITELIB}/pandas/tests/indexes/categorical/test_equals.pyo
 ${PYSITELIB}/pandas/tests/indexes/categorical/test_fillna.py
 ${PYSITELIB}/pandas/tests/indexes/categorical/test_fillna.pyc
-${PYSITELIB}/pandas/tests/indexes/categorical/test_fillna.pyo
 ${PYSITELIB}/pandas/tests/indexes/categorical/test_formats.py
 ${PYSITELIB}/pandas/tests/indexes/categorical/test_formats.pyc
-${PYSITELIB}/pandas/tests/indexes/categorical/test_formats.pyo
 ${PYSITELIB}/pandas/tests/indexes/categorical/test_indexing.py
 ${PYSITELIB}/pandas/tests/indexes/categorical/test_indexing.pyc
-${PYSITELIB}/pandas/tests/indexes/categorical/test_indexing.pyo
 ${PYSITELIB}/pandas/tests/indexes/categorical/test_map.py
 ${PYSITELIB}/pandas/tests/indexes/categorical/test_map.pyc
-${PYSITELIB}/pandas/tests/indexes/categorical/test_map.pyo
 ${PYSITELIB}/pandas/tests/indexes/categorical/test_reindex.py
 ${PYSITELIB}/pandas/tests/indexes/categorical/test_reindex.pyc
-${PYSITELIB}/pandas/tests/indexes/categorical/test_reindex.pyo
 ${PYSITELIB}/pandas/tests/indexes/common.py
 ${PYSITELIB}/pandas/tests/indexes/common.pyc
-${PYSITELIB}/pandas/tests/indexes/common.pyo
 ${PYSITELIB}/pandas/tests/indexes/conftest.py
 ${PYSITELIB}/pandas/tests/indexes/conftest.pyc
-${PYSITELIB}/pandas/tests/indexes/conftest.pyo
 ${PYSITELIB}/pandas/tests/indexes/datetimelike.py
 ${PYSITELIB}/pandas/tests/indexes/datetimelike.pyc
-${PYSITELIB}/pandas/tests/indexes/datetimelike.pyo
 ${PYSITELIB}/pandas/tests/indexes/datetimelike_/__init__.py
 ${PYSITELIB}/pandas/tests/indexes/datetimelike_/__init__.pyc
-${PYSITELIB}/pandas/tests/indexes/datetimelike_/__init__.pyo
 ${PYSITELIB}/pandas/tests/indexes/datetimelike_/test_drop_duplicates.py
 ${PYSITELIB}/pandas/tests/indexes/datetimelike_/test_drop_duplicates.pyc
-${PYSITELIB}/pandas/tests/indexes/datetimelike_/test_drop_duplicates.pyo
 ${PYSITELIB}/pandas/tests/indexes/datetimelike_/test_equals.py
 ${PYSITELIB}/pandas/tests/indexes/datetimelike_/test_equals.pyc
-${PYSITELIB}/pandas/tests/indexes/datetimelike_/test_equals.pyo
 ${PYSITELIB}/pandas/tests/indexes/datetimelike_/test_indexing.py
 ${PYSITELIB}/pandas/tests/indexes/datetimelike_/test_indexing.pyc
-${PYSITELIB}/pandas/tests/indexes/datetimelike_/test_indexing.pyo
 ${PYSITELIB}/pandas/tests/indexes/datetimelike_/test_is_monotonic.py
 ${PYSITELIB}/pandas/tests/indexes/datetimelike_/test_is_monotonic.pyc
-${PYSITELIB}/pandas/tests/indexes/datetimelike_/test_is_monotonic.pyo
 ${PYSITELIB}/pandas/tests/indexes/datetimelike_/test_nat.py
 ${PYSITELIB}/pandas/tests/indexes/datetimelike_/test_nat.pyc
-${PYSITELIB}/pandas/tests/indexes/datetimelike_/test_nat.pyo
 ${PYSITELIB}/pandas/tests/indexes/datetimelike_/test_sort_values.py
 ${PYSITELIB}/pandas/tests/indexes/datetimelike_/test_sort_values.pyc
-${PYSITELIB}/pandas/tests/indexes/datetimelike_/test_sort_values.pyo
 ${PYSITELIB}/pandas/tests/indexes/datetimelike_/test_value_counts.py
 ${PYSITELIB}/pandas/tests/indexes/datetimelike_/test_value_counts.pyc
-${PYSITELIB}/pandas/tests/indexes/datetimelike_/test_value_counts.pyo
 ${PYSITELIB}/pandas/tests/indexes/datetimes/__init__.py
 ${PYSITELIB}/pandas/tests/indexes/datetimes/__init__.pyc
-${PYSITELIB}/pandas/tests/indexes/datetimes/__init__.pyo
 ${PYSITELIB}/pandas/tests/indexes/datetimes/methods/__init__.py
 ${PYSITELIB}/pandas/tests/indexes/datetimes/methods/__init__.pyc
-${PYSITELIB}/pandas/tests/indexes/datetimes/methods/__init__.pyo
 ${PYSITELIB}/pandas/tests/indexes/datetimes/methods/test_astype.py
 ${PYSITELIB}/pandas/tests/indexes/datetimes/methods/test_astype.pyc
-${PYSITELIB}/pandas/tests/indexes/datetimes/methods/test_astype.pyo
 ${PYSITELIB}/pandas/tests/indexes/datetimes/methods/test_factorize.py
 ${PYSITELIB}/pandas/tests/indexes/datetimes/methods/test_factorize.pyc
-${PYSITELIB}/pandas/tests/indexes/datetimes/methods/test_factorize.pyo
 ${PYSITELIB}/pandas/tests/indexes/datetimes/methods/test_fillna.py
 ${PYSITELIB}/pandas/tests/indexes/datetimes/methods/test_fillna.pyc
-${PYSITELIB}/pandas/tests/indexes/datetimes/methods/test_fillna.pyo
 ${PYSITELIB}/pandas/tests/indexes/datetimes/methods/test_insert.py
 ${PYSITELIB}/pandas/tests/indexes/datetimes/methods/test_insert.pyc
-${PYSITELIB}/pandas/tests/indexes/datetimes/methods/test_insert.pyo
 ${PYSITELIB}/pandas/tests/indexes/datetimes/methods/test_isocalendar.py
 ${PYSITELIB}/pandas/tests/indexes/datetimes/methods/test_isocalendar.pyc
-${PYSITELIB}/pandas/tests/indexes/datetimes/methods/test_isocalendar.pyo
 ${PYSITELIB}/pandas/tests/indexes/datetimes/methods/test_repeat.py
 ${PYSITELIB}/pandas/tests/indexes/datetimes/methods/test_repeat.pyc
-${PYSITELIB}/pandas/tests/indexes/datetimes/methods/test_repeat.pyo
 ${PYSITELIB}/pandas/tests/indexes/datetimes/methods/test_shift.py
 ${PYSITELIB}/pandas/tests/indexes/datetimes/methods/test_shift.pyc
-${PYSITELIB}/pandas/tests/indexes/datetimes/methods/test_shift.pyo
 ${PYSITELIB}/pandas/tests/indexes/datetimes/methods/test_snap.py
 ${PYSITELIB}/pandas/tests/indexes/datetimes/methods/test_snap.pyc
-${PYSITELIB}/pandas/tests/indexes/datetimes/methods/test_snap.pyo
 ${PYSITELIB}/pandas/tests/indexes/datetimes/methods/test_to_frame.py
 ${PYSITELIB}/pandas/tests/indexes/datetimes/methods/test_to_frame.pyc
-${PYSITELIB}/pandas/tests/indexes/datetimes/methods/test_to_frame.pyo
 ${PYSITELIB}/pandas/tests/indexes/datetimes/methods/test_to_period.py
 ${PYSITELIB}/pandas/tests/indexes/datetimes/methods/test_to_period.pyc
-${PYSITELIB}/pandas/tests/indexes/datetimes/methods/test_to_period.pyo
 ${PYSITELIB}/pandas/tests/indexes/datetimes/methods/test_to_series.py
 ${PYSITELIB}/pandas/tests/indexes/datetimes/methods/test_to_series.pyc
-${PYSITELIB}/pandas/tests/indexes/datetimes/methods/test_to_series.pyo
 ${PYSITELIB}/pandas/tests/indexes/datetimes/test_asof.py
 ${PYSITELIB}/pandas/tests/indexes/datetimes/test_asof.pyc
-${PYSITELIB}/pandas/tests/indexes/datetimes/test_asof.pyo
 ${PYSITELIB}/pandas/tests/indexes/datetimes/test_constructors.py
 ${PYSITELIB}/pandas/tests/indexes/datetimes/test_constructors.pyc
-${PYSITELIB}/pandas/tests/indexes/datetimes/test_constructors.pyo
 ${PYSITELIB}/pandas/tests/indexes/datetimes/test_date_range.py
 ${PYSITELIB}/pandas/tests/indexes/datetimes/test_date_range.pyc
-${PYSITELIB}/pandas/tests/indexes/datetimes/test_date_range.pyo
 ${PYSITELIB}/pandas/tests/indexes/datetimes/test_datetime.py
 ${PYSITELIB}/pandas/tests/indexes/datetimes/test_datetime.pyc
-${PYSITELIB}/pandas/tests/indexes/datetimes/test_datetime.pyo
 ${PYSITELIB}/pandas/tests/indexes/datetimes/test_datetimelike.py
 ${PYSITELIB}/pandas/tests/indexes/datetimes/test_datetimelike.pyc
-${PYSITELIB}/pandas/tests/indexes/datetimes/test_datetimelike.pyo
 ${PYSITELIB}/pandas/tests/indexes/datetimes/test_delete.py
 ${PYSITELIB}/pandas/tests/indexes/datetimes/test_delete.pyc
-${PYSITELIB}/pandas/tests/indexes/datetimes/test_delete.pyo
 ${PYSITELIB}/pandas/tests/indexes/datetimes/test_formats.py
 ${PYSITELIB}/pandas/tests/indexes/datetimes/test_formats.pyc
-${PYSITELIB}/pandas/tests/indexes/datetimes/test_formats.pyo
 ${PYSITELIB}/pandas/tests/indexes/datetimes/test_freq_attr.py
 ${PYSITELIB}/pandas/tests/indexes/datetimes/test_freq_attr.pyc
-${PYSITELIB}/pandas/tests/indexes/datetimes/test_freq_attr.pyo
 ${PYSITELIB}/pandas/tests/indexes/datetimes/test_indexing.py
 ${PYSITELIB}/pandas/tests/indexes/datetimes/test_indexing.pyc
-${PYSITELIB}/pandas/tests/indexes/datetimes/test_indexing.pyo
 ${PYSITELIB}/pandas/tests/indexes/datetimes/test_join.py
 ${PYSITELIB}/pandas/tests/indexes/datetimes/test_join.pyc
-${PYSITELIB}/pandas/tests/indexes/datetimes/test_join.pyo
 ${PYSITELIB}/pandas/tests/indexes/datetimes/test_map.py
 ${PYSITELIB}/pandas/tests/indexes/datetimes/test_map.pyc
-${PYSITELIB}/pandas/tests/indexes/datetimes/test_map.pyo
 ${PYSITELIB}/pandas/tests/indexes/datetimes/test_misc.py
 ${PYSITELIB}/pandas/tests/indexes/datetimes/test_misc.pyc
-${PYSITELIB}/pandas/tests/indexes/datetimes/test_misc.pyo
 ${PYSITELIB}/pandas/tests/indexes/datetimes/test_npfuncs.py
 ${PYSITELIB}/pandas/tests/indexes/datetimes/test_npfuncs.pyc
-${PYSITELIB}/pandas/tests/indexes/datetimes/test_npfuncs.pyo
 ${PYSITELIB}/pandas/tests/indexes/datetimes/test_ops.py
 ${PYSITELIB}/pandas/tests/indexes/datetimes/test_ops.pyc
-${PYSITELIB}/pandas/tests/indexes/datetimes/test_ops.pyo
 ${PYSITELIB}/pandas/tests/indexes/datetimes/test_partial_slicing.py
 ${PYSITELIB}/pandas/tests/indexes/datetimes/test_partial_slicing.pyc
-${PYSITELIB}/pandas/tests/indexes/datetimes/test_partial_slicing.pyo
 ${PYSITELIB}/pandas/tests/indexes/datetimes/test_pickle.py
 ${PYSITELIB}/pandas/tests/indexes/datetimes/test_pickle.pyc
-${PYSITELIB}/pandas/tests/indexes/datetimes/test_pickle.pyo
 ${PYSITELIB}/pandas/tests/indexes/datetimes/test_reindex.py
 ${PYSITELIB}/pandas/tests/indexes/datetimes/test_reindex.pyc
-${PYSITELIB}/pandas/tests/indexes/datetimes/test_reindex.pyo
 ${PYSITELIB}/pandas/tests/indexes/datetimes/test_scalar_compat.py
 ${PYSITELIB}/pandas/tests/indexes/datetimes/test_scalar_compat.pyc
-${PYSITELIB}/pandas/tests/indexes/datetimes/test_scalar_compat.pyo
 ${PYSITELIB}/pandas/tests/indexes/datetimes/test_setops.py
 ${PYSITELIB}/pandas/tests/indexes/datetimes/test_setops.pyc
-${PYSITELIB}/pandas/tests/indexes/datetimes/test_setops.pyo
 ${PYSITELIB}/pandas/tests/indexes/datetimes/test_timezones.py
 ${PYSITELIB}/pandas/tests/indexes/datetimes/test_timezones.pyc
-${PYSITELIB}/pandas/tests/indexes/datetimes/test_timezones.pyo
 ${PYSITELIB}/pandas/tests/indexes/datetimes/test_unique.py
 ${PYSITELIB}/pandas/tests/indexes/datetimes/test_unique.pyc
-${PYSITELIB}/pandas/tests/indexes/datetimes/test_unique.pyo
 ${PYSITELIB}/pandas/tests/indexes/interval/__init__.py
 ${PYSITELIB}/pandas/tests/indexes/interval/__init__.pyc
-${PYSITELIB}/pandas/tests/indexes/interval/__init__.pyo
 ${PYSITELIB}/pandas/tests/indexes/interval/test_astype.py
 ${PYSITELIB}/pandas/tests/indexes/interval/test_astype.pyc
-${PYSITELIB}/pandas/tests/indexes/interval/test_astype.pyo
 ${PYSITELIB}/pandas/tests/indexes/interval/test_base.py
 ${PYSITELIB}/pandas/tests/indexes/interval/test_base.pyc
-${PYSITELIB}/pandas/tests/indexes/interval/test_base.pyo
 ${PYSITELIB}/pandas/tests/indexes/interval/test_constructors.py
 ${PYSITELIB}/pandas/tests/indexes/interval/test_constructors.pyc
-${PYSITELIB}/pandas/tests/indexes/interval/test_constructors.pyo
 ${PYSITELIB}/pandas/tests/indexes/interval/test_equals.py
 ${PYSITELIB}/pandas/tests/indexes/interval/test_equals.pyc
-${PYSITELIB}/pandas/tests/indexes/interval/test_equals.pyo
 ${PYSITELIB}/pandas/tests/indexes/interval/test_formats.py
 ${PYSITELIB}/pandas/tests/indexes/interval/test_formats.pyc
-${PYSITELIB}/pandas/tests/indexes/interval/test_formats.pyo
 ${PYSITELIB}/pandas/tests/indexes/interval/test_indexing.py
 ${PYSITELIB}/pandas/tests/indexes/interval/test_indexing.pyc
-${PYSITELIB}/pandas/tests/indexes/interval/test_indexing.pyo
 ${PYSITELIB}/pandas/tests/indexes/interval/test_interval.py
 ${PYSITELIB}/pandas/tests/indexes/interval/test_interval.pyc
-${PYSITELIB}/pandas/tests/indexes/interval/test_interval.pyo
 ${PYSITELIB}/pandas/tests/indexes/interval/test_interval_range.py
 ${PYSITELIB}/pandas/tests/indexes/interval/test_interval_range.pyc
-${PYSITELIB}/pandas/tests/indexes/interval/test_interval_range.pyo
 ${PYSITELIB}/pandas/tests/indexes/interval/test_interval_tree.py
 ${PYSITELIB}/pandas/tests/indexes/interval/test_interval_tree.pyc
-${PYSITELIB}/pandas/tests/indexes/interval/test_interval_tree.pyo
 ${PYSITELIB}/pandas/tests/indexes/interval/test_join.py
 ${PYSITELIB}/pandas/tests/indexes/interval/test_join.pyc
-${PYSITELIB}/pandas/tests/indexes/interval/test_join.pyo
 ${PYSITELIB}/pandas/tests/indexes/interval/test_pickle.py
 ${PYSITELIB}/pandas/tests/indexes/interval/test_pickle.pyc
-${PYSITELIB}/pandas/tests/indexes/interval/test_pickle.pyo
 ${PYSITELIB}/pandas/tests/indexes/interval/test_setops.py
 ${PYSITELIB}/pandas/tests/indexes/interval/test_setops.pyc
-${PYSITELIB}/pandas/tests/indexes/interval/test_setops.pyo
 ${PYSITELIB}/pandas/tests/indexes/multi/__init__.py
 ${PYSITELIB}/pandas/tests/indexes/multi/__init__.pyc
-${PYSITELIB}/pandas/tests/indexes/multi/__init__.pyo
 ${PYSITELIB}/pandas/tests/indexes/multi/conftest.py
 ${PYSITELIB}/pandas/tests/indexes/multi/conftest.pyc
-${PYSITELIB}/pandas/tests/indexes/multi/conftest.pyo
 ${PYSITELIB}/pandas/tests/indexes/multi/test_analytics.py
 ${PYSITELIB}/pandas/tests/indexes/multi/test_analytics.pyc
-${PYSITELIB}/pandas/tests/indexes/multi/test_analytics.pyo
 ${PYSITELIB}/pandas/tests/indexes/multi/test_astype.py
 ${PYSITELIB}/pandas/tests/indexes/multi/test_astype.pyc
-${PYSITELIB}/pandas/tests/indexes/multi/test_astype.pyo
 ${PYSITELIB}/pandas/tests/indexes/multi/test_compat.py
 ${PYSITELIB}/pandas/tests/indexes/multi/test_compat.pyc
-${PYSITELIB}/pandas/tests/indexes/multi/test_compat.pyo
 ${PYSITELIB}/pandas/tests/indexes/multi/test_constructors.py
 ${PYSITELIB}/pandas/tests/indexes/multi/test_constructors.pyc
-${PYSITELIB}/pandas/tests/indexes/multi/test_constructors.pyo
 ${PYSITELIB}/pandas/tests/indexes/multi/test_conversion.py
 ${PYSITELIB}/pandas/tests/indexes/multi/test_conversion.pyc
-${PYSITELIB}/pandas/tests/indexes/multi/test_conversion.pyo
 ${PYSITELIB}/pandas/tests/indexes/multi/test_copy.py
 ${PYSITELIB}/pandas/tests/indexes/multi/test_copy.pyc
-${PYSITELIB}/pandas/tests/indexes/multi/test_copy.pyo
 ${PYSITELIB}/pandas/tests/indexes/multi/test_drop.py
 ${PYSITELIB}/pandas/tests/indexes/multi/test_drop.pyc
-${PYSITELIB}/pandas/tests/indexes/multi/test_drop.pyo
 ${PYSITELIB}/pandas/tests/indexes/multi/test_duplicates.py
 ${PYSITELIB}/pandas/tests/indexes/multi/test_duplicates.pyc
-${PYSITELIB}/pandas/tests/indexes/multi/test_duplicates.pyo
 ${PYSITELIB}/pandas/tests/indexes/multi/test_equivalence.py
 ${PYSITELIB}/pandas/tests/indexes/multi/test_equivalence.pyc
-${PYSITELIB}/pandas/tests/indexes/multi/test_equivalence.pyo
 ${PYSITELIB}/pandas/tests/indexes/multi/test_formats.py
 ${PYSITELIB}/pandas/tests/indexes/multi/test_formats.pyc
-${PYSITELIB}/pandas/tests/indexes/multi/test_formats.pyo
 ${PYSITELIB}/pandas/tests/indexes/multi/test_get_level_values.py
 ${PYSITELIB}/pandas/tests/indexes/multi/test_get_level_values.pyc
-${PYSITELIB}/pandas/tests/indexes/multi/test_get_level_values.pyo
 ${PYSITELIB}/pandas/tests/indexes/multi/test_get_set.py
 ${PYSITELIB}/pandas/tests/indexes/multi/test_get_set.pyc
-${PYSITELIB}/pandas/tests/indexes/multi/test_get_set.pyo
 ${PYSITELIB}/pandas/tests/indexes/multi/test_indexing.py
 ${PYSITELIB}/pandas/tests/indexes/multi/test_indexing.pyc
-${PYSITELIB}/pandas/tests/indexes/multi/test_indexing.pyo
 ${PYSITELIB}/pandas/tests/indexes/multi/test_integrity.py
 ${PYSITELIB}/pandas/tests/indexes/multi/test_integrity.pyc
-${PYSITELIB}/pandas/tests/indexes/multi/test_integrity.pyo
 ${PYSITELIB}/pandas/tests/indexes/multi/test_isin.py
 ${PYSITELIB}/pandas/tests/indexes/multi/test_isin.pyc
-${PYSITELIB}/pandas/tests/indexes/multi/test_isin.pyo
 ${PYSITELIB}/pandas/tests/indexes/multi/test_join.py
 ${PYSITELIB}/pandas/tests/indexes/multi/test_join.pyc
-${PYSITELIB}/pandas/tests/indexes/multi/test_join.pyo
 ${PYSITELIB}/pandas/tests/indexes/multi/test_lexsort.py
 ${PYSITELIB}/pandas/tests/indexes/multi/test_lexsort.pyc
-${PYSITELIB}/pandas/tests/indexes/multi/test_lexsort.pyo
 ${PYSITELIB}/pandas/tests/indexes/multi/test_missing.py
 ${PYSITELIB}/pandas/tests/indexes/multi/test_missing.pyc
-${PYSITELIB}/pandas/tests/indexes/multi/test_missing.pyo
 ${PYSITELIB}/pandas/tests/indexes/multi/test_monotonic.py
 ${PYSITELIB}/pandas/tests/indexes/multi/test_monotonic.pyc
-${PYSITELIB}/pandas/tests/indexes/multi/test_monotonic.pyo
 ${PYSITELIB}/pandas/tests/indexes/multi/test_names.py
 ${PYSITELIB}/pandas/tests/indexes/multi/test_names.pyc
-${PYSITELIB}/pandas/tests/indexes/multi/test_names.pyo
 ${PYSITELIB}/pandas/tests/indexes/multi/test_partial_indexing.py
 ${PYSITELIB}/pandas/tests/indexes/multi/test_partial_indexing.pyc
-${PYSITELIB}/pandas/tests/indexes/multi/test_partial_indexing.pyo
 ${PYSITELIB}/pandas/tests/indexes/multi/test_pickle.py
 ${PYSITELIB}/pandas/tests/indexes/multi/test_pickle.pyc
-${PYSITELIB}/pandas/tests/indexes/multi/test_pickle.pyo
 ${PYSITELIB}/pandas/tests/indexes/multi/test_reindex.py
 ${PYSITELIB}/pandas/tests/indexes/multi/test_reindex.pyc
-${PYSITELIB}/pandas/tests/indexes/multi/test_reindex.pyo
 ${PYSITELIB}/pandas/tests/indexes/multi/test_reshape.py
 ${PYSITELIB}/pandas/tests/indexes/multi/test_reshape.pyc
-${PYSITELIB}/pandas/tests/indexes/multi/test_reshape.pyo
 ${PYSITELIB}/pandas/tests/indexes/multi/test_setops.py
 ${PYSITELIB}/pandas/tests/indexes/multi/test_setops.pyc
-${PYSITELIB}/pandas/tests/indexes/multi/test_setops.pyo
 ${PYSITELIB}/pandas/tests/indexes/multi/test_sorting.py
 ${PYSITELIB}/pandas/tests/indexes/multi/test_sorting.pyc
-${PYSITELIB}/pandas/tests/indexes/multi/test_sorting.pyo
 ${PYSITELIB}/pandas/tests/indexes/multi/test_take.py
 ${PYSITELIB}/pandas/tests/indexes/multi/test_take.pyc
-${PYSITELIB}/pandas/tests/indexes/multi/test_take.pyo
 ${PYSITELIB}/pandas/tests/indexes/numeric/__init__.py
 ${PYSITELIB}/pandas/tests/indexes/numeric/__init__.pyc
-${PYSITELIB}/pandas/tests/indexes/numeric/__init__.pyo
 ${PYSITELIB}/pandas/tests/indexes/numeric/test_astype.py
 ${PYSITELIB}/pandas/tests/indexes/numeric/test_astype.pyc
-${PYSITELIB}/pandas/tests/indexes/numeric/test_astype.pyo
 ${PYSITELIB}/pandas/tests/indexes/numeric/test_indexing.py
 ${PYSITELIB}/pandas/tests/indexes/numeric/test_indexing.pyc
-${PYSITELIB}/pandas/tests/indexes/numeric/test_indexing.pyo
 ${PYSITELIB}/pandas/tests/indexes/numeric/test_join.py
 ${PYSITELIB}/pandas/tests/indexes/numeric/test_join.pyc
-${PYSITELIB}/pandas/tests/indexes/numeric/test_join.pyo
 ${PYSITELIB}/pandas/tests/indexes/numeric/test_numeric.py
 ${PYSITELIB}/pandas/tests/indexes/numeric/test_numeric.pyc
-${PYSITELIB}/pandas/tests/indexes/numeric/test_numeric.pyo
 ${PYSITELIB}/pandas/tests/indexes/numeric/test_setops.py
 ${PYSITELIB}/pandas/tests/indexes/numeric/test_setops.pyc
-${PYSITELIB}/pandas/tests/indexes/numeric/test_setops.pyo
 ${PYSITELIB}/pandas/tests/indexes/object/__init__.py
 ${PYSITELIB}/pandas/tests/indexes/object/__init__.pyc
-${PYSITELIB}/pandas/tests/indexes/object/__init__.pyo
 ${PYSITELIB}/pandas/tests/indexes/object/test_astype.py
 ${PYSITELIB}/pandas/tests/indexes/object/test_astype.pyc
-${PYSITELIB}/pandas/tests/indexes/object/test_astype.pyo
 ${PYSITELIB}/pandas/tests/indexes/object/test_indexing.py
 ${PYSITELIB}/pandas/tests/indexes/object/test_indexing.pyc
-${PYSITELIB}/pandas/tests/indexes/object/test_indexing.pyo
 ${PYSITELIB}/pandas/tests/indexes/period/__init__.py
 ${PYSITELIB}/pandas/tests/indexes/period/__init__.pyc
-${PYSITELIB}/pandas/tests/indexes/period/__init__.pyo
 ${PYSITELIB}/pandas/tests/indexes/period/methods/__init__.py
 ${PYSITELIB}/pandas/tests/indexes/period/methods/__init__.pyc
-${PYSITELIB}/pandas/tests/indexes/period/methods/__init__.pyo
 ${PYSITELIB}/pandas/tests/indexes/period/methods/test_asfreq.py
 ${PYSITELIB}/pandas/tests/indexes/period/methods/test_asfreq.pyc
-${PYSITELIB}/pandas/tests/indexes/period/methods/test_asfreq.pyo
 ${PYSITELIB}/pandas/tests/indexes/period/methods/test_astype.py
 ${PYSITELIB}/pandas/tests/indexes/period/methods/test_astype.pyc
-${PYSITELIB}/pandas/tests/indexes/period/methods/test_astype.pyo
 ${PYSITELIB}/pandas/tests/indexes/period/methods/test_factorize.py
 ${PYSITELIB}/pandas/tests/indexes/period/methods/test_factorize.pyc
-${PYSITELIB}/pandas/tests/indexes/period/methods/test_factorize.pyo
 ${PYSITELIB}/pandas/tests/indexes/period/methods/test_fillna.py
 ${PYSITELIB}/pandas/tests/indexes/period/methods/test_fillna.pyc
-${PYSITELIB}/pandas/tests/indexes/period/methods/test_fillna.pyo
 ${PYSITELIB}/pandas/tests/indexes/period/methods/test_insert.py
 ${PYSITELIB}/pandas/tests/indexes/period/methods/test_insert.pyc
-${PYSITELIB}/pandas/tests/indexes/period/methods/test_insert.pyo
 ${PYSITELIB}/pandas/tests/indexes/period/methods/test_is_full.py
 ${PYSITELIB}/pandas/tests/indexes/period/methods/test_is_full.pyc
-${PYSITELIB}/pandas/tests/indexes/period/methods/test_is_full.pyo
 ${PYSITELIB}/pandas/tests/indexes/period/methods/test_repeat.py
 ${PYSITELIB}/pandas/tests/indexes/period/methods/test_repeat.pyc
-${PYSITELIB}/pandas/tests/indexes/period/methods/test_repeat.pyo
 ${PYSITELIB}/pandas/tests/indexes/period/methods/test_shift.py
 ${PYSITELIB}/pandas/tests/indexes/period/methods/test_shift.pyc
-${PYSITELIB}/pandas/tests/indexes/period/methods/test_shift.pyo
 ${PYSITELIB}/pandas/tests/indexes/period/methods/test_to_timestamp.py
 ${PYSITELIB}/pandas/tests/indexes/period/methods/test_to_timestamp.pyc
-${PYSITELIB}/pandas/tests/indexes/period/methods/test_to_timestamp.pyo
 ${PYSITELIB}/pandas/tests/indexes/period/test_constructors.py
 ${PYSITELIB}/pandas/tests/indexes/period/test_constructors.pyc
-${PYSITELIB}/pandas/tests/indexes/period/test_constructors.pyo
 ${PYSITELIB}/pandas/tests/indexes/period/test_formats.py
 ${PYSITELIB}/pandas/tests/indexes/period/test_formats.pyc
-${PYSITELIB}/pandas/tests/indexes/period/test_formats.pyo
 ${PYSITELIB}/pandas/tests/indexes/period/test_freq_attr.py
 ${PYSITELIB}/pandas/tests/indexes/period/test_freq_attr.pyc
-${PYSITELIB}/pandas/tests/indexes/period/test_freq_attr.pyo
 ${PYSITELIB}/pandas/tests/indexes/period/test_indexing.py
 ${PYSITELIB}/pandas/tests/indexes/period/test_indexing.pyc
-${PYSITELIB}/pandas/tests/indexes/period/test_indexing.pyo
 ${PYSITELIB}/pandas/tests/indexes/period/test_join.py
 ${PYSITELIB}/pandas/tests/indexes/period/test_join.pyc
-${PYSITELIB}/pandas/tests/indexes/period/test_join.pyo
 ${PYSITELIB}/pandas/tests/indexes/period/test_monotonic.py
 ${PYSITELIB}/pandas/tests/indexes/period/test_monotonic.pyc
-${PYSITELIB}/pandas/tests/indexes/period/test_monotonic.pyo
 ${PYSITELIB}/pandas/tests/indexes/period/test_partial_slicing.py
 ${PYSITELIB}/pandas/tests/indexes/period/test_partial_slicing.pyc
-${PYSITELIB}/pandas/tests/indexes/period/test_partial_slicing.pyo
 ${PYSITELIB}/pandas/tests/indexes/period/test_period.py
 ${PYSITELIB}/pandas/tests/indexes/period/test_period.pyc
-${PYSITELIB}/pandas/tests/indexes/period/test_period.pyo
 ${PYSITELIB}/pandas/tests/indexes/period/test_period_range.py
 ${PYSITELIB}/pandas/tests/indexes/period/test_period_range.pyc
-${PYSITELIB}/pandas/tests/indexes/period/test_period_range.pyo
 ${PYSITELIB}/pandas/tests/indexes/period/test_pickle.py
 ${PYSITELIB}/pandas/tests/indexes/period/test_pickle.pyc
-${PYSITELIB}/pandas/tests/indexes/period/test_pickle.pyo
 ${PYSITELIB}/pandas/tests/indexes/period/test_resolution.py
 ${PYSITELIB}/pandas/tests/indexes/period/test_resolution.pyc
-${PYSITELIB}/pandas/tests/indexes/period/test_resolution.pyo
 ${PYSITELIB}/pandas/tests/indexes/period/test_scalar_compat.py
 ${PYSITELIB}/pandas/tests/indexes/period/test_scalar_compat.pyc
-${PYSITELIB}/pandas/tests/indexes/period/test_scalar_compat.pyo
 ${PYSITELIB}/pandas/tests/indexes/period/test_searchsorted.py
 ${PYSITELIB}/pandas/tests/indexes/period/test_searchsorted.pyc
-${PYSITELIB}/pandas/tests/indexes/period/test_searchsorted.pyo
 ${PYSITELIB}/pandas/tests/indexes/period/test_setops.py
 ${PYSITELIB}/pandas/tests/indexes/period/test_setops.pyc
-${PYSITELIB}/pandas/tests/indexes/period/test_setops.pyo
 ${PYSITELIB}/pandas/tests/indexes/period/test_tools.py
 ${PYSITELIB}/pandas/tests/indexes/period/test_tools.pyc
-${PYSITELIB}/pandas/tests/indexes/period/test_tools.pyo
 ${PYSITELIB}/pandas/tests/indexes/ranges/__init__.py
 ${PYSITELIB}/pandas/tests/indexes/ranges/__init__.pyc
-${PYSITELIB}/pandas/tests/indexes/ranges/__init__.pyo
 ${PYSITELIB}/pandas/tests/indexes/ranges/test_constructors.py
 ${PYSITELIB}/pandas/tests/indexes/ranges/test_constructors.pyc
-${PYSITELIB}/pandas/tests/indexes/ranges/test_constructors.pyo
 ${PYSITELIB}/pandas/tests/indexes/ranges/test_indexing.py
 ${PYSITELIB}/pandas/tests/indexes/ranges/test_indexing.pyc
-${PYSITELIB}/pandas/tests/indexes/ranges/test_indexing.pyo
 ${PYSITELIB}/pandas/tests/indexes/ranges/test_join.py
 ${PYSITELIB}/pandas/tests/indexes/ranges/test_join.pyc
-${PYSITELIB}/pandas/tests/indexes/ranges/test_join.pyo
 ${PYSITELIB}/pandas/tests/indexes/ranges/test_range.py
 ${PYSITELIB}/pandas/tests/indexes/ranges/test_range.pyc
-${PYSITELIB}/pandas/tests/indexes/ranges/test_range.pyo
 ${PYSITELIB}/pandas/tests/indexes/ranges/test_setops.py
 ${PYSITELIB}/pandas/tests/indexes/ranges/test_setops.pyc
-${PYSITELIB}/pandas/tests/indexes/ranges/test_setops.pyo
 ${PYSITELIB}/pandas/tests/indexes/test_any_index.py
 ${PYSITELIB}/pandas/tests/indexes/test_any_index.pyc
-${PYSITELIB}/pandas/tests/indexes/test_any_index.pyo
 ${PYSITELIB}/pandas/tests/indexes/test_base.py
 ${PYSITELIB}/pandas/tests/indexes/test_base.pyc
-${PYSITELIB}/pandas/tests/indexes/test_base.pyo
 ${PYSITELIB}/pandas/tests/indexes/test_common.py
 ${PYSITELIB}/pandas/tests/indexes/test_common.pyc
-${PYSITELIB}/pandas/tests/indexes/test_common.pyo
 ${PYSITELIB}/pandas/tests/indexes/test_engines.py
 ${PYSITELIB}/pandas/tests/indexes/test_engines.pyc
-${PYSITELIB}/pandas/tests/indexes/test_engines.pyo
 ${PYSITELIB}/pandas/tests/indexes/test_frozen.py
 ${PYSITELIB}/pandas/tests/indexes/test_frozen.pyc
-${PYSITELIB}/pandas/tests/indexes/test_frozen.pyo
 ${PYSITELIB}/pandas/tests/indexes/test_index_new.py
 ${PYSITELIB}/pandas/tests/indexes/test_index_new.pyc
-${PYSITELIB}/pandas/tests/indexes/test_index_new.pyo
 ${PYSITELIB}/pandas/tests/indexes/test_indexing.py
 ${PYSITELIB}/pandas/tests/indexes/test_indexing.pyc
-${PYSITELIB}/pandas/tests/indexes/test_indexing.pyo
 ${PYSITELIB}/pandas/tests/indexes/test_numpy_compat.py
 ${PYSITELIB}/pandas/tests/indexes/test_numpy_compat.pyc
-${PYSITELIB}/pandas/tests/indexes/test_numpy_compat.pyo
 ${PYSITELIB}/pandas/tests/indexes/test_setops.py
 ${PYSITELIB}/pandas/tests/indexes/test_setops.pyc
-${PYSITELIB}/pandas/tests/indexes/test_setops.pyo
 ${PYSITELIB}/pandas/tests/indexes/test_subclass.py
 ${PYSITELIB}/pandas/tests/indexes/test_subclass.pyc
-${PYSITELIB}/pandas/tests/indexes/test_subclass.pyo
 ${PYSITELIB}/pandas/tests/indexes/timedeltas/__init__.py
 ${PYSITELIB}/pandas/tests/indexes/timedeltas/__init__.pyc
-${PYSITELIB}/pandas/tests/indexes/timedeltas/__init__.pyo
 ${PYSITELIB}/pandas/tests/indexes/timedeltas/methods/__init__.py
 ${PYSITELIB}/pandas/tests/indexes/timedeltas/methods/__init__.pyc
-${PYSITELIB}/pandas/tests/indexes/timedeltas/methods/__init__.pyo
 ${PYSITELIB}/pandas/tests/indexes/timedeltas/methods/test_astype.py
 ${PYSITELIB}/pandas/tests/indexes/timedeltas/methods/test_astype.pyc
-${PYSITELIB}/pandas/tests/indexes/timedeltas/methods/test_astype.pyo
 ${PYSITELIB}/pandas/tests/indexes/timedeltas/methods/test_factorize.py
 ${PYSITELIB}/pandas/tests/indexes/timedeltas/methods/test_factorize.pyc
-${PYSITELIB}/pandas/tests/indexes/timedeltas/methods/test_factorize.pyo
 ${PYSITELIB}/pandas/tests/indexes/timedeltas/methods/test_fillna.py
 ${PYSITELIB}/pandas/tests/indexes/timedeltas/methods/test_fillna.pyc
-${PYSITELIB}/pandas/tests/indexes/timedeltas/methods/test_fillna.pyo
 ${PYSITELIB}/pandas/tests/indexes/timedeltas/methods/test_insert.py
 ${PYSITELIB}/pandas/tests/indexes/timedeltas/methods/test_insert.pyc
-${PYSITELIB}/pandas/tests/indexes/timedeltas/methods/test_insert.pyo
 ${PYSITELIB}/pandas/tests/indexes/timedeltas/methods/test_repeat.py
 ${PYSITELIB}/pandas/tests/indexes/timedeltas/methods/test_repeat.pyc
-${PYSITELIB}/pandas/tests/indexes/timedeltas/methods/test_repeat.pyo
 ${PYSITELIB}/pandas/tests/indexes/timedeltas/methods/test_shift.py
 ${PYSITELIB}/pandas/tests/indexes/timedeltas/methods/test_shift.pyc
-${PYSITELIB}/pandas/tests/indexes/timedeltas/methods/test_shift.pyo
 ${PYSITELIB}/pandas/tests/indexes/timedeltas/test_constructors.py
 ${PYSITELIB}/pandas/tests/indexes/timedeltas/test_constructors.pyc
-${PYSITELIB}/pandas/tests/indexes/timedeltas/test_constructors.pyo
 ${PYSITELIB}/pandas/tests/indexes/timedeltas/test_delete.py
 ${PYSITELIB}/pandas/tests/indexes/timedeltas/test_delete.pyc
-${PYSITELIB}/pandas/tests/indexes/timedeltas/test_delete.pyo
 ${PYSITELIB}/pandas/tests/indexes/timedeltas/test_formats.py
 ${PYSITELIB}/pandas/tests/indexes/timedeltas/test_formats.pyc
-${PYSITELIB}/pandas/tests/indexes/timedeltas/test_formats.pyo
 ${PYSITELIB}/pandas/tests/indexes/timedeltas/test_freq_attr.py
 ${PYSITELIB}/pandas/tests/indexes/timedeltas/test_freq_attr.pyc
-${PYSITELIB}/pandas/tests/indexes/timedeltas/test_freq_attr.pyo
 ${PYSITELIB}/pandas/tests/indexes/timedeltas/test_indexing.py
 ${PYSITELIB}/pandas/tests/indexes/timedeltas/test_indexing.pyc
-${PYSITELIB}/pandas/tests/indexes/timedeltas/test_indexing.pyo
 ${PYSITELIB}/pandas/tests/indexes/timedeltas/test_join.py
 ${PYSITELIB}/pandas/tests/indexes/timedeltas/test_join.pyc
-${PYSITELIB}/pandas/tests/indexes/timedeltas/test_join.pyo
 ${PYSITELIB}/pandas/tests/indexes/timedeltas/test_ops.py
 ${PYSITELIB}/pandas/tests/indexes/timedeltas/test_ops.pyc
-${PYSITELIB}/pandas/tests/indexes/timedeltas/test_ops.pyo
 ${PYSITELIB}/pandas/tests/indexes/timedeltas/test_pickle.py
 ${PYSITELIB}/pandas/tests/indexes/timedeltas/test_pickle.pyc
-${PYSITELIB}/pandas/tests/indexes/timedeltas/test_pickle.pyo
 ${PYSITELIB}/pandas/tests/indexes/timedeltas/test_scalar_compat.py
 ${PYSITELIB}/pandas/tests/indexes/timedeltas/test_scalar_compat.pyc
-${PYSITELIB}/pandas/tests/indexes/timedeltas/test_scalar_compat.pyo
 ${PYSITELIB}/pandas/tests/indexes/timedeltas/test_searchsorted.py
 ${PYSITELIB}/pandas/tests/indexes/timedeltas/test_searchsorted.pyc
-${PYSITELIB}/pandas/tests/indexes/timedeltas/test_searchsorted.pyo
 ${PYSITELIB}/pandas/tests/indexes/timedeltas/test_setops.py
 ${PYSITELIB}/pandas/tests/indexes/timedeltas/test_setops.pyc
-${PYSITELIB}/pandas/tests/indexes/timedeltas/test_setops.pyo
 ${PYSITELIB}/pandas/tests/indexes/timedeltas/test_timedelta.py
 ${PYSITELIB}/pandas/tests/indexes/timedeltas/test_timedelta.pyc
-${PYSITELIB}/pandas/tests/indexes/timedeltas/test_timedelta.pyo
 ${PYSITELIB}/pandas/tests/indexes/timedeltas/test_timedelta_range.py
 ${PYSITELIB}/pandas/tests/indexes/timedeltas/test_timedelta_range.pyc
-${PYSITELIB}/pandas/tests/indexes/timedeltas/test_timedelta_range.pyo
 ${PYSITELIB}/pandas/tests/indexing/__init__.py
 ${PYSITELIB}/pandas/tests/indexing/__init__.pyc
-${PYSITELIB}/pandas/tests/indexing/__init__.pyo
 ${PYSITELIB}/pandas/tests/indexing/common.py
 ${PYSITELIB}/pandas/tests/indexing/common.pyc
-${PYSITELIB}/pandas/tests/indexing/common.pyo
+${PYSITELIB}/pandas/tests/indexing/conftest.py
+${PYSITELIB}/pandas/tests/indexing/conftest.pyc
 ${PYSITELIB}/pandas/tests/indexing/interval/__init__.py
 ${PYSITELIB}/pandas/tests/indexing/interval/__init__.pyc
-${PYSITELIB}/pandas/tests/indexing/interval/__init__.pyo
 ${PYSITELIB}/pandas/tests/indexing/interval/test_interval.py
 ${PYSITELIB}/pandas/tests/indexing/interval/test_interval.pyc
-${PYSITELIB}/pandas/tests/indexing/interval/test_interval.pyo
 ${PYSITELIB}/pandas/tests/indexing/interval/test_interval_new.py
 ${PYSITELIB}/pandas/tests/indexing/interval/test_interval_new.pyc
-${PYSITELIB}/pandas/tests/indexing/interval/test_interval_new.pyo
 ${PYSITELIB}/pandas/tests/indexing/multiindex/__init__.py
 ${PYSITELIB}/pandas/tests/indexing/multiindex/__init__.pyc
-${PYSITELIB}/pandas/tests/indexing/multiindex/__init__.pyo
 ${PYSITELIB}/pandas/tests/indexing/multiindex/test_chaining_and_caching.py
 ${PYSITELIB}/pandas/tests/indexing/multiindex/test_chaining_and_caching.pyc
-${PYSITELIB}/pandas/tests/indexing/multiindex/test_chaining_and_caching.pyo
 ${PYSITELIB}/pandas/tests/indexing/multiindex/test_datetime.py
 ${PYSITELIB}/pandas/tests/indexing/multiindex/test_datetime.pyc
-${PYSITELIB}/pandas/tests/indexing/multiindex/test_datetime.pyo
 ${PYSITELIB}/pandas/tests/indexing/multiindex/test_getitem.py
 ${PYSITELIB}/pandas/tests/indexing/multiindex/test_getitem.pyc
-${PYSITELIB}/pandas/tests/indexing/multiindex/test_getitem.pyo
 ${PYSITELIB}/pandas/tests/indexing/multiindex/test_iloc.py
 ${PYSITELIB}/pandas/tests/indexing/multiindex/test_iloc.pyc
-${PYSITELIB}/pandas/tests/indexing/multiindex/test_iloc.pyo
 ${PYSITELIB}/pandas/tests/indexing/multiindex/test_indexing_slow.py
 ${PYSITELIB}/pandas/tests/indexing/multiindex/test_indexing_slow.pyc
-${PYSITELIB}/pandas/tests/indexing/multiindex/test_indexing_slow.pyo
 ${PYSITELIB}/pandas/tests/indexing/multiindex/test_loc.py
 ${PYSITELIB}/pandas/tests/indexing/multiindex/test_loc.pyc
-${PYSITELIB}/pandas/tests/indexing/multiindex/test_loc.pyo
 ${PYSITELIB}/pandas/tests/indexing/multiindex/test_multiindex.py
 ${PYSITELIB}/pandas/tests/indexing/multiindex/test_multiindex.pyc
-${PYSITELIB}/pandas/tests/indexing/multiindex/test_multiindex.pyo
 ${PYSITELIB}/pandas/tests/indexing/multiindex/test_partial.py
 ${PYSITELIB}/pandas/tests/indexing/multiindex/test_partial.pyc
-${PYSITELIB}/pandas/tests/indexing/multiindex/test_partial.pyo
 ${PYSITELIB}/pandas/tests/indexing/multiindex/test_setitem.py
 ${PYSITELIB}/pandas/tests/indexing/multiindex/test_setitem.pyc
-${PYSITELIB}/pandas/tests/indexing/multiindex/test_setitem.pyo
 ${PYSITELIB}/pandas/tests/indexing/multiindex/test_slice.py
 ${PYSITELIB}/pandas/tests/indexing/multiindex/test_slice.pyc
-${PYSITELIB}/pandas/tests/indexing/multiindex/test_slice.pyo
 ${PYSITELIB}/pandas/tests/indexing/multiindex/test_sorted.py
 ${PYSITELIB}/pandas/tests/indexing/multiindex/test_sorted.pyc
-${PYSITELIB}/pandas/tests/indexing/multiindex/test_sorted.pyo
 ${PYSITELIB}/pandas/tests/indexing/test_at.py
 ${PYSITELIB}/pandas/tests/indexing/test_at.pyc
-${PYSITELIB}/pandas/tests/indexing/test_at.pyo
 ${PYSITELIB}/pandas/tests/indexing/test_categorical.py
 ${PYSITELIB}/pandas/tests/indexing/test_categorical.pyc
-${PYSITELIB}/pandas/tests/indexing/test_categorical.pyo
 ${PYSITELIB}/pandas/tests/indexing/test_chaining_and_caching.py
 ${PYSITELIB}/pandas/tests/indexing/test_chaining_and_caching.pyc
-${PYSITELIB}/pandas/tests/indexing/test_chaining_and_caching.pyo
 ${PYSITELIB}/pandas/tests/indexing/test_check_indexer.py
 ${PYSITELIB}/pandas/tests/indexing/test_check_indexer.pyc
-${PYSITELIB}/pandas/tests/indexing/test_check_indexer.pyo
 ${PYSITELIB}/pandas/tests/indexing/test_coercion.py
 ${PYSITELIB}/pandas/tests/indexing/test_coercion.pyc
-${PYSITELIB}/pandas/tests/indexing/test_coercion.pyo
 ${PYSITELIB}/pandas/tests/indexing/test_datetime.py
 ${PYSITELIB}/pandas/tests/indexing/test_datetime.pyc
-${PYSITELIB}/pandas/tests/indexing/test_datetime.pyo
 ${PYSITELIB}/pandas/tests/indexing/test_floats.py
 ${PYSITELIB}/pandas/tests/indexing/test_floats.pyc
-${PYSITELIB}/pandas/tests/indexing/test_floats.pyo
 ${PYSITELIB}/pandas/tests/indexing/test_iat.py
 ${PYSITELIB}/pandas/tests/indexing/test_iat.pyc
-${PYSITELIB}/pandas/tests/indexing/test_iat.pyo
 ${PYSITELIB}/pandas/tests/indexing/test_iloc.py
 ${PYSITELIB}/pandas/tests/indexing/test_iloc.pyc
-${PYSITELIB}/pandas/tests/indexing/test_iloc.pyo
 ${PYSITELIB}/pandas/tests/indexing/test_indexers.py
 ${PYSITELIB}/pandas/tests/indexing/test_indexers.pyc
-${PYSITELIB}/pandas/tests/indexing/test_indexers.pyo
 ${PYSITELIB}/pandas/tests/indexing/test_indexing.py
 ${PYSITELIB}/pandas/tests/indexing/test_indexing.pyc
-${PYSITELIB}/pandas/tests/indexing/test_indexing.pyo
 ${PYSITELIB}/pandas/tests/indexing/test_loc.py
 ${PYSITELIB}/pandas/tests/indexing/test_loc.pyc
-${PYSITELIB}/pandas/tests/indexing/test_loc.pyo
 ${PYSITELIB}/pandas/tests/indexing/test_na_indexing.py
 ${PYSITELIB}/pandas/tests/indexing/test_na_indexing.pyc
-${PYSITELIB}/pandas/tests/indexing/test_na_indexing.pyo
 ${PYSITELIB}/pandas/tests/indexing/test_partial.py
 ${PYSITELIB}/pandas/tests/indexing/test_partial.pyc
-${PYSITELIB}/pandas/tests/indexing/test_partial.pyo
 ${PYSITELIB}/pandas/tests/indexing/test_scalar.py
 ${PYSITELIB}/pandas/tests/indexing/test_scalar.pyc
-${PYSITELIB}/pandas/tests/indexing/test_scalar.pyo
 ${PYSITELIB}/pandas/tests/interchange/__init__.py
 ${PYSITELIB}/pandas/tests/interchange/__init__.pyc
-${PYSITELIB}/pandas/tests/interchange/__init__.pyo
 ${PYSITELIB}/pandas/tests/interchange/conftest.py
 ${PYSITELIB}/pandas/tests/interchange/conftest.pyc
-${PYSITELIB}/pandas/tests/interchange/conftest.pyo
 ${PYSITELIB}/pandas/tests/interchange/test_impl.py
 ${PYSITELIB}/pandas/tests/interchange/test_impl.pyc
-${PYSITELIB}/pandas/tests/interchange/test_impl.pyo
 ${PYSITELIB}/pandas/tests/interchange/test_spec_conformance.py
 ${PYSITELIB}/pandas/tests/interchange/test_spec_conformance.pyc
-${PYSITELIB}/pandas/tests/interchange/test_spec_conformance.pyo
 ${PYSITELIB}/pandas/tests/interchange/test_utils.py
 ${PYSITELIB}/pandas/tests/interchange/test_utils.pyc
-${PYSITELIB}/pandas/tests/interchange/test_utils.pyo
 ${PYSITELIB}/pandas/tests/internals/__init__.py
 ${PYSITELIB}/pandas/tests/internals/__init__.pyc
-${PYSITELIB}/pandas/tests/internals/__init__.pyo
 ${PYSITELIB}/pandas/tests/internals/test_api.py
 ${PYSITELIB}/pandas/tests/internals/test_api.pyc
-${PYSITELIB}/pandas/tests/internals/test_api.pyo
 ${PYSITELIB}/pandas/tests/internals/test_internals.py
 ${PYSITELIB}/pandas/tests/internals/test_internals.pyc
-${PYSITELIB}/pandas/tests/internals/test_internals.pyo
 ${PYSITELIB}/pandas/tests/internals/test_managers.py
 ${PYSITELIB}/pandas/tests/internals/test_managers.pyc
-${PYSITELIB}/pandas/tests/internals/test_managers.pyo
 ${PYSITELIB}/pandas/tests/io/__init__.py
 ${PYSITELIB}/pandas/tests/io/__init__.pyc
-${PYSITELIB}/pandas/tests/io/__init__.pyo
 ${PYSITELIB}/pandas/tests/io/conftest.py
 ${PYSITELIB}/pandas/tests/io/conftest.pyc
-${PYSITELIB}/pandas/tests/io/conftest.pyo
 ${PYSITELIB}/pandas/tests/io/data/fixed_width/fixed_width_format.txt
 ${PYSITELIB}/pandas/tests/io/data/gbq_fake_job.txt
 ${PYSITELIB}/pandas/tests/io/data/legacy_pickle/1.2.4/empty_frame_v1_2_4-GH#42345.pkl
@@ -2836,1414 +1984,947 @@ ${PYSITELIB}/pandas/tests/io/data/xml/fl
 ${PYSITELIB}/pandas/tests/io/data/xml/row_field_output.xsl
 ${PYSITELIB}/pandas/tests/io/excel/__init__.py
 ${PYSITELIB}/pandas/tests/io/excel/__init__.pyc
-${PYSITELIB}/pandas/tests/io/excel/__init__.pyo
 ${PYSITELIB}/pandas/tests/io/excel/conftest.py
 ${PYSITELIB}/pandas/tests/io/excel/conftest.pyc
-${PYSITELIB}/pandas/tests/io/excel/conftest.pyo
 ${PYSITELIB}/pandas/tests/io/excel/test_odf.py
 ${PYSITELIB}/pandas/tests/io/excel/test_odf.pyc
-${PYSITELIB}/pandas/tests/io/excel/test_odf.pyo
 ${PYSITELIB}/pandas/tests/io/excel/test_odswriter.py
 ${PYSITELIB}/pandas/tests/io/excel/test_odswriter.pyc
-${PYSITELIB}/pandas/tests/io/excel/test_odswriter.pyo
 ${PYSITELIB}/pandas/tests/io/excel/test_openpyxl.py
 ${PYSITELIB}/pandas/tests/io/excel/test_openpyxl.pyc
-${PYSITELIB}/pandas/tests/io/excel/test_openpyxl.pyo
 ${PYSITELIB}/pandas/tests/io/excel/test_readers.py
 ${PYSITELIB}/pandas/tests/io/excel/test_readers.pyc
-${PYSITELIB}/pandas/tests/io/excel/test_readers.pyo
 ${PYSITELIB}/pandas/tests/io/excel/test_style.py
 ${PYSITELIB}/pandas/tests/io/excel/test_style.pyc
-${PYSITELIB}/pandas/tests/io/excel/test_style.pyo
 ${PYSITELIB}/pandas/tests/io/excel/test_writers.py
 ${PYSITELIB}/pandas/tests/io/excel/test_writers.pyc
-${PYSITELIB}/pandas/tests/io/excel/test_writers.pyo
 ${PYSITELIB}/pandas/tests/io/excel/test_xlrd.py
 ${PYSITELIB}/pandas/tests/io/excel/test_xlrd.pyc
-${PYSITELIB}/pandas/tests/io/excel/test_xlrd.pyo
 ${PYSITELIB}/pandas/tests/io/excel/test_xlsxwriter.py
 ${PYSITELIB}/pandas/tests/io/excel/test_xlsxwriter.pyc
-${PYSITELIB}/pandas/tests/io/excel/test_xlsxwriter.pyo
-${PYSITELIB}/pandas/tests/io/excel/test_xlwt.py
-${PYSITELIB}/pandas/tests/io/excel/test_xlwt.pyc
-${PYSITELIB}/pandas/tests/io/excel/test_xlwt.pyo
 ${PYSITELIB}/pandas/tests/io/formats/__init__.py
 ${PYSITELIB}/pandas/tests/io/formats/__init__.pyc
-${PYSITELIB}/pandas/tests/io/formats/__init__.pyo
 ${PYSITELIB}/pandas/tests/io/formats/style/__init__.py
 ${PYSITELIB}/pandas/tests/io/formats/style/__init__.pyc
-${PYSITELIB}/pandas/tests/io/formats/style/__init__.pyo
 ${PYSITELIB}/pandas/tests/io/formats/style/test_bar.py
 ${PYSITELIB}/pandas/tests/io/formats/style/test_bar.pyc
-${PYSITELIB}/pandas/tests/io/formats/style/test_bar.pyo
-${PYSITELIB}/pandas/tests/io/formats/style/test_deprecated.py
-${PYSITELIB}/pandas/tests/io/formats/style/test_deprecated.pyc
-${PYSITELIB}/pandas/tests/io/formats/style/test_deprecated.pyo
 ${PYSITELIB}/pandas/tests/io/formats/style/test_exceptions.py
 ${PYSITELIB}/pandas/tests/io/formats/style/test_exceptions.pyc
-${PYSITELIB}/pandas/tests/io/formats/style/test_exceptions.pyo
 ${PYSITELIB}/pandas/tests/io/formats/style/test_format.py
 ${PYSITELIB}/pandas/tests/io/formats/style/test_format.pyc
-${PYSITELIB}/pandas/tests/io/formats/style/test_format.pyo
 ${PYSITELIB}/pandas/tests/io/formats/style/test_highlight.py
 ${PYSITELIB}/pandas/tests/io/formats/style/test_highlight.pyc
-${PYSITELIB}/pandas/tests/io/formats/style/test_highlight.pyo
 ${PYSITELIB}/pandas/tests/io/formats/style/test_html.py
 ${PYSITELIB}/pandas/tests/io/formats/style/test_html.pyc
-${PYSITELIB}/pandas/tests/io/formats/style/test_html.pyo
 ${PYSITELIB}/pandas/tests/io/formats/style/test_matplotlib.py
 ${PYSITELIB}/pandas/tests/io/formats/style/test_matplotlib.pyc
-${PYSITELIB}/pandas/tests/io/formats/style/test_matplotlib.pyo
 ${PYSITELIB}/pandas/tests/io/formats/style/test_non_unique.py
 ${PYSITELIB}/pandas/tests/io/formats/style/test_non_unique.pyc
-${PYSITELIB}/pandas/tests/io/formats/style/test_non_unique.pyo
 ${PYSITELIB}/pandas/tests/io/formats/style/test_style.py
 ${PYSITELIB}/pandas/tests/io/formats/style/test_style.pyc
-${PYSITELIB}/pandas/tests/io/formats/style/test_style.pyo
 ${PYSITELIB}/pandas/tests/io/formats/style/test_to_latex.py
 ${PYSITELIB}/pandas/tests/io/formats/style/test_to_latex.pyc
-${PYSITELIB}/pandas/tests/io/formats/style/test_to_latex.pyo
 ${PYSITELIB}/pandas/tests/io/formats/style/test_to_string.py
 ${PYSITELIB}/pandas/tests/io/formats/style/test_to_string.pyc
-${PYSITELIB}/pandas/tests/io/formats/style/test_to_string.pyo
 ${PYSITELIB}/pandas/tests/io/formats/style/test_tooltip.py
 ${PYSITELIB}/pandas/tests/io/formats/style/test_tooltip.pyc
-${PYSITELIB}/pandas/tests/io/formats/style/test_tooltip.pyo
 ${PYSITELIB}/pandas/tests/io/formats/test_console.py
 ${PYSITELIB}/pandas/tests/io/formats/test_console.pyc
-${PYSITELIB}/pandas/tests/io/formats/test_console.pyo
 ${PYSITELIB}/pandas/tests/io/formats/test_css.py
 ${PYSITELIB}/pandas/tests/io/formats/test_css.pyc
-${PYSITELIB}/pandas/tests/io/formats/test_css.pyo
 ${PYSITELIB}/pandas/tests/io/formats/test_eng_formatting.py
 ${PYSITELIB}/pandas/tests/io/formats/test_eng_formatting.pyc
-${PYSITELIB}/pandas/tests/io/formats/test_eng_formatting.pyo
 ${PYSITELIB}/pandas/tests/io/formats/test_format.py
 ${PYSITELIB}/pandas/tests/io/formats/test_format.pyc
-${PYSITELIB}/pandas/tests/io/formats/test_format.pyo
 ${PYSITELIB}/pandas/tests/io/formats/test_info.py
 ${PYSITELIB}/pandas/tests/io/formats/test_info.pyc
-${PYSITELIB}/pandas/tests/io/formats/test_info.pyo
 ${PYSITELIB}/pandas/tests/io/formats/test_printing.py
 ${PYSITELIB}/pandas/tests/io/formats/test_printing.pyc
-${PYSITELIB}/pandas/tests/io/formats/test_printing.pyo
 ${PYSITELIB}/pandas/tests/io/formats/test_series_info.py
 ${PYSITELIB}/pandas/tests/io/formats/test_series_info.pyc
-${PYSITELIB}/pandas/tests/io/formats/test_series_info.pyo
 ${PYSITELIB}/pandas/tests/io/formats/test_to_csv.py
 ${PYSITELIB}/pandas/tests/io/formats/test_to_csv.pyc
-${PYSITELIB}/pandas/tests/io/formats/test_to_csv.pyo
 ${PYSITELIB}/pandas/tests/io/formats/test_to_excel.py
 ${PYSITELIB}/pandas/tests/io/formats/test_to_excel.pyc
-${PYSITELIB}/pandas/tests/io/formats/test_to_excel.pyo
 ${PYSITELIB}/pandas/tests/io/formats/test_to_html.py
 ${PYSITELIB}/pandas/tests/io/formats/test_to_html.pyc
-${PYSITELIB}/pandas/tests/io/formats/test_to_html.pyo
 ${PYSITELIB}/pandas/tests/io/formats/test_to_latex.py
 ${PYSITELIB}/pandas/tests/io/formats/test_to_latex.pyc
-${PYSITELIB}/pandas/tests/io/formats/test_to_latex.pyo
 ${PYSITELIB}/pandas/tests/io/formats/test_to_markdown.py
 ${PYSITELIB}/pandas/tests/io/formats/test_to_markdown.pyc
-${PYSITELIB}/pandas/tests/io/formats/test_to_markdown.pyo
 ${PYSITELIB}/pandas/tests/io/formats/test_to_string.py
 ${PYSITELIB}/pandas/tests/io/formats/test_to_string.pyc
-${PYSITELIB}/pandas/tests/io/formats/test_to_string.pyo
 ${PYSITELIB}/pandas/tests/io/generate_legacy_storage_files.py
 ${PYSITELIB}/pandas/tests/io/generate_legacy_storage_files.pyc
-${PYSITELIB}/pandas/tests/io/generate_legacy_storage_files.pyo
 ${PYSITELIB}/pandas/tests/io/json/__init__.py
 ${PYSITELIB}/pandas/tests/io/json/__init__.pyc
-${PYSITELIB}/pandas/tests/io/json/__init__.pyo
 ${PYSITELIB}/pandas/tests/io/json/conftest.py
 ${PYSITELIB}/pandas/tests/io/json/conftest.pyc
-${PYSITELIB}/pandas/tests/io/json/conftest.pyo
 ${PYSITELIB}/pandas/tests/io/json/test_compression.py
 ${PYSITELIB}/pandas/tests/io/json/test_compression.pyc
-${PYSITELIB}/pandas/tests/io/json/test_compression.pyo
 ${PYSITELIB}/pandas/tests/io/json/test_deprecated_kwargs.py
 ${PYSITELIB}/pandas/tests/io/json/test_deprecated_kwargs.pyc
-${PYSITELIB}/pandas/tests/io/json/test_deprecated_kwargs.pyo
 ${PYSITELIB}/pandas/tests/io/json/test_json_table_schema.py
 ${PYSITELIB}/pandas/tests/io/json/test_json_table_schema.pyc
-${PYSITELIB}/pandas/tests/io/json/test_json_table_schema.pyo
 ${PYSITELIB}/pandas/tests/io/json/test_json_table_schema_ext_dtype.py
 ${PYSITELIB}/pandas/tests/io/json/test_json_table_schema_ext_dtype.pyc
-${PYSITELIB}/pandas/tests/io/json/test_json_table_schema_ext_dtype.pyo
 ${PYSITELIB}/pandas/tests/io/json/test_normalize.py
 ${PYSITELIB}/pandas/tests/io/json/test_normalize.pyc
-${PYSITELIB}/pandas/tests/io/json/test_normalize.pyo
 ${PYSITELIB}/pandas/tests/io/json/test_pandas.py
 ${PYSITELIB}/pandas/tests/io/json/test_pandas.pyc
-${PYSITELIB}/pandas/tests/io/json/test_pandas.pyo
 ${PYSITELIB}/pandas/tests/io/json/test_readlines.py
 ${PYSITELIB}/pandas/tests/io/json/test_readlines.pyc
-${PYSITELIB}/pandas/tests/io/json/test_readlines.pyo
 ${PYSITELIB}/pandas/tests/io/json/test_ujson.py
 ${PYSITELIB}/pandas/tests/io/json/test_ujson.pyc
-${PYSITELIB}/pandas/tests/io/json/test_ujson.pyo
 ${PYSITELIB}/pandas/tests/io/parser/__init__.py
 ${PYSITELIB}/pandas/tests/io/parser/__init__.pyc
-${PYSITELIB}/pandas/tests/io/parser/__init__.pyo
 ${PYSITELIB}/pandas/tests/io/parser/common/__init__.py
 ${PYSITELIB}/pandas/tests/io/parser/common/__init__.pyc
-${PYSITELIB}/pandas/tests/io/parser/common/__init__.pyo
 ${PYSITELIB}/pandas/tests/io/parser/common/test_chunksize.py
 ${PYSITELIB}/pandas/tests/io/parser/common/test_chunksize.pyc
-${PYSITELIB}/pandas/tests/io/parser/common/test_chunksize.pyo
 ${PYSITELIB}/pandas/tests/io/parser/common/test_common_basic.py
 ${PYSITELIB}/pandas/tests/io/parser/common/test_common_basic.pyc
-${PYSITELIB}/pandas/tests/io/parser/common/test_common_basic.pyo
 ${PYSITELIB}/pandas/tests/io/parser/common/test_data_list.py
 ${PYSITELIB}/pandas/tests/io/parser/common/test_data_list.pyc
-${PYSITELIB}/pandas/tests/io/parser/common/test_data_list.pyo
 ${PYSITELIB}/pandas/tests/io/parser/common/test_decimal.py
 ${PYSITELIB}/pandas/tests/io/parser/common/test_decimal.pyc
-${PYSITELIB}/pandas/tests/io/parser/common/test_decimal.pyo
 ${PYSITELIB}/pandas/tests/io/parser/common/test_file_buffer_url.py
 ${PYSITELIB}/pandas/tests/io/parser/common/test_file_buffer_url.pyc
-${PYSITELIB}/pandas/tests/io/parser/common/test_file_buffer_url.pyo
 ${PYSITELIB}/pandas/tests/io/parser/common/test_float.py
 ${PYSITELIB}/pandas/tests/io/parser/common/test_float.pyc
-${PYSITELIB}/pandas/tests/io/parser/common/test_float.pyo
 ${PYSITELIB}/pandas/tests/io/parser/common/test_index.py
 ${PYSITELIB}/pandas/tests/io/parser/common/test_index.pyc
-${PYSITELIB}/pandas/tests/io/parser/common/test_index.pyo
 ${PYSITELIB}/pandas/tests/io/parser/common/test_inf.py
 ${PYSITELIB}/pandas/tests/io/parser/common/test_inf.pyc
-${PYSITELIB}/pandas/tests/io/parser/common/test_inf.pyo
 ${PYSITELIB}/pandas/tests/io/parser/common/test_ints.py
 ${PYSITELIB}/pandas/tests/io/parser/common/test_ints.pyc
-${PYSITELIB}/pandas/tests/io/parser/common/test_ints.pyo
 ${PYSITELIB}/pandas/tests/io/parser/common/test_iterator.py
 ${PYSITELIB}/pandas/tests/io/parser/common/test_iterator.pyc
-${PYSITELIB}/pandas/tests/io/parser/common/test_iterator.pyo
 ${PYSITELIB}/pandas/tests/io/parser/common/test_read_errors.py
 ${PYSITELIB}/pandas/tests/io/parser/common/test_read_errors.pyc
-${PYSITELIB}/pandas/tests/io/parser/common/test_read_errors.pyo
 ${PYSITELIB}/pandas/tests/io/parser/common/test_verbose.py
 ${PYSITELIB}/pandas/tests/io/parser/common/test_verbose.pyc
-${PYSITELIB}/pandas/tests/io/parser/common/test_verbose.pyo
 ${PYSITELIB}/pandas/tests/io/parser/conftest.py
 ${PYSITELIB}/pandas/tests/io/parser/conftest.pyc
-${PYSITELIB}/pandas/tests/io/parser/conftest.pyo
 ${PYSITELIB}/pandas/tests/io/parser/dtypes/__init__.py
 ${PYSITELIB}/pandas/tests/io/parser/dtypes/__init__.pyc
-${PYSITELIB}/pandas/tests/io/parser/dtypes/__init__.pyo
 ${PYSITELIB}/pandas/tests/io/parser/dtypes/test_categorical.py
 ${PYSITELIB}/pandas/tests/io/parser/dtypes/test_categorical.pyc
-${PYSITELIB}/pandas/tests/io/parser/dtypes/test_categorical.pyo
 ${PYSITELIB}/pandas/tests/io/parser/dtypes/test_dtypes_basic.py
 ${PYSITELIB}/pandas/tests/io/parser/dtypes/test_dtypes_basic.pyc
-${PYSITELIB}/pandas/tests/io/parser/dtypes/test_dtypes_basic.pyo
 ${PYSITELIB}/pandas/tests/io/parser/dtypes/test_empty.py
 ${PYSITELIB}/pandas/tests/io/parser/dtypes/test_empty.pyc
-${PYSITELIB}/pandas/tests/io/parser/dtypes/test_empty.pyo
 ${PYSITELIB}/pandas/tests/io/parser/test_c_parser_only.py
 ${PYSITELIB}/pandas/tests/io/parser/test_c_parser_only.pyc
-${PYSITELIB}/pandas/tests/io/parser/test_c_parser_only.pyo
 ${PYSITELIB}/pandas/tests/io/parser/test_comment.py
 ${PYSITELIB}/pandas/tests/io/parser/test_comment.pyc
-${PYSITELIB}/pandas/tests/io/parser/test_comment.pyo
 ${PYSITELIB}/pandas/tests/io/parser/test_compression.py
 ${PYSITELIB}/pandas/tests/io/parser/test_compression.pyc
-${PYSITELIB}/pandas/tests/io/parser/test_compression.pyo
+${PYSITELIB}/pandas/tests/io/parser/test_concatenate_chunks.py
+${PYSITELIB}/pandas/tests/io/parser/test_concatenate_chunks.pyc
 ${PYSITELIB}/pandas/tests/io/parser/test_converters.py
 ${PYSITELIB}/pandas/tests/io/parser/test_converters.pyc
-${PYSITELIB}/pandas/tests/io/parser/test_converters.pyo
 ${PYSITELIB}/pandas/tests/io/parser/test_dialect.py
 ${PYSITELIB}/pandas/tests/io/parser/test_dialect.pyc
-${PYSITELIB}/pandas/tests/io/parser/test_dialect.pyo
 ${PYSITELIB}/pandas/tests/io/parser/test_encoding.py
 ${PYSITELIB}/pandas/tests/io/parser/test_encoding.pyc
-${PYSITELIB}/pandas/tests/io/parser/test_encoding.pyo
 ${PYSITELIB}/pandas/tests/io/parser/test_header.py
 ${PYSITELIB}/pandas/tests/io/parser/test_header.pyc
-${PYSITELIB}/pandas/tests/io/parser/test_header.pyo
 ${PYSITELIB}/pandas/tests/io/parser/test_index_col.py
 ${PYSITELIB}/pandas/tests/io/parser/test_index_col.pyc
-${PYSITELIB}/pandas/tests/io/parser/test_index_col.pyo
 ${PYSITELIB}/pandas/tests/io/parser/test_mangle_dupes.py
 ${PYSITELIB}/pandas/tests/io/parser/test_mangle_dupes.pyc
-${PYSITELIB}/pandas/tests/io/parser/test_mangle_dupes.pyo
 ${PYSITELIB}/pandas/tests/io/parser/test_multi_thread.py
 ${PYSITELIB}/pandas/tests/io/parser/test_multi_thread.pyc
-${PYSITELIB}/pandas/tests/io/parser/test_multi_thread.pyo
 ${PYSITELIB}/pandas/tests/io/parser/test_na_values.py
 ${PYSITELIB}/pandas/tests/io/parser/test_na_values.pyc
-${PYSITELIB}/pandas/tests/io/parser/test_na_values.pyo
 ${PYSITELIB}/pandas/tests/io/parser/test_network.py
 ${PYSITELIB}/pandas/tests/io/parser/test_network.pyc
-${PYSITELIB}/pandas/tests/io/parser/test_network.pyo
 ${PYSITELIB}/pandas/tests/io/parser/test_parse_dates.py
 ${PYSITELIB}/pandas/tests/io/parser/test_parse_dates.pyc
-${PYSITELIB}/pandas/tests/io/parser/test_parse_dates.pyo
 ${PYSITELIB}/pandas/tests/io/parser/test_python_parser_only.py
 ${PYSITELIB}/pandas/tests/io/parser/test_python_parser_only.pyc
-${PYSITELIB}/pandas/tests/io/parser/test_python_parser_only.pyo
 ${PYSITELIB}/pandas/tests/io/parser/test_quoting.py
 ${PYSITELIB}/pandas/tests/io/parser/test_quoting.pyc
-${PYSITELIB}/pandas/tests/io/parser/test_quoting.pyo
 ${PYSITELIB}/pandas/tests/io/parser/test_read_fwf.py
 ${PYSITELIB}/pandas/tests/io/parser/test_read_fwf.pyc
-${PYSITELIB}/pandas/tests/io/parser/test_read_fwf.pyo
 ${PYSITELIB}/pandas/tests/io/parser/test_skiprows.py
 ${PYSITELIB}/pandas/tests/io/parser/test_skiprows.pyc
-${PYSITELIB}/pandas/tests/io/parser/test_skiprows.pyo
 ${PYSITELIB}/pandas/tests/io/parser/test_textreader.py
 ${PYSITELIB}/pandas/tests/io/parser/test_textreader.pyc
-${PYSITELIB}/pandas/tests/io/parser/test_textreader.pyo
 ${PYSITELIB}/pandas/tests/io/parser/test_unsupported.py
 ${PYSITELIB}/pandas/tests/io/parser/test_unsupported.pyc
-${PYSITELIB}/pandas/tests/io/parser/test_unsupported.pyo
+${PYSITELIB}/pandas/tests/io/parser/test_upcast.py
+${PYSITELIB}/pandas/tests/io/parser/test_upcast.pyc
 ${PYSITELIB}/pandas/tests/io/parser/usecols/__init__.py
 ${PYSITELIB}/pandas/tests/io/parser/usecols/__init__.pyc
-${PYSITELIB}/pandas/tests/io/parser/usecols/__init__.pyo
 ${PYSITELIB}/pandas/tests/io/parser/usecols/test_parse_dates.py
 ${PYSITELIB}/pandas/tests/io/parser/usecols/test_parse_dates.pyc
-${PYSITELIB}/pandas/tests/io/parser/usecols/test_parse_dates.pyo
 ${PYSITELIB}/pandas/tests/io/parser/usecols/test_strings.py
 ${PYSITELIB}/pandas/tests/io/parser/usecols/test_strings.pyc
-${PYSITELIB}/pandas/tests/io/parser/usecols/test_strings.pyo
 ${PYSITELIB}/pandas/tests/io/parser/usecols/test_usecols_basic.py
 ${PYSITELIB}/pandas/tests/io/parser/usecols/test_usecols_basic.pyc
-${PYSITELIB}/pandas/tests/io/parser/usecols/test_usecols_basic.pyo
 ${PYSITELIB}/pandas/tests/io/pytables/__init__.py
 ${PYSITELIB}/pandas/tests/io/pytables/__init__.pyc
-${PYSITELIB}/pandas/tests/io/pytables/__init__.pyo
 ${PYSITELIB}/pandas/tests/io/pytables/common.py
 ${PYSITELIB}/pandas/tests/io/pytables/common.pyc
-${PYSITELIB}/pandas/tests/io/pytables/common.pyo
 ${PYSITELIB}/pandas/tests/io/pytables/conftest.py
 ${PYSITELIB}/pandas/tests/io/pytables/conftest.pyc
-${PYSITELIB}/pandas/tests/io/pytables/conftest.pyo
 ${PYSITELIB}/pandas/tests/io/pytables/test_append.py
 ${PYSITELIB}/pandas/tests/io/pytables/test_append.pyc
-${PYSITELIB}/pandas/tests/io/pytables/test_append.pyo
 ${PYSITELIB}/pandas/tests/io/pytables/test_categorical.py
 ${PYSITELIB}/pandas/tests/io/pytables/test_categorical.pyc
-${PYSITELIB}/pandas/tests/io/pytables/test_categorical.pyo
 ${PYSITELIB}/pandas/tests/io/pytables/test_compat.py
 ${PYSITELIB}/pandas/tests/io/pytables/test_compat.pyc
-${PYSITELIB}/pandas/tests/io/pytables/test_compat.pyo
 ${PYSITELIB}/pandas/tests/io/pytables/test_complex.py
 ${PYSITELIB}/pandas/tests/io/pytables/test_complex.pyc
-${PYSITELIB}/pandas/tests/io/pytables/test_complex.pyo
 ${PYSITELIB}/pandas/tests/io/pytables/test_errors.py
 ${PYSITELIB}/pandas/tests/io/pytables/test_errors.pyc
-${PYSITELIB}/pandas/tests/io/pytables/test_errors.pyo
 ${PYSITELIB}/pandas/tests/io/pytables/test_file_handling.py
 ${PYSITELIB}/pandas/tests/io/pytables/test_file_handling.pyc
-${PYSITELIB}/pandas/tests/io/pytables/test_file_handling.pyo
 ${PYSITELIB}/pandas/tests/io/pytables/test_keys.py
 ${PYSITELIB}/pandas/tests/io/pytables/test_keys.pyc
-${PYSITELIB}/pandas/tests/io/pytables/test_keys.pyo
 ${PYSITELIB}/pandas/tests/io/pytables/test_put.py
 ${PYSITELIB}/pandas/tests/io/pytables/test_put.pyc
-${PYSITELIB}/pandas/tests/io/pytables/test_put.pyo
 ${PYSITELIB}/pandas/tests/io/pytables/test_pytables_missing.py
 ${PYSITELIB}/pandas/tests/io/pytables/test_pytables_missing.pyc
-${PYSITELIB}/pandas/tests/io/pytables/test_pytables_missing.pyo
 ${PYSITELIB}/pandas/tests/io/pytables/test_read.py
 ${PYSITELIB}/pandas/tests/io/pytables/test_read.pyc
-${PYSITELIB}/pandas/tests/io/pytables/test_read.pyo
 ${PYSITELIB}/pandas/tests/io/pytables/test_retain_attributes.py
 ${PYSITELIB}/pandas/tests/io/pytables/test_retain_attributes.pyc
-${PYSITELIB}/pandas/tests/io/pytables/test_retain_attributes.pyo
 ${PYSITELIB}/pandas/tests/io/pytables/test_round_trip.py
 ${PYSITELIB}/pandas/tests/io/pytables/test_round_trip.pyc
-${PYSITELIB}/pandas/tests/io/pytables/test_round_trip.pyo
 ${PYSITELIB}/pandas/tests/io/pytables/test_select.py
 ${PYSITELIB}/pandas/tests/io/pytables/test_select.pyc
-${PYSITELIB}/pandas/tests/io/pytables/test_select.pyo
 ${PYSITELIB}/pandas/tests/io/pytables/test_store.py
 ${PYSITELIB}/pandas/tests/io/pytables/test_store.pyc
-${PYSITELIB}/pandas/tests/io/pytables/test_store.pyo
 ${PYSITELIB}/pandas/tests/io/pytables/test_subclass.py
 ${PYSITELIB}/pandas/tests/io/pytables/test_subclass.pyc
-${PYSITELIB}/pandas/tests/io/pytables/test_subclass.pyo
 ${PYSITELIB}/pandas/tests/io/pytables/test_time_series.py
 ${PYSITELIB}/pandas/tests/io/pytables/test_time_series.pyc
-${PYSITELIB}/pandas/tests/io/pytables/test_time_series.pyo
 ${PYSITELIB}/pandas/tests/io/pytables/test_timezones.py
 ${PYSITELIB}/pandas/tests/io/pytables/test_timezones.pyc
-${PYSITELIB}/pandas/tests/io/pytables/test_timezones.pyo
 ${PYSITELIB}/pandas/tests/io/sas/__init__.py
 ${PYSITELIB}/pandas/tests/io/sas/__init__.pyc
-${PYSITELIB}/pandas/tests/io/sas/__init__.pyo
+${PYSITELIB}/pandas/tests/io/sas/test_byteswap.py
+${PYSITELIB}/pandas/tests/io/sas/test_byteswap.pyc
 ${PYSITELIB}/pandas/tests/io/sas/test_sas.py
 ${PYSITELIB}/pandas/tests/io/sas/test_sas.pyc
-${PYSITELIB}/pandas/tests/io/sas/test_sas.pyo
 ${PYSITELIB}/pandas/tests/io/sas/test_sas7bdat.py
 ${PYSITELIB}/pandas/tests/io/sas/test_sas7bdat.pyc
-${PYSITELIB}/pandas/tests/io/sas/test_sas7bdat.pyo
 ${PYSITELIB}/pandas/tests/io/sas/test_xport.py
 ${PYSITELIB}/pandas/tests/io/sas/test_xport.pyc
-${PYSITELIB}/pandas/tests/io/sas/test_xport.pyo
 ${PYSITELIB}/pandas/tests/io/test_clipboard.py
 ${PYSITELIB}/pandas/tests/io/test_clipboard.pyc
-${PYSITELIB}/pandas/tests/io/test_clipboard.pyo
 ${PYSITELIB}/pandas/tests/io/test_common.py
 ${PYSITELIB}/pandas/tests/io/test_common.pyc
-${PYSITELIB}/pandas/tests/io/test_common.pyo
 ${PYSITELIB}/pandas/tests/io/test_compression.py
 ${PYSITELIB}/pandas/tests/io/test_compression.pyc
-${PYSITELIB}/pandas/tests/io/test_compression.pyo
-${PYSITELIB}/pandas/tests/io/test_date_converters.py
-${PYSITELIB}/pandas/tests/io/test_date_converters.pyc
-${PYSITELIB}/pandas/tests/io/test_date_converters.pyo
 ${PYSITELIB}/pandas/tests/io/test_feather.py
 ${PYSITELIB}/pandas/tests/io/test_feather.pyc
-${PYSITELIB}/pandas/tests/io/test_feather.pyo
 ${PYSITELIB}/pandas/tests/io/test_fsspec.py
 ${PYSITELIB}/pandas/tests/io/test_fsspec.pyc
-${PYSITELIB}/pandas/tests/io/test_fsspec.pyo
 ${PYSITELIB}/pandas/tests/io/test_gcs.py
 ${PYSITELIB}/pandas/tests/io/test_gcs.pyc
-${PYSITELIB}/pandas/tests/io/test_gcs.pyo
 ${PYSITELIB}/pandas/tests/io/test_html.py
 ${PYSITELIB}/pandas/tests/io/test_html.pyc
-${PYSITELIB}/pandas/tests/io/test_html.pyo
 ${PYSITELIB}/pandas/tests/io/test_orc.py
 ${PYSITELIB}/pandas/tests/io/test_orc.pyc
-${PYSITELIB}/pandas/tests/io/test_orc.pyo
 ${PYSITELIB}/pandas/tests/io/test_parquet.py
 ${PYSITELIB}/pandas/tests/io/test_parquet.pyc
-${PYSITELIB}/pandas/tests/io/test_parquet.pyo
 ${PYSITELIB}/pandas/tests/io/test_pickle.py
 ${PYSITELIB}/pandas/tests/io/test_pickle.pyc
-${PYSITELIB}/pandas/tests/io/test_pickle.pyo
 ${PYSITELIB}/pandas/tests/io/test_s3.py
 ${PYSITELIB}/pandas/tests/io/test_s3.pyc
-${PYSITELIB}/pandas/tests/io/test_s3.pyo
 ${PYSITELIB}/pandas/tests/io/test_spss.py
 ${PYSITELIB}/pandas/tests/io/test_spss.pyc
-${PYSITELIB}/pandas/tests/io/test_spss.pyo
 ${PYSITELIB}/pandas/tests/io/test_sql.py
 ${PYSITELIB}/pandas/tests/io/test_sql.pyc
-${PYSITELIB}/pandas/tests/io/test_sql.pyo
 ${PYSITELIB}/pandas/tests/io/test_stata.py
 ${PYSITELIB}/pandas/tests/io/test_stata.pyc
-${PYSITELIB}/pandas/tests/io/test_stata.pyo
 ${PYSITELIB}/pandas/tests/io/test_user_agent.py
 ${PYSITELIB}/pandas/tests/io/test_user_agent.pyc
-${PYSITELIB}/pandas/tests/io/test_user_agent.pyo
 ${PYSITELIB}/pandas/tests/io/xml/__init__.py
 ${PYSITELIB}/pandas/tests/io/xml/__init__.pyc
-${PYSITELIB}/pandas/tests/io/xml/__init__.pyo
 ${PYSITELIB}/pandas/tests/io/xml/test_to_xml.py
 ${PYSITELIB}/pandas/tests/io/xml/test_to_xml.pyc
-${PYSITELIB}/pandas/tests/io/xml/test_to_xml.pyo
 ${PYSITELIB}/pandas/tests/io/xml/test_xml.py
 ${PYSITELIB}/pandas/tests/io/xml/test_xml.pyc
-${PYSITELIB}/pandas/tests/io/xml/test_xml.pyo
 ${PYSITELIB}/pandas/tests/io/xml/test_xml_dtypes.py
 ${PYSITELIB}/pandas/tests/io/xml/test_xml_dtypes.pyc
-${PYSITELIB}/pandas/tests/io/xml/test_xml_dtypes.pyo
 ${PYSITELIB}/pandas/tests/libs/__init__.py
 ${PYSITELIB}/pandas/tests/libs/__init__.pyc
-${PYSITELIB}/pandas/tests/libs/__init__.pyo
 ${PYSITELIB}/pandas/tests/libs/test_hashtable.py
 ${PYSITELIB}/pandas/tests/libs/test_hashtable.pyc
-${PYSITELIB}/pandas/tests/libs/test_hashtable.pyo
 ${PYSITELIB}/pandas/tests/libs/test_join.py
 ${PYSITELIB}/pandas/tests/libs/test_join.pyc
-${PYSITELIB}/pandas/tests/libs/test_join.pyo
 ${PYSITELIB}/pandas/tests/libs/test_lib.py
 ${PYSITELIB}/pandas/tests/libs/test_lib.pyc
-${PYSITELIB}/pandas/tests/libs/test_lib.pyo
 ${PYSITELIB}/pandas/tests/plotting/__init__.py
 ${PYSITELIB}/pandas/tests/plotting/__init__.pyc
-${PYSITELIB}/pandas/tests/plotting/__init__.pyo
 ${PYSITELIB}/pandas/tests/plotting/common.py
 ${PYSITELIB}/pandas/tests/plotting/common.pyc
-${PYSITELIB}/pandas/tests/plotting/common.pyo
 ${PYSITELIB}/pandas/tests/plotting/conftest.py
 ${PYSITELIB}/pandas/tests/plotting/conftest.pyc
-${PYSITELIB}/pandas/tests/plotting/conftest.pyo
 ${PYSITELIB}/pandas/tests/plotting/frame/__init__.py
 ${PYSITELIB}/pandas/tests/plotting/frame/__init__.pyc
-${PYSITELIB}/pandas/tests/plotting/frame/__init__.pyo
 ${PYSITELIB}/pandas/tests/plotting/frame/test_frame.py
 ${PYSITELIB}/pandas/tests/plotting/frame/test_frame.pyc
-${PYSITELIB}/pandas/tests/plotting/frame/test_frame.pyo
 ${PYSITELIB}/pandas/tests/plotting/frame/test_frame_color.py
 ${PYSITELIB}/pandas/tests/plotting/frame/test_frame_color.pyc
-${PYSITELIB}/pandas/tests/plotting/frame/test_frame_color.pyo
 ${PYSITELIB}/pandas/tests/plotting/frame/test_frame_groupby.py
 ${PYSITELIB}/pandas/tests/plotting/frame/test_frame_groupby.pyc
-${PYSITELIB}/pandas/tests/plotting/frame/test_frame_groupby.pyo
 ${PYSITELIB}/pandas/tests/plotting/frame/test_frame_legend.py
 ${PYSITELIB}/pandas/tests/plotting/frame/test_frame_legend.pyc
-${PYSITELIB}/pandas/tests/plotting/frame/test_frame_legend.pyo
 ${PYSITELIB}/pandas/tests/plotting/frame/test_frame_subplots.py
 ${PYSITELIB}/pandas/tests/plotting/frame/test_frame_subplots.pyc
-${PYSITELIB}/pandas/tests/plotting/frame/test_frame_subplots.pyo
 ${PYSITELIB}/pandas/tests/plotting/frame/test_hist_box_by.py
 ${PYSITELIB}/pandas/tests/plotting/frame/test_hist_box_by.pyc
-${PYSITELIB}/pandas/tests/plotting/frame/test_hist_box_by.pyo
 ${PYSITELIB}/pandas/tests/plotting/test_backend.py
 ${PYSITELIB}/pandas/tests/plotting/test_backend.pyc
-${PYSITELIB}/pandas/tests/plotting/test_backend.pyo
 ${PYSITELIB}/pandas/tests/plotting/test_boxplot_method.py
 ${PYSITELIB}/pandas/tests/plotting/test_boxplot_method.pyc
-${PYSITELIB}/pandas/tests/plotting/test_boxplot_method.pyo
 ${PYSITELIB}/pandas/tests/plotting/test_common.py
 ${PYSITELIB}/pandas/tests/plotting/test_common.pyc
-${PYSITELIB}/pandas/tests/plotting/test_common.pyo
 ${PYSITELIB}/pandas/tests/plotting/test_converter.py
 ${PYSITELIB}/pandas/tests/plotting/test_converter.pyc
-${PYSITELIB}/pandas/tests/plotting/test_converter.pyo
 ${PYSITELIB}/pandas/tests/plotting/test_datetimelike.py
 ${PYSITELIB}/pandas/tests/plotting/test_datetimelike.pyc
-${PYSITELIB}/pandas/tests/plotting/test_datetimelike.pyo
 ${PYSITELIB}/pandas/tests/plotting/test_groupby.py
 ${PYSITELIB}/pandas/tests/plotting/test_groupby.pyc
-${PYSITELIB}/pandas/tests/plotting/test_groupby.pyo
 ${PYSITELIB}/pandas/tests/plotting/test_hist_method.py
 ${PYSITELIB}/pandas/tests/plotting/test_hist_method.pyc
-${PYSITELIB}/pandas/tests/plotting/test_hist_method.pyo
 ${PYSITELIB}/pandas/tests/plotting/test_misc.py
 ${PYSITELIB}/pandas/tests/plotting/test_misc.pyc
-${PYSITELIB}/pandas/tests/plotting/test_misc.pyo
 ${PYSITELIB}/pandas/tests/plotting/test_series.py
 ${PYSITELIB}/pandas/tests/plotting/test_series.pyc
-${PYSITELIB}/pandas/tests/plotting/test_series.pyo
 ${PYSITELIB}/pandas/tests/plotting/test_style.py
 ${PYSITELIB}/pandas/tests/plotting/test_style.pyc
-${PYSITELIB}/pandas/tests/plotting/test_style.pyo
 ${PYSITELIB}/pandas/tests/reductions/__init__.py
 ${PYSITELIB}/pandas/tests/reductions/__init__.pyc
-${PYSITELIB}/pandas/tests/reductions/__init__.pyo
 ${PYSITELIB}/pandas/tests/reductions/test_reductions.py
 ${PYSITELIB}/pandas/tests/reductions/test_reductions.pyc
-${PYSITELIB}/pandas/tests/reductions/test_reductions.pyo
 ${PYSITELIB}/pandas/tests/reductions/test_stat_reductions.py
 ${PYSITELIB}/pandas/tests/reductions/test_stat_reductions.pyc
-${PYSITELIB}/pandas/tests/reductions/test_stat_reductions.pyo
 ${PYSITELIB}/pandas/tests/resample/__init__.py
 ${PYSITELIB}/pandas/tests/resample/__init__.pyc
-${PYSITELIB}/pandas/tests/resample/__init__.pyo
 ${PYSITELIB}/pandas/tests/resample/conftest.py
 ${PYSITELIB}/pandas/tests/resample/conftest.pyc
-${PYSITELIB}/pandas/tests/resample/conftest.pyo
 ${PYSITELIB}/pandas/tests/resample/test_base.py
 ${PYSITELIB}/pandas/tests/resample/test_base.pyc
-${PYSITELIB}/pandas/tests/resample/test_base.pyo
 ${PYSITELIB}/pandas/tests/resample/test_datetime_index.py
 ${PYSITELIB}/pandas/tests/resample/test_datetime_index.pyc
-${PYSITELIB}/pandas/tests/resample/test_datetime_index.pyo
-${PYSITELIB}/pandas/tests/resample/test_deprecated.py
-${PYSITELIB}/pandas/tests/resample/test_deprecated.pyc
-${PYSITELIB}/pandas/tests/resample/test_deprecated.pyo
 ${PYSITELIB}/pandas/tests/resample/test_period_index.py
 ${PYSITELIB}/pandas/tests/resample/test_period_index.pyc
-${PYSITELIB}/pandas/tests/resample/test_period_index.pyo
 ${PYSITELIB}/pandas/tests/resample/test_resample_api.py
 ${PYSITELIB}/pandas/tests/resample/test_resample_api.pyc
-${PYSITELIB}/pandas/tests/resample/test_resample_api.pyo
 ${PYSITELIB}/pandas/tests/resample/test_resampler_grouper.py
 ${PYSITELIB}/pandas/tests/resample/test_resampler_grouper.pyc
-${PYSITELIB}/pandas/tests/resample/test_resampler_grouper.pyo
 ${PYSITELIB}/pandas/tests/resample/test_time_grouper.py
 ${PYSITELIB}/pandas/tests/resample/test_time_grouper.pyc
-${PYSITELIB}/pandas/tests/resample/test_time_grouper.pyo
 ${PYSITELIB}/pandas/tests/resample/test_timedelta.py
 ${PYSITELIB}/pandas/tests/resample/test_timedelta.pyc
-${PYSITELIB}/pandas/tests/resample/test_timedelta.pyo
 ${PYSITELIB}/pandas/tests/reshape/__init__.py
 ${PYSITELIB}/pandas/tests/reshape/__init__.pyc
-${PYSITELIB}/pandas/tests/reshape/__init__.pyo
 ${PYSITELIB}/pandas/tests/reshape/concat/__init__.py
 ${PYSITELIB}/pandas/tests/reshape/concat/__init__.pyc
-${PYSITELIB}/pandas/tests/reshape/concat/__init__.pyo
 ${PYSITELIB}/pandas/tests/reshape/concat/conftest.py
 ${PYSITELIB}/pandas/tests/reshape/concat/conftest.pyc
-${PYSITELIB}/pandas/tests/reshape/concat/conftest.pyo
 ${PYSITELIB}/pandas/tests/reshape/concat/test_append.py
 ${PYSITELIB}/pandas/tests/reshape/concat/test_append.pyc
-${PYSITELIB}/pandas/tests/reshape/concat/test_append.pyo
 ${PYSITELIB}/pandas/tests/reshape/concat/test_append_common.py
 ${PYSITELIB}/pandas/tests/reshape/concat/test_append_common.pyc
-${PYSITELIB}/pandas/tests/reshape/concat/test_append_common.pyo
 ${PYSITELIB}/pandas/tests/reshape/concat/test_categorical.py
 ${PYSITELIB}/pandas/tests/reshape/concat/test_categorical.pyc
-${PYSITELIB}/pandas/tests/reshape/concat/test_categorical.pyo
 ${PYSITELIB}/pandas/tests/reshape/concat/test_concat.py
 ${PYSITELIB}/pandas/tests/reshape/concat/test_concat.pyc
-${PYSITELIB}/pandas/tests/reshape/concat/test_concat.pyo
 ${PYSITELIB}/pandas/tests/reshape/concat/test_dataframe.py
 ${PYSITELIB}/pandas/tests/reshape/concat/test_dataframe.pyc
-${PYSITELIB}/pandas/tests/reshape/concat/test_dataframe.pyo
 ${PYSITELIB}/pandas/tests/reshape/concat/test_datetimes.py
 ${PYSITELIB}/pandas/tests/reshape/concat/test_datetimes.pyc
-${PYSITELIB}/pandas/tests/reshape/concat/test_datetimes.pyo
 ${PYSITELIB}/pandas/tests/reshape/concat/test_empty.py
 ${PYSITELIB}/pandas/tests/reshape/concat/test_empty.pyc
-${PYSITELIB}/pandas/tests/reshape/concat/test_empty.pyo
 ${PYSITELIB}/pandas/tests/reshape/concat/test_index.py
 ${PYSITELIB}/pandas/tests/reshape/concat/test_index.pyc
-${PYSITELIB}/pandas/tests/reshape/concat/test_index.pyo
 ${PYSITELIB}/pandas/tests/reshape/concat/test_invalid.py
 ${PYSITELIB}/pandas/tests/reshape/concat/test_invalid.pyc
-${PYSITELIB}/pandas/tests/reshape/concat/test_invalid.pyo
 ${PYSITELIB}/pandas/tests/reshape/concat/test_series.py
 ${PYSITELIB}/pandas/tests/reshape/concat/test_series.pyc
-${PYSITELIB}/pandas/tests/reshape/concat/test_series.pyo
 ${PYSITELIB}/pandas/tests/reshape/concat/test_sort.py
 ${PYSITELIB}/pandas/tests/reshape/concat/test_sort.pyc
-${PYSITELIB}/pandas/tests/reshape/concat/test_sort.pyo
 ${PYSITELIB}/pandas/tests/reshape/merge/__init__.py
 ${PYSITELIB}/pandas/tests/reshape/merge/__init__.pyc
-${PYSITELIB}/pandas/tests/reshape/merge/__init__.pyo
 ${PYSITELIB}/pandas/tests/reshape/merge/test_join.py
 ${PYSITELIB}/pandas/tests/reshape/merge/test_join.pyc
-${PYSITELIB}/pandas/tests/reshape/merge/test_join.pyo
 ${PYSITELIB}/pandas/tests/reshape/merge/test_merge.py
 ${PYSITELIB}/pandas/tests/reshape/merge/test_merge.pyc
-${PYSITELIB}/pandas/tests/reshape/merge/test_merge.pyo
 ${PYSITELIB}/pandas/tests/reshape/merge/test_merge_asof.py
 ${PYSITELIB}/pandas/tests/reshape/merge/test_merge_asof.pyc
-${PYSITELIB}/pandas/tests/reshape/merge/test_merge_asof.pyo
 ${PYSITELIB}/pandas/tests/reshape/merge/test_merge_cross.py
 ${PYSITELIB}/pandas/tests/reshape/merge/test_merge_cross.pyc
-${PYSITELIB}/pandas/tests/reshape/merge/test_merge_cross.pyo
 ${PYSITELIB}/pandas/tests/reshape/merge/test_merge_index_as_string.py
 ${PYSITELIB}/pandas/tests/reshape/merge/test_merge_index_as_string.pyc
-${PYSITELIB}/pandas/tests/reshape/merge/test_merge_index_as_string.pyo
 ${PYSITELIB}/pandas/tests/reshape/merge/test_merge_ordered.py
 ${PYSITELIB}/pandas/tests/reshape/merge/test_merge_ordered.pyc
-${PYSITELIB}/pandas/tests/reshape/merge/test_merge_ordered.pyo
 ${PYSITELIB}/pandas/tests/reshape/merge/test_multi.py
 ${PYSITELIB}/pandas/tests/reshape/merge/test_multi.pyc
-${PYSITELIB}/pandas/tests/reshape/merge/test_multi.pyo
 ${PYSITELIB}/pandas/tests/reshape/test_crosstab.py
 ${PYSITELIB}/pandas/tests/reshape/test_crosstab.pyc
-${PYSITELIB}/pandas/tests/reshape/test_crosstab.pyo
 ${PYSITELIB}/pandas/tests/reshape/test_cut.py
 ${PYSITELIB}/pandas/tests/reshape/test_cut.pyc
-${PYSITELIB}/pandas/tests/reshape/test_cut.pyo
 ${PYSITELIB}/pandas/tests/reshape/test_from_dummies.py
 ${PYSITELIB}/pandas/tests/reshape/test_from_dummies.pyc
-${PYSITELIB}/pandas/tests/reshape/test_from_dummies.pyo
 ${PYSITELIB}/pandas/tests/reshape/test_get_dummies.py
 ${PYSITELIB}/pandas/tests/reshape/test_get_dummies.pyc
-${PYSITELIB}/pandas/tests/reshape/test_get_dummies.pyo
 ${PYSITELIB}/pandas/tests/reshape/test_melt.py
 ${PYSITELIB}/pandas/tests/reshape/test_melt.pyc
-${PYSITELIB}/pandas/tests/reshape/test_melt.pyo
 ${PYSITELIB}/pandas/tests/reshape/test_pivot.py
 ${PYSITELIB}/pandas/tests/reshape/test_pivot.pyc
-${PYSITELIB}/pandas/tests/reshape/test_pivot.pyo
 ${PYSITELIB}/pandas/tests/reshape/test_pivot_multilevel.py
 ${PYSITELIB}/pandas/tests/reshape/test_pivot_multilevel.pyc
-${PYSITELIB}/pandas/tests/reshape/test_pivot_multilevel.pyo
 ${PYSITELIB}/pandas/tests/reshape/test_qcut.py
 ${PYSITELIB}/pandas/tests/reshape/test_qcut.pyc
-${PYSITELIB}/pandas/tests/reshape/test_qcut.pyo
 ${PYSITELIB}/pandas/tests/reshape/test_union_categoricals.py
 ${PYSITELIB}/pandas/tests/reshape/test_union_categoricals.pyc
-${PYSITELIB}/pandas/tests/reshape/test_union_categoricals.pyo
 ${PYSITELIB}/pandas/tests/reshape/test_util.py
 ${PYSITELIB}/pandas/tests/reshape/test_util.pyc
-${PYSITELIB}/pandas/tests/reshape/test_util.pyo
 ${PYSITELIB}/pandas/tests/scalar/__init__.py
 ${PYSITELIB}/pandas/tests/scalar/__init__.pyc
-${PYSITELIB}/pandas/tests/scalar/__init__.pyo
 ${PYSITELIB}/pandas/tests/scalar/interval/__init__.py
 ${PYSITELIB}/pandas/tests/scalar/interval/__init__.pyc
-${PYSITELIB}/pandas/tests/scalar/interval/__init__.pyo
 ${PYSITELIB}/pandas/tests/scalar/interval/test_arithmetic.py
 ${PYSITELIB}/pandas/tests/scalar/interval/test_arithmetic.pyc
-${PYSITELIB}/pandas/tests/scalar/interval/test_arithmetic.pyo
 ${PYSITELIB}/pandas/tests/scalar/interval/test_interval.py
 ${PYSITELIB}/pandas/tests/scalar/interval/test_interval.pyc
-${PYSITELIB}/pandas/tests/scalar/interval/test_interval.pyo
 ${PYSITELIB}/pandas/tests/scalar/interval/test_ops.py
 ${PYSITELIB}/pandas/tests/scalar/interval/test_ops.pyc
-${PYSITELIB}/pandas/tests/scalar/interval/test_ops.pyo
 ${PYSITELIB}/pandas/tests/scalar/period/__init__.py
 ${PYSITELIB}/pandas/tests/scalar/period/__init__.pyc
-${PYSITELIB}/pandas/tests/scalar/period/__init__.pyo
 ${PYSITELIB}/pandas/tests/scalar/period/test_asfreq.py
 ${PYSITELIB}/pandas/tests/scalar/period/test_asfreq.pyc
-${PYSITELIB}/pandas/tests/scalar/period/test_asfreq.pyo
 ${PYSITELIB}/pandas/tests/scalar/period/test_period.py
 ${PYSITELIB}/pandas/tests/scalar/period/test_period.pyc
-${PYSITELIB}/pandas/tests/scalar/period/test_period.pyo
 ${PYSITELIB}/pandas/tests/scalar/test_na_scalar.py
 ${PYSITELIB}/pandas/tests/scalar/test_na_scalar.pyc
-${PYSITELIB}/pandas/tests/scalar/test_na_scalar.pyo
 ${PYSITELIB}/pandas/tests/scalar/test_nat.py
 ${PYSITELIB}/pandas/tests/scalar/test_nat.pyc
-${PYSITELIB}/pandas/tests/scalar/test_nat.pyo
 ${PYSITELIB}/pandas/tests/scalar/timedelta/__init__.py
 ${PYSITELIB}/pandas/tests/scalar/timedelta/__init__.pyc
-${PYSITELIB}/pandas/tests/scalar/timedelta/__init__.pyo
 ${PYSITELIB}/pandas/tests/scalar/timedelta/test_arithmetic.py
 ${PYSITELIB}/pandas/tests/scalar/timedelta/test_arithmetic.pyc
-${PYSITELIB}/pandas/tests/scalar/timedelta/test_arithmetic.pyo
 ${PYSITELIB}/pandas/tests/scalar/timedelta/test_constructors.py
 ${PYSITELIB}/pandas/tests/scalar/timedelta/test_constructors.pyc
-${PYSITELIB}/pandas/tests/scalar/timedelta/test_constructors.pyo
 ${PYSITELIB}/pandas/tests/scalar/timedelta/test_formats.py
 ${PYSITELIB}/pandas/tests/scalar/timedelta/test_formats.pyc
-${PYSITELIB}/pandas/tests/scalar/timedelta/test_formats.pyo
 ${PYSITELIB}/pandas/tests/scalar/timedelta/test_timedelta.py
 ${PYSITELIB}/pandas/tests/scalar/timedelta/test_timedelta.pyc
-${PYSITELIB}/pandas/tests/scalar/timedelta/test_timedelta.pyo
 ${PYSITELIB}/pandas/tests/scalar/timestamp/__init__.py
 ${PYSITELIB}/pandas/tests/scalar/timestamp/__init__.pyc
-${PYSITELIB}/pandas/tests/scalar/timestamp/__init__.pyo
 ${PYSITELIB}/pandas/tests/scalar/timestamp/test_arithmetic.py
 ${PYSITELIB}/pandas/tests/scalar/timestamp/test_arithmetic.pyc
-${PYSITELIB}/pandas/tests/scalar/timestamp/test_arithmetic.pyo
 ${PYSITELIB}/pandas/tests/scalar/timestamp/test_comparisons.py
 ${PYSITELIB}/pandas/tests/scalar/timestamp/test_comparisons.pyc
-${PYSITELIB}/pandas/tests/scalar/timestamp/test_comparisons.pyo
 ${PYSITELIB}/pandas/tests/scalar/timestamp/test_constructors.py
 ${PYSITELIB}/pandas/tests/scalar/timestamp/test_constructors.pyc
-${PYSITELIB}/pandas/tests/scalar/timestamp/test_constructors.pyo
 ${PYSITELIB}/pandas/tests/scalar/timestamp/test_formats.py
 ${PYSITELIB}/pandas/tests/scalar/timestamp/test_formats.pyc
-${PYSITELIB}/pandas/tests/scalar/timestamp/test_formats.pyo
 ${PYSITELIB}/pandas/tests/scalar/timestamp/test_rendering.py
 ${PYSITELIB}/pandas/tests/scalar/timestamp/test_rendering.pyc
-${PYSITELIB}/pandas/tests/scalar/timestamp/test_rendering.pyo
 ${PYSITELIB}/pandas/tests/scalar/timestamp/test_timestamp.py
 ${PYSITELIB}/pandas/tests/scalar/timestamp/test_timestamp.pyc
-${PYSITELIB}/pandas/tests/scalar/timestamp/test_timestamp.pyo
 ${PYSITELIB}/pandas/tests/scalar/timestamp/test_timezones.py
 ${PYSITELIB}/pandas/tests/scalar/timestamp/test_timezones.pyc
-${PYSITELIB}/pandas/tests/scalar/timestamp/test_timezones.pyo
 ${PYSITELIB}/pandas/tests/scalar/timestamp/test_unary_ops.py
 ${PYSITELIB}/pandas/tests/scalar/timestamp/test_unary_ops.pyc
-${PYSITELIB}/pandas/tests/scalar/timestamp/test_unary_ops.pyo
 ${PYSITELIB}/pandas/tests/series/__init__.py
 ${PYSITELIB}/pandas/tests/series/__init__.pyc
-${PYSITELIB}/pandas/tests/series/__init__.pyo
 ${PYSITELIB}/pandas/tests/series/accessors/__init__.py
 ${PYSITELIB}/pandas/tests/series/accessors/__init__.pyc
-${PYSITELIB}/pandas/tests/series/accessors/__init__.pyo
 ${PYSITELIB}/pandas/tests/series/accessors/test_cat_accessor.py
 ${PYSITELIB}/pandas/tests/series/accessors/test_cat_accessor.pyc
-${PYSITELIB}/pandas/tests/series/accessors/test_cat_accessor.pyo
 ${PYSITELIB}/pandas/tests/series/accessors/test_dt_accessor.py
 ${PYSITELIB}/pandas/tests/series/accessors/test_dt_accessor.pyc
-${PYSITELIB}/pandas/tests/series/accessors/test_dt_accessor.pyo
 ${PYSITELIB}/pandas/tests/series/accessors/test_sparse_accessor.py
 ${PYSITELIB}/pandas/tests/series/accessors/test_sparse_accessor.pyc
-${PYSITELIB}/pandas/tests/series/accessors/test_sparse_accessor.pyo
 ${PYSITELIB}/pandas/tests/series/accessors/test_str_accessor.py
 ${PYSITELIB}/pandas/tests/series/accessors/test_str_accessor.pyc
-${PYSITELIB}/pandas/tests/series/accessors/test_str_accessor.pyo
 ${PYSITELIB}/pandas/tests/series/indexing/__init__.py
 ${PYSITELIB}/pandas/tests/series/indexing/__init__.pyc
-${PYSITELIB}/pandas/tests/series/indexing/__init__.pyo
 ${PYSITELIB}/pandas/tests/series/indexing/test_datetime.py
 ${PYSITELIB}/pandas/tests/series/indexing/test_datetime.pyc
-${PYSITELIB}/pandas/tests/series/indexing/test_datetime.pyo
 ${PYSITELIB}/pandas/tests/series/indexing/test_delitem.py
 ${PYSITELIB}/pandas/tests/series/indexing/test_delitem.pyc
-${PYSITELIB}/pandas/tests/series/indexing/test_delitem.pyo
 ${PYSITELIB}/pandas/tests/series/indexing/test_get.py
 ${PYSITELIB}/pandas/tests/series/indexing/test_get.pyc
-${PYSITELIB}/pandas/tests/series/indexing/test_get.pyo
 ${PYSITELIB}/pandas/tests/series/indexing/test_getitem.py
 ${PYSITELIB}/pandas/tests/series/indexing/test_getitem.pyc
-${PYSITELIB}/pandas/tests/series/indexing/test_getitem.pyo
 ${PYSITELIB}/pandas/tests/series/indexing/test_indexing.py
 ${PYSITELIB}/pandas/tests/series/indexing/test_indexing.pyc
-${PYSITELIB}/pandas/tests/series/indexing/test_indexing.pyo
 ${PYSITELIB}/pandas/tests/series/indexing/test_mask.py
 ${PYSITELIB}/pandas/tests/series/indexing/test_mask.pyc
-${PYSITELIB}/pandas/tests/series/indexing/test_mask.pyo
 ${PYSITELIB}/pandas/tests/series/indexing/test_set_value.py
 ${PYSITELIB}/pandas/tests/series/indexing/test_set_value.pyc
-${PYSITELIB}/pandas/tests/series/indexing/test_set_value.pyo
 ${PYSITELIB}/pandas/tests/series/indexing/test_setitem.py
 ${PYSITELIB}/pandas/tests/series/indexing/test_setitem.pyc
-${PYSITELIB}/pandas/tests/series/indexing/test_setitem.pyo
 ${PYSITELIB}/pandas/tests/series/indexing/test_take.py
 ${PYSITELIB}/pandas/tests/series/indexing/test_take.pyc
-${PYSITELIB}/pandas/tests/series/indexing/test_take.pyo
 ${PYSITELIB}/pandas/tests/series/indexing/test_where.py
 ${PYSITELIB}/pandas/tests/series/indexing/test_where.pyc
-${PYSITELIB}/pandas/tests/series/indexing/test_where.pyo
 ${PYSITELIB}/pandas/tests/series/indexing/test_xs.py
 ${PYSITELIB}/pandas/tests/series/indexing/test_xs.pyc
-${PYSITELIB}/pandas/tests/series/indexing/test_xs.pyo
 ${PYSITELIB}/pandas/tests/series/methods/__init__.py
 ${PYSITELIB}/pandas/tests/series/methods/__init__.pyc
-${PYSITELIB}/pandas/tests/series/methods/__init__.pyo
+${PYSITELIB}/pandas/tests/series/methods/test_add_prefix_suffix.py
+${PYSITELIB}/pandas/tests/series/methods/test_add_prefix_suffix.pyc
 ${PYSITELIB}/pandas/tests/series/methods/test_align.py
 ${PYSITELIB}/pandas/tests/series/methods/test_align.pyc
-${PYSITELIB}/pandas/tests/series/methods/test_align.pyo
-${PYSITELIB}/pandas/tests/series/methods/test_append.py
-${PYSITELIB}/pandas/tests/series/methods/test_append.pyc
-${PYSITELIB}/pandas/tests/series/methods/test_append.pyo
 ${PYSITELIB}/pandas/tests/series/methods/test_argsort.py
 ${PYSITELIB}/pandas/tests/series/methods/test_argsort.pyc
-${PYSITELIB}/pandas/tests/series/methods/test_argsort.pyo
 ${PYSITELIB}/pandas/tests/series/methods/test_asof.py
 ${PYSITELIB}/pandas/tests/series/methods/test_asof.pyc
-${PYSITELIB}/pandas/tests/series/methods/test_asof.pyo
 ${PYSITELIB}/pandas/tests/series/methods/test_astype.py
 ${PYSITELIB}/pandas/tests/series/methods/test_astype.pyc
-${PYSITELIB}/pandas/tests/series/methods/test_astype.pyo
 ${PYSITELIB}/pandas/tests/series/methods/test_autocorr.py
 ${PYSITELIB}/pandas/tests/series/methods/test_autocorr.pyc
-${PYSITELIB}/pandas/tests/series/methods/test_autocorr.pyo
 ${PYSITELIB}/pandas/tests/series/methods/test_between.py
 ${PYSITELIB}/pandas/tests/series/methods/test_between.pyc
-${PYSITELIB}/pandas/tests/series/methods/test_between.pyo
 ${PYSITELIB}/pandas/tests/series/methods/test_clip.py
 ${PYSITELIB}/pandas/tests/series/methods/test_clip.pyc
-${PYSITELIB}/pandas/tests/series/methods/test_clip.pyo
 ${PYSITELIB}/pandas/tests/series/methods/test_combine.py
 ${PYSITELIB}/pandas/tests/series/methods/test_combine.pyc
-${PYSITELIB}/pandas/tests/series/methods/test_combine.pyo
 ${PYSITELIB}/pandas/tests/series/methods/test_combine_first.py
 ${PYSITELIB}/pandas/tests/series/methods/test_combine_first.pyc
-${PYSITELIB}/pandas/tests/series/methods/test_combine_first.pyo
 ${PYSITELIB}/pandas/tests/series/methods/test_compare.py
 ${PYSITELIB}/pandas/tests/series/methods/test_compare.pyc
-${PYSITELIB}/pandas/tests/series/methods/test_compare.pyo
-${PYSITELIB}/pandas/tests/series/methods/test_convert.py
-${PYSITELIB}/pandas/tests/series/methods/test_convert.pyc
-${PYSITELIB}/pandas/tests/series/methods/test_convert.pyo
 ${PYSITELIB}/pandas/tests/series/methods/test_convert_dtypes.py
 ${PYSITELIB}/pandas/tests/series/methods/test_convert_dtypes.pyc
-${PYSITELIB}/pandas/tests/series/methods/test_convert_dtypes.pyo
 ${PYSITELIB}/pandas/tests/series/methods/test_copy.py
 ${PYSITELIB}/pandas/tests/series/methods/test_copy.pyc
-${PYSITELIB}/pandas/tests/series/methods/test_copy.pyo
 ${PYSITELIB}/pandas/tests/series/methods/test_count.py
 ${PYSITELIB}/pandas/tests/series/methods/test_count.pyc
-${PYSITELIB}/pandas/tests/series/methods/test_count.pyo
 ${PYSITELIB}/pandas/tests/series/methods/test_cov_corr.py
 ${PYSITELIB}/pandas/tests/series/methods/test_cov_corr.pyc
-${PYSITELIB}/pandas/tests/series/methods/test_cov_corr.pyo
 ${PYSITELIB}/pandas/tests/series/methods/test_describe.py
 ${PYSITELIB}/pandas/tests/series/methods/test_describe.pyc
-${PYSITELIB}/pandas/tests/series/methods/test_describe.pyo
 ${PYSITELIB}/pandas/tests/series/methods/test_diff.py
 ${PYSITELIB}/pandas/tests/series/methods/test_diff.pyc
-${PYSITELIB}/pandas/tests/series/methods/test_diff.pyo
 ${PYSITELIB}/pandas/tests/series/methods/test_drop.py
 ${PYSITELIB}/pandas/tests/series/methods/test_drop.pyc
-${PYSITELIB}/pandas/tests/series/methods/test_drop.pyo
 ${PYSITELIB}/pandas/tests/series/methods/test_drop_duplicates.py
 ${PYSITELIB}/pandas/tests/series/methods/test_drop_duplicates.pyc
-${PYSITELIB}/pandas/tests/series/methods/test_drop_duplicates.pyo
 ${PYSITELIB}/pandas/tests/series/methods/test_dropna.py
 ${PYSITELIB}/pandas/tests/series/methods/test_dropna.pyc
-${PYSITELIB}/pandas/tests/series/methods/test_dropna.pyo
 ${PYSITELIB}/pandas/tests/series/methods/test_dtypes.py
 ${PYSITELIB}/pandas/tests/series/methods/test_dtypes.pyc
-${PYSITELIB}/pandas/tests/series/methods/test_dtypes.pyo
 ${PYSITELIB}/pandas/tests/series/methods/test_duplicated.py
 ${PYSITELIB}/pandas/tests/series/methods/test_duplicated.pyc
-${PYSITELIB}/pandas/tests/series/methods/test_duplicated.pyo
 ${PYSITELIB}/pandas/tests/series/methods/test_equals.py
 ${PYSITELIB}/pandas/tests/series/methods/test_equals.pyc
-${PYSITELIB}/pandas/tests/series/methods/test_equals.pyo
 ${PYSITELIB}/pandas/tests/series/methods/test_explode.py
 ${PYSITELIB}/pandas/tests/series/methods/test_explode.pyc
-${PYSITELIB}/pandas/tests/series/methods/test_explode.pyo
 ${PYSITELIB}/pandas/tests/series/methods/test_fillna.py
 ${PYSITELIB}/pandas/tests/series/methods/test_fillna.pyc
-${PYSITELIB}/pandas/tests/series/methods/test_fillna.pyo
 ${PYSITELIB}/pandas/tests/series/methods/test_get_numeric_data.py
 ${PYSITELIB}/pandas/tests/series/methods/test_get_numeric_data.pyc
-${PYSITELIB}/pandas/tests/series/methods/test_get_numeric_data.pyo
 ${PYSITELIB}/pandas/tests/series/methods/test_head_tail.py
 ${PYSITELIB}/pandas/tests/series/methods/test_head_tail.pyc
-${PYSITELIB}/pandas/tests/series/methods/test_head_tail.pyo
 ${PYSITELIB}/pandas/tests/series/methods/test_infer_objects.py
 ${PYSITELIB}/pandas/tests/series/methods/test_infer_objects.pyc
-${PYSITELIB}/pandas/tests/series/methods/test_infer_objects.pyo
 ${PYSITELIB}/pandas/tests/series/methods/test_interpolate.py
 ${PYSITELIB}/pandas/tests/series/methods/test_interpolate.pyc
-${PYSITELIB}/pandas/tests/series/methods/test_interpolate.pyo
 ${PYSITELIB}/pandas/tests/series/methods/test_is_monotonic.py
 ${PYSITELIB}/pandas/tests/series/methods/test_is_monotonic.pyc
-${PYSITELIB}/pandas/tests/series/methods/test_is_monotonic.pyo
 ${PYSITELIB}/pandas/tests/series/methods/test_is_unique.py
 ${PYSITELIB}/pandas/tests/series/methods/test_is_unique.pyc
-${PYSITELIB}/pandas/tests/series/methods/test_is_unique.pyo
 ${PYSITELIB}/pandas/tests/series/methods/test_isin.py
 ${PYSITELIB}/pandas/tests/series/methods/test_isin.pyc
-${PYSITELIB}/pandas/tests/series/methods/test_isin.pyo
 ${PYSITELIB}/pandas/tests/series/methods/test_isna.py
 ${PYSITELIB}/pandas/tests/series/methods/test_isna.pyc
-${PYSITELIB}/pandas/tests/series/methods/test_isna.pyo
 ${PYSITELIB}/pandas/tests/series/methods/test_item.py
 ${PYSITELIB}/pandas/tests/series/methods/test_item.pyc
-${PYSITELIB}/pandas/tests/series/methods/test_item.pyo
 ${PYSITELIB}/pandas/tests/series/methods/test_matmul.py
 ${PYSITELIB}/pandas/tests/series/methods/test_matmul.pyc
-${PYSITELIB}/pandas/tests/series/methods/test_matmul.pyo
 ${PYSITELIB}/pandas/tests/series/methods/test_nlargest.py
 ${PYSITELIB}/pandas/tests/series/methods/test_nlargest.pyc
-${PYSITELIB}/pandas/tests/series/methods/test_nlargest.pyo
 ${PYSITELIB}/pandas/tests/series/methods/test_nunique.py
 ${PYSITELIB}/pandas/tests/series/methods/test_nunique.pyc
-${PYSITELIB}/pandas/tests/series/methods/test_nunique.pyo
 ${PYSITELIB}/pandas/tests/series/methods/test_pct_change.py
 ${PYSITELIB}/pandas/tests/series/methods/test_pct_change.pyc
-${PYSITELIB}/pandas/tests/series/methods/test_pct_change.pyo
 ${PYSITELIB}/pandas/tests/series/methods/test_pop.py
 ${PYSITELIB}/pandas/tests/series/methods/test_pop.pyc
-${PYSITELIB}/pandas/tests/series/methods/test_pop.pyo
 ${PYSITELIB}/pandas/tests/series/methods/test_quantile.py
 ${PYSITELIB}/pandas/tests/series/methods/test_quantile.pyc
-${PYSITELIB}/pandas/tests/series/methods/test_quantile.pyo
 ${PYSITELIB}/pandas/tests/series/methods/test_rank.py
 ${PYSITELIB}/pandas/tests/series/methods/test_rank.pyc
-${PYSITELIB}/pandas/tests/series/methods/test_rank.pyo
 ${PYSITELIB}/pandas/tests/series/methods/test_reindex.py
 ${PYSITELIB}/pandas/tests/series/methods/test_reindex.pyc
-${PYSITELIB}/pandas/tests/series/methods/test_reindex.pyo
 ${PYSITELIB}/pandas/tests/series/methods/test_reindex_like.py
 ${PYSITELIB}/pandas/tests/series/methods/test_reindex_like.pyc
-${PYSITELIB}/pandas/tests/series/methods/test_reindex_like.pyo
 ${PYSITELIB}/pandas/tests/series/methods/test_rename.py
 ${PYSITELIB}/pandas/tests/series/methods/test_rename.pyc
-${PYSITELIB}/pandas/tests/series/methods/test_rename.pyo
 ${PYSITELIB}/pandas/tests/series/methods/test_rename_axis.py
 ${PYSITELIB}/pandas/tests/series/methods/test_rename_axis.pyc
-${PYSITELIB}/pandas/tests/series/methods/test_rename_axis.pyo
 ${PYSITELIB}/pandas/tests/series/methods/test_repeat.py
 ${PYSITELIB}/pandas/tests/series/methods/test_repeat.pyc
-${PYSITELIB}/pandas/tests/series/methods/test_repeat.pyo
 ${PYSITELIB}/pandas/tests/series/methods/test_replace.py
 ${PYSITELIB}/pandas/tests/series/methods/test_replace.pyc
-${PYSITELIB}/pandas/tests/series/methods/test_replace.pyo
 ${PYSITELIB}/pandas/tests/series/methods/test_reset_index.py
 ${PYSITELIB}/pandas/tests/series/methods/test_reset_index.pyc
-${PYSITELIB}/pandas/tests/series/methods/test_reset_index.pyo
 ${PYSITELIB}/pandas/tests/series/methods/test_round.py
 ${PYSITELIB}/pandas/tests/series/methods/test_round.pyc
-${PYSITELIB}/pandas/tests/series/methods/test_round.pyo
 ${PYSITELIB}/pandas/tests/series/methods/test_searchsorted.py
 ${PYSITELIB}/pandas/tests/series/methods/test_searchsorted.pyc
-${PYSITELIB}/pandas/tests/series/methods/test_searchsorted.pyo
 ${PYSITELIB}/pandas/tests/series/methods/test_set_name.py
 ${PYSITELIB}/pandas/tests/series/methods/test_set_name.pyc
-${PYSITELIB}/pandas/tests/series/methods/test_set_name.pyo
 ${PYSITELIB}/pandas/tests/series/methods/test_sort_index.py
 ${PYSITELIB}/pandas/tests/series/methods/test_sort_index.pyc
-${PYSITELIB}/pandas/tests/series/methods/test_sort_index.pyo
 ${PYSITELIB}/pandas/tests/series/methods/test_sort_values.py
 ${PYSITELIB}/pandas/tests/series/methods/test_sort_values.pyc
-${PYSITELIB}/pandas/tests/series/methods/test_sort_values.pyo
 ${PYSITELIB}/pandas/tests/series/methods/test_to_csv.py
 ${PYSITELIB}/pandas/tests/series/methods/test_to_csv.pyc
-${PYSITELIB}/pandas/tests/series/methods/test_to_csv.pyo
 ${PYSITELIB}/pandas/tests/series/methods/test_to_dict.py
 ${PYSITELIB}/pandas/tests/series/methods/test_to_dict.pyc
-${PYSITELIB}/pandas/tests/series/methods/test_to_dict.pyo
 ${PYSITELIB}/pandas/tests/series/methods/test_to_frame.py
 ${PYSITELIB}/pandas/tests/series/methods/test_to_frame.pyc
-${PYSITELIB}/pandas/tests/series/methods/test_to_frame.pyo
+${PYSITELIB}/pandas/tests/series/methods/test_to_numpy.py
+${PYSITELIB}/pandas/tests/series/methods/test_to_numpy.pyc
+${PYSITELIB}/pandas/tests/series/methods/test_tolist.py
+${PYSITELIB}/pandas/tests/series/methods/test_tolist.pyc
 ${PYSITELIB}/pandas/tests/series/methods/test_truncate.py
 ${PYSITELIB}/pandas/tests/series/methods/test_truncate.pyc
-${PYSITELIB}/pandas/tests/series/methods/test_truncate.pyo
 ${PYSITELIB}/pandas/tests/series/methods/test_tz_localize.py
 ${PYSITELIB}/pandas/tests/series/methods/test_tz_localize.pyc
-${PYSITELIB}/pandas/tests/series/methods/test_tz_localize.pyo
 ${PYSITELIB}/pandas/tests/series/methods/test_unique.py
 ${PYSITELIB}/pandas/tests/series/methods/test_unique.pyc
-${PYSITELIB}/pandas/tests/series/methods/test_unique.pyo
 ${PYSITELIB}/pandas/tests/series/methods/test_unstack.py
 ${PYSITELIB}/pandas/tests/series/methods/test_unstack.pyc
-${PYSITELIB}/pandas/tests/series/methods/test_unstack.pyo
 ${PYSITELIB}/pandas/tests/series/methods/test_update.py
 ${PYSITELIB}/pandas/tests/series/methods/test_update.pyc
-${PYSITELIB}/pandas/tests/series/methods/test_update.pyo
 ${PYSITELIB}/pandas/tests/series/methods/test_value_counts.py
 ${PYSITELIB}/pandas/tests/series/methods/test_value_counts.pyc
-${PYSITELIB}/pandas/tests/series/methods/test_value_counts.pyo
 ${PYSITELIB}/pandas/tests/series/methods/test_values.py
 ${PYSITELIB}/pandas/tests/series/methods/test_values.pyc
-${PYSITELIB}/pandas/tests/series/methods/test_values.pyo
 ${PYSITELIB}/pandas/tests/series/methods/test_view.py
 ${PYSITELIB}/pandas/tests/series/methods/test_view.pyc
-${PYSITELIB}/pandas/tests/series/methods/test_view.pyo
 ${PYSITELIB}/pandas/tests/series/test_api.py
 ${PYSITELIB}/pandas/tests/series/test_api.pyc
-${PYSITELIB}/pandas/tests/series/test_api.pyo
 ${PYSITELIB}/pandas/tests/series/test_arithmetic.py
 ${PYSITELIB}/pandas/tests/series/test_arithmetic.pyc
-${PYSITELIB}/pandas/tests/series/test_arithmetic.pyo
 ${PYSITELIB}/pandas/tests/series/test_constructors.py
 ${PYSITELIB}/pandas/tests/series/test_constructors.pyc
-${PYSITELIB}/pandas/tests/series/test_constructors.pyo
 ${PYSITELIB}/pandas/tests/series/test_cumulative.py
 ${PYSITELIB}/pandas/tests/series/test_cumulative.pyc
-${PYSITELIB}/pandas/tests/series/test_cumulative.pyo
 ${PYSITELIB}/pandas/tests/series/test_iteration.py
 ${PYSITELIB}/pandas/tests/series/test_iteration.pyc
-${PYSITELIB}/pandas/tests/series/test_iteration.pyo
 ${PYSITELIB}/pandas/tests/series/test_logical_ops.py
 ${PYSITELIB}/pandas/tests/series/test_logical_ops.pyc
-${PYSITELIB}/pandas/tests/series/test_logical_ops.pyo
 ${PYSITELIB}/pandas/tests/series/test_missing.py
 ${PYSITELIB}/pandas/tests/series/test_missing.pyc
-${PYSITELIB}/pandas/tests/series/test_missing.pyo
 ${PYSITELIB}/pandas/tests/series/test_npfuncs.py
 ${PYSITELIB}/pandas/tests/series/test_npfuncs.pyc
-${PYSITELIB}/pandas/tests/series/test_npfuncs.pyo
 ${PYSITELIB}/pandas/tests/series/test_reductions.py
 ${PYSITELIB}/pandas/tests/series/test_reductions.pyc
-${PYSITELIB}/pandas/tests/series/test_reductions.pyo
 ${PYSITELIB}/pandas/tests/series/test_repr.py
 ${PYSITELIB}/pandas/tests/series/test_repr.pyc
-${PYSITELIB}/pandas/tests/series/test_repr.pyo
 ${PYSITELIB}/pandas/tests/series/test_subclass.py
 ${PYSITELIB}/pandas/tests/series/test_subclass.pyc
-${PYSITELIB}/pandas/tests/series/test_subclass.pyo
 ${PYSITELIB}/pandas/tests/series/test_ufunc.py
 ${PYSITELIB}/pandas/tests/series/test_ufunc.pyc
-${PYSITELIB}/pandas/tests/series/test_ufunc.pyo
 ${PYSITELIB}/pandas/tests/series/test_unary.py
 ${PYSITELIB}/pandas/tests/series/test_unary.pyc
-${PYSITELIB}/pandas/tests/series/test_unary.pyo
 ${PYSITELIB}/pandas/tests/series/test_validate.py
 ${PYSITELIB}/pandas/tests/series/test_validate.pyc
-${PYSITELIB}/pandas/tests/series/test_validate.pyo
 ${PYSITELIB}/pandas/tests/strings/__init__.py
 ${PYSITELIB}/pandas/tests/strings/__init__.pyc
-${PYSITELIB}/pandas/tests/strings/__init__.pyo
 ${PYSITELIB}/pandas/tests/strings/conftest.py
 ${PYSITELIB}/pandas/tests/strings/conftest.pyc
-${PYSITELIB}/pandas/tests/strings/conftest.pyo
 ${PYSITELIB}/pandas/tests/strings/test_api.py
 ${PYSITELIB}/pandas/tests/strings/test_api.pyc
-${PYSITELIB}/pandas/tests/strings/test_api.pyo
 ${PYSITELIB}/pandas/tests/strings/test_case_justify.py
 ${PYSITELIB}/pandas/tests/strings/test_case_justify.pyc
-${PYSITELIB}/pandas/tests/strings/test_case_justify.pyo
 ${PYSITELIB}/pandas/tests/strings/test_cat.py
 ${PYSITELIB}/pandas/tests/strings/test_cat.pyc
-${PYSITELIB}/pandas/tests/strings/test_cat.pyo
 ${PYSITELIB}/pandas/tests/strings/test_extract.py
 ${PYSITELIB}/pandas/tests/strings/test_extract.pyc
-${PYSITELIB}/pandas/tests/strings/test_extract.pyo
 ${PYSITELIB}/pandas/tests/strings/test_find_replace.py
 ${PYSITELIB}/pandas/tests/strings/test_find_replace.pyc
-${PYSITELIB}/pandas/tests/strings/test_find_replace.pyo
 ${PYSITELIB}/pandas/tests/strings/test_get_dummies.py
 ${PYSITELIB}/pandas/tests/strings/test_get_dummies.pyc
-${PYSITELIB}/pandas/tests/strings/test_get_dummies.pyo
 ${PYSITELIB}/pandas/tests/strings/test_split_partition.py
 ${PYSITELIB}/pandas/tests/strings/test_split_partition.pyc
-${PYSITELIB}/pandas/tests/strings/test_split_partition.pyo
 ${PYSITELIB}/pandas/tests/strings/test_string_array.py
 ${PYSITELIB}/pandas/tests/strings/test_string_array.pyc
-${PYSITELIB}/pandas/tests/strings/test_string_array.pyo
 ${PYSITELIB}/pandas/tests/strings/test_strings.py
 ${PYSITELIB}/pandas/tests/strings/test_strings.pyc
-${PYSITELIB}/pandas/tests/strings/test_strings.pyo
 ${PYSITELIB}/pandas/tests/test_aggregation.py
 ${PYSITELIB}/pandas/tests/test_aggregation.pyc
-${PYSITELIB}/pandas/tests/test_aggregation.pyo
 ${PYSITELIB}/pandas/tests/test_algos.py
 ${PYSITELIB}/pandas/tests/test_algos.pyc
-${PYSITELIB}/pandas/tests/test_algos.pyo
 ${PYSITELIB}/pandas/tests/test_common.py
 ${PYSITELIB}/pandas/tests/test_common.pyc
-${PYSITELIB}/pandas/tests/test_common.pyo
 ${PYSITELIB}/pandas/tests/test_downstream.py
 ${PYSITELIB}/pandas/tests/test_downstream.pyc
-${PYSITELIB}/pandas/tests/test_downstream.pyo
 ${PYSITELIB}/pandas/tests/test_errors.py
 ${PYSITELIB}/pandas/tests/test_errors.pyc
-${PYSITELIB}/pandas/tests/test_errors.pyo
 ${PYSITELIB}/pandas/tests/test_expressions.py
 ${PYSITELIB}/pandas/tests/test_expressions.pyc
-${PYSITELIB}/pandas/tests/test_expressions.pyo
 ${PYSITELIB}/pandas/tests/test_flags.py
 ${PYSITELIB}/pandas/tests/test_flags.pyc
-${PYSITELIB}/pandas/tests/test_flags.pyo
 ${PYSITELIB}/pandas/tests/test_multilevel.py
 ${PYSITELIB}/pandas/tests/test_multilevel.pyc
-${PYSITELIB}/pandas/tests/test_multilevel.pyo
 ${PYSITELIB}/pandas/tests/test_nanops.py
 ${PYSITELIB}/pandas/tests/test_nanops.pyc
-${PYSITELIB}/pandas/tests/test_nanops.pyo
 ${PYSITELIB}/pandas/tests/test_optional_dependency.py
 ${PYSITELIB}/pandas/tests/test_optional_dependency.pyc
-${PYSITELIB}/pandas/tests/test_optional_dependency.pyo
 ${PYSITELIB}/pandas/tests/test_register_accessor.py
 ${PYSITELIB}/pandas/tests/test_register_accessor.pyc
-${PYSITELIB}/pandas/tests/test_register_accessor.pyo
 ${PYSITELIB}/pandas/tests/test_sorting.py
 ${PYSITELIB}/pandas/tests/test_sorting.pyc
-${PYSITELIB}/pandas/tests/test_sorting.pyo
 ${PYSITELIB}/pandas/tests/test_take.py
 ${PYSITELIB}/pandas/tests/test_take.pyc
-${PYSITELIB}/pandas/tests/test_take.pyo
 ${PYSITELIB}/pandas/tests/tools/__init__.py
 ${PYSITELIB}/pandas/tests/tools/__init__.pyc
-${PYSITELIB}/pandas/tests/tools/__init__.pyo
 ${PYSITELIB}/pandas/tests/tools/test_to_datetime.py
 ${PYSITELIB}/pandas/tests/tools/test_to_datetime.pyc
-${PYSITELIB}/pandas/tests/tools/test_to_datetime.pyo
 ${PYSITELIB}/pandas/tests/tools/test_to_numeric.py
 ${PYSITELIB}/pandas/tests/tools/test_to_numeric.pyc
-${PYSITELIB}/pandas/tests/tools/test_to_numeric.pyo
 ${PYSITELIB}/pandas/tests/tools/test_to_time.py
 ${PYSITELIB}/pandas/tests/tools/test_to_time.pyc
-${PYSITELIB}/pandas/tests/tools/test_to_time.pyo
 ${PYSITELIB}/pandas/tests/tools/test_to_timedelta.py
 ${PYSITELIB}/pandas/tests/tools/test_to_timedelta.pyc
-${PYSITELIB}/pandas/tests/tools/test_to_timedelta.pyo
 ${PYSITELIB}/pandas/tests/tseries/__init__.py
 ${PYSITELIB}/pandas/tests/tseries/__init__.pyc
-${PYSITELIB}/pandas/tests/tseries/__init__.pyo
 ${PYSITELIB}/pandas/tests/tseries/frequencies/__init__.py
 ${PYSITELIB}/pandas/tests/tseries/frequencies/__init__.pyc
-${PYSITELIB}/pandas/tests/tseries/frequencies/__init__.pyo
 ${PYSITELIB}/pandas/tests/tseries/frequencies/test_freq_code.py
 ${PYSITELIB}/pandas/tests/tseries/frequencies/test_freq_code.pyc
-${PYSITELIB}/pandas/tests/tseries/frequencies/test_freq_code.pyo
 ${PYSITELIB}/pandas/tests/tseries/frequencies/test_frequencies.py
 ${PYSITELIB}/pandas/tests/tseries/frequencies/test_frequencies.pyc
-${PYSITELIB}/pandas/tests/tseries/frequencies/test_frequencies.pyo
 ${PYSITELIB}/pandas/tests/tseries/frequencies/test_inference.py
 ${PYSITELIB}/pandas/tests/tseries/frequencies/test_inference.pyc
-${PYSITELIB}/pandas/tests/tseries/frequencies/test_inference.pyo
 ${PYSITELIB}/pandas/tests/tseries/holiday/__init__.py
 ${PYSITELIB}/pandas/tests/tseries/holiday/__init__.pyc
-${PYSITELIB}/pandas/tests/tseries/holiday/__init__.pyo
 ${PYSITELIB}/pandas/tests/tseries/holiday/test_calendar.py
 ${PYSITELIB}/pandas/tests/tseries/holiday/test_calendar.pyc
-${PYSITELIB}/pandas/tests/tseries/holiday/test_calendar.pyo
 ${PYSITELIB}/pandas/tests/tseries/holiday/test_federal.py
 ${PYSITELIB}/pandas/tests/tseries/holiday/test_federal.pyc
-${PYSITELIB}/pandas/tests/tseries/holiday/test_federal.pyo
 ${PYSITELIB}/pandas/tests/tseries/holiday/test_holiday.py
 ${PYSITELIB}/pandas/tests/tseries/holiday/test_holiday.pyc
-${PYSITELIB}/pandas/tests/tseries/holiday/test_holiday.pyo
 ${PYSITELIB}/pandas/tests/tseries/holiday/test_observance.py
 ${PYSITELIB}/pandas/tests/tseries/holiday/test_observance.pyc
-${PYSITELIB}/pandas/tests/tseries/holiday/test_observance.pyo
 ${PYSITELIB}/pandas/tests/tseries/offsets/__init__.py
 ${PYSITELIB}/pandas/tests/tseries/offsets/__init__.pyc
-${PYSITELIB}/pandas/tests/tseries/offsets/__init__.pyo
 ${PYSITELIB}/pandas/tests/tseries/offsets/common.py
 ${PYSITELIB}/pandas/tests/tseries/offsets/common.pyc
-${PYSITELIB}/pandas/tests/tseries/offsets/common.pyo
 ${PYSITELIB}/pandas/tests/tseries/offsets/conftest.py
 ${PYSITELIB}/pandas/tests/tseries/offsets/conftest.pyc
-${PYSITELIB}/pandas/tests/tseries/offsets/conftest.pyo
 ${PYSITELIB}/pandas/tests/tseries/offsets/test_business_day.py
 ${PYSITELIB}/pandas/tests/tseries/offsets/test_business_day.pyc
-${PYSITELIB}/pandas/tests/tseries/offsets/test_business_day.pyo
 ${PYSITELIB}/pandas/tests/tseries/offsets/test_business_hour.py
 ${PYSITELIB}/pandas/tests/tseries/offsets/test_business_hour.pyc
-${PYSITELIB}/pandas/tests/tseries/offsets/test_business_hour.pyo
 ${PYSITELIB}/pandas/tests/tseries/offsets/test_business_month.py
 ${PYSITELIB}/pandas/tests/tseries/offsets/test_business_month.pyc
-${PYSITELIB}/pandas/tests/tseries/offsets/test_business_month.pyo
 ${PYSITELIB}/pandas/tests/tseries/offsets/test_business_quarter.py
 ${PYSITELIB}/pandas/tests/tseries/offsets/test_business_quarter.pyc
-${PYSITELIB}/pandas/tests/tseries/offsets/test_business_quarter.pyo
 ${PYSITELIB}/pandas/tests/tseries/offsets/test_business_year.py
 ${PYSITELIB}/pandas/tests/tseries/offsets/test_business_year.pyc
-${PYSITELIB}/pandas/tests/tseries/offsets/test_business_year.pyo
+${PYSITELIB}/pandas/tests/tseries/offsets/test_common.py
+${PYSITELIB}/pandas/tests/tseries/offsets/test_common.pyc
 ${PYSITELIB}/pandas/tests/tseries/offsets/test_custom_business_day.py
 ${PYSITELIB}/pandas/tests/tseries/offsets/test_custom_business_day.pyc
-${PYSITELIB}/pandas/tests/tseries/offsets/test_custom_business_day.pyo
 ${PYSITELIB}/pandas/tests/tseries/offsets/test_custom_business_hour.py
 ${PYSITELIB}/pandas/tests/tseries/offsets/test_custom_business_hour.pyc
-${PYSITELIB}/pandas/tests/tseries/offsets/test_custom_business_hour.pyo
 ${PYSITELIB}/pandas/tests/tseries/offsets/test_custom_business_month.py
 ${PYSITELIB}/pandas/tests/tseries/offsets/test_custom_business_month.pyc
-${PYSITELIB}/pandas/tests/tseries/offsets/test_custom_business_month.pyo
 ${PYSITELIB}/pandas/tests/tseries/offsets/test_dst.py
 ${PYSITELIB}/pandas/tests/tseries/offsets/test_dst.pyc
-${PYSITELIB}/pandas/tests/tseries/offsets/test_dst.pyo
 ${PYSITELIB}/pandas/tests/tseries/offsets/test_easter.py
 ${PYSITELIB}/pandas/tests/tseries/offsets/test_easter.pyc
-${PYSITELIB}/pandas/tests/tseries/offsets/test_easter.pyo
 ${PYSITELIB}/pandas/tests/tseries/offsets/test_fiscal.py
 ${PYSITELIB}/pandas/tests/tseries/offsets/test_fiscal.pyc
-${PYSITELIB}/pandas/tests/tseries/offsets/test_fiscal.pyo
 ${PYSITELIB}/pandas/tests/tseries/offsets/test_index.py
 ${PYSITELIB}/pandas/tests/tseries/offsets/test_index.pyc
-${PYSITELIB}/pandas/tests/tseries/offsets/test_index.pyo
 ${PYSITELIB}/pandas/tests/tseries/offsets/test_month.py
 ${PYSITELIB}/pandas/tests/tseries/offsets/test_month.pyc
-${PYSITELIB}/pandas/tests/tseries/offsets/test_month.pyo
 ${PYSITELIB}/pandas/tests/tseries/offsets/test_offsets.py
 ${PYSITELIB}/pandas/tests/tseries/offsets/test_offsets.pyc
-${PYSITELIB}/pandas/tests/tseries/offsets/test_offsets.pyo
 ${PYSITELIB}/pandas/tests/tseries/offsets/test_offsets_properties.py
 ${PYSITELIB}/pandas/tests/tseries/offsets/test_offsets_properties.pyc
-${PYSITELIB}/pandas/tests/tseries/offsets/test_offsets_properties.pyo
 ${PYSITELIB}/pandas/tests/tseries/offsets/test_quarter.py
 ${PYSITELIB}/pandas/tests/tseries/offsets/test_quarter.pyc
-${PYSITELIB}/pandas/tests/tseries/offsets/test_quarter.pyo
 ${PYSITELIB}/pandas/tests/tseries/offsets/test_ticks.py
 ${PYSITELIB}/pandas/tests/tseries/offsets/test_ticks.pyc
-${PYSITELIB}/pandas/tests/tseries/offsets/test_ticks.pyo
 ${PYSITELIB}/pandas/tests/tseries/offsets/test_week.py
 ${PYSITELIB}/pandas/tests/tseries/offsets/test_week.pyc
-${PYSITELIB}/pandas/tests/tseries/offsets/test_week.pyo
 ${PYSITELIB}/pandas/tests/tseries/offsets/test_year.py
 ${PYSITELIB}/pandas/tests/tseries/offsets/test_year.pyc
-${PYSITELIB}/pandas/tests/tseries/offsets/test_year.pyo
 ${PYSITELIB}/pandas/tests/tslibs/__init__.py
 ${PYSITELIB}/pandas/tests/tslibs/__init__.pyc
-${PYSITELIB}/pandas/tests/tslibs/__init__.pyo
 ${PYSITELIB}/pandas/tests/tslibs/test_api.py
 ${PYSITELIB}/pandas/tests/tslibs/test_api.pyc
-${PYSITELIB}/pandas/tests/tslibs/test_api.pyo
 ${PYSITELIB}/pandas/tests/tslibs/test_array_to_datetime.py
 ${PYSITELIB}/pandas/tests/tslibs/test_array_to_datetime.pyc
-${PYSITELIB}/pandas/tests/tslibs/test_array_to_datetime.pyo
 ${PYSITELIB}/pandas/tests/tslibs/test_ccalendar.py
 ${PYSITELIB}/pandas/tests/tslibs/test_ccalendar.pyc
-${PYSITELIB}/pandas/tests/tslibs/test_ccalendar.pyo
 ${PYSITELIB}/pandas/tests/tslibs/test_conversion.py
 ${PYSITELIB}/pandas/tests/tslibs/test_conversion.pyc
-${PYSITELIB}/pandas/tests/tslibs/test_conversion.pyo
 ${PYSITELIB}/pandas/tests/tslibs/test_fields.py
 ${PYSITELIB}/pandas/tests/tslibs/test_fields.pyc
-${PYSITELIB}/pandas/tests/tslibs/test_fields.pyo
 ${PYSITELIB}/pandas/tests/tslibs/test_libfrequencies.py
 ${PYSITELIB}/pandas/tests/tslibs/test_libfrequencies.pyc
-${PYSITELIB}/pandas/tests/tslibs/test_libfrequencies.pyo
 ${PYSITELIB}/pandas/tests/tslibs/test_liboffsets.py
 ${PYSITELIB}/pandas/tests/tslibs/test_liboffsets.pyc
-${PYSITELIB}/pandas/tests/tslibs/test_liboffsets.pyo
 ${PYSITELIB}/pandas/tests/tslibs/test_np_datetime.py
 ${PYSITELIB}/pandas/tests/tslibs/test_np_datetime.pyc
-${PYSITELIB}/pandas/tests/tslibs/test_np_datetime.pyo
 ${PYSITELIB}/pandas/tests/tslibs/test_parse_iso8601.py
 ${PYSITELIB}/pandas/tests/tslibs/test_parse_iso8601.pyc
-${PYSITELIB}/pandas/tests/tslibs/test_parse_iso8601.pyo
 ${PYSITELIB}/pandas/tests/tslibs/test_parsing.py
 ${PYSITELIB}/pandas/tests/tslibs/test_parsing.pyc
-${PYSITELIB}/pandas/tests/tslibs/test_parsing.pyo
 ${PYSITELIB}/pandas/tests/tslibs/test_period_asfreq.py
 ${PYSITELIB}/pandas/tests/tslibs/test_period_asfreq.pyc
-${PYSITELIB}/pandas/tests/tslibs/test_period_asfreq.pyo
 ${PYSITELIB}/pandas/tests/tslibs/test_resolution.py
 ${PYSITELIB}/pandas/tests/tslibs/test_resolution.pyc
-${PYSITELIB}/pandas/tests/tslibs/test_resolution.pyo
 ${PYSITELIB}/pandas/tests/tslibs/test_timedeltas.py
 ${PYSITELIB}/pandas/tests/tslibs/test_timedeltas.pyc
-${PYSITELIB}/pandas/tests/tslibs/test_timedeltas.pyo
 ${PYSITELIB}/pandas/tests/tslibs/test_timezones.py
 ${PYSITELIB}/pandas/tests/tslibs/test_timezones.pyc
-${PYSITELIB}/pandas/tests/tslibs/test_timezones.pyo
 ${PYSITELIB}/pandas/tests/tslibs/test_to_offset.py
 ${PYSITELIB}/pandas/tests/tslibs/test_to_offset.pyc
-${PYSITELIB}/pandas/tests/tslibs/test_to_offset.pyo
 ${PYSITELIB}/pandas/tests/tslibs/test_tzconversion.py
 ${PYSITELIB}/pandas/tests/tslibs/test_tzconversion.pyc
-${PYSITELIB}/pandas/tests/tslibs/test_tzconversion.pyo
 ${PYSITELIB}/pandas/tests/util/__init__.py
 ${PYSITELIB}/pandas/tests/util/__init__.pyc
-${PYSITELIB}/pandas/tests/util/__init__.pyo
 ${PYSITELIB}/pandas/tests/util/conftest.py
 ${PYSITELIB}/pandas/tests/util/conftest.pyc
-${PYSITELIB}/pandas/tests/util/conftest.pyo
 ${PYSITELIB}/pandas/tests/util/test_assert_almost_equal.py
 ${PYSITELIB}/pandas/tests/util/test_assert_almost_equal.pyc
-${PYSITELIB}/pandas/tests/util/test_assert_almost_equal.pyo
 ${PYSITELIB}/pandas/tests/util/test_assert_attr_equal.py
 ${PYSITELIB}/pandas/tests/util/test_assert_attr_equal.pyc
-${PYSITELIB}/pandas/tests/util/test_assert_attr_equal.pyo
 ${PYSITELIB}/pandas/tests/util/test_assert_categorical_equal.py
 ${PYSITELIB}/pandas/tests/util/test_assert_categorical_equal.pyc
-${PYSITELIB}/pandas/tests/util/test_assert_categorical_equal.pyo
 ${PYSITELIB}/pandas/tests/util/test_assert_extension_array_equal.py
 ${PYSITELIB}/pandas/tests/util/test_assert_extension_array_equal.pyc
-${PYSITELIB}/pandas/tests/util/test_assert_extension_array_equal.pyo
 ${PYSITELIB}/pandas/tests/util/test_assert_frame_equal.py
 ${PYSITELIB}/pandas/tests/util/test_assert_frame_equal.pyc
-${PYSITELIB}/pandas/tests/util/test_assert_frame_equal.pyo
 ${PYSITELIB}/pandas/tests/util/test_assert_index_equal.py
 ${PYSITELIB}/pandas/tests/util/test_assert_index_equal.pyc
-${PYSITELIB}/pandas/tests/util/test_assert_index_equal.pyo
 ${PYSITELIB}/pandas/tests/util/test_assert_interval_array_equal.py
 ${PYSITELIB}/pandas/tests/util/test_assert_interval_array_equal.pyc
-${PYSITELIB}/pandas/tests/util/test_assert_interval_array_equal.pyo
 ${PYSITELIB}/pandas/tests/util/test_assert_numpy_array_equal.py
 ${PYSITELIB}/pandas/tests/util/test_assert_numpy_array_equal.pyc
-${PYSITELIB}/pandas/tests/util/test_assert_numpy_array_equal.pyo
 ${PYSITELIB}/pandas/tests/util/test_assert_produces_warning.py
 ${PYSITELIB}/pandas/tests/util/test_assert_produces_warning.pyc
-${PYSITELIB}/pandas/tests/util/test_assert_produces_warning.pyo
 ${PYSITELIB}/pandas/tests/util/test_assert_series_equal.py
 ${PYSITELIB}/pandas/tests/util/test_assert_series_equal.pyc
-${PYSITELIB}/pandas/tests/util/test_assert_series_equal.pyo
 ${PYSITELIB}/pandas/tests/util/test_deprecate.py
 ${PYSITELIB}/pandas/tests/util/test_deprecate.pyc
-${PYSITELIB}/pandas/tests/util/test_deprecate.pyo
 ${PYSITELIB}/pandas/tests/util/test_deprecate_kwarg.py
 ${PYSITELIB}/pandas/tests/util/test_deprecate_kwarg.pyc
-${PYSITELIB}/pandas/tests/util/test_deprecate_kwarg.pyo
 ${PYSITELIB}/pandas/tests/util/test_deprecate_nonkeyword_arguments.py
 ${PYSITELIB}/pandas/tests/util/test_deprecate_nonkeyword_arguments.pyc
-${PYSITELIB}/pandas/tests/util/test_deprecate_nonkeyword_arguments.pyo
 ${PYSITELIB}/pandas/tests/util/test_doc.py
 ${PYSITELIB}/pandas/tests/util/test_doc.pyc
-${PYSITELIB}/pandas/tests/util/test_doc.pyo
 ${PYSITELIB}/pandas/tests/util/test_hashing.py
 ${PYSITELIB}/pandas/tests/util/test_hashing.pyc
-${PYSITELIB}/pandas/tests/util/test_hashing.pyo
 ${PYSITELIB}/pandas/tests/util/test_make_objects.py
 ${PYSITELIB}/pandas/tests/util/test_make_objects.pyc
-${PYSITELIB}/pandas/tests/util/test_make_objects.pyo
 ${PYSITELIB}/pandas/tests/util/test_numba.py
 ${PYSITELIB}/pandas/tests/util/test_numba.pyc
-${PYSITELIB}/pandas/tests/util/test_numba.pyo
 ${PYSITELIB}/pandas/tests/util/test_rewrite_warning.py
 ${PYSITELIB}/pandas/tests/util/test_rewrite_warning.pyc
-${PYSITELIB}/pandas/tests/util/test_rewrite_warning.pyo
 ${PYSITELIB}/pandas/tests/util/test_safe_import.py
 ${PYSITELIB}/pandas/tests/util/test_safe_import.pyc
-${PYSITELIB}/pandas/tests/util/test_safe_import.pyo
 ${PYSITELIB}/pandas/tests/util/test_shares_memory.py
 ${PYSITELIB}/pandas/tests/util/test_shares_memory.pyc
-${PYSITELIB}/pandas/tests/util/test_shares_memory.pyo
 ${PYSITELIB}/pandas/tests/util/test_show_versions.py
 ${PYSITELIB}/pandas/tests/util/test_show_versions.pyc
-${PYSITELIB}/pandas/tests/util/test_show_versions.pyo
+${PYSITELIB}/pandas/tests/util/test_str_methods.py
+${PYSITELIB}/pandas/tests/util/test_str_methods.pyc
 ${PYSITELIB}/pandas/tests/util/test_util.py
 ${PYSITELIB}/pandas/tests/util/test_util.pyc
-${PYSITELIB}/pandas/tests/util/test_util.pyo
 ${PYSITELIB}/pandas/tests/util/test_validate_args.py
 ${PYSITELIB}/pandas/tests/util/test_validate_args.pyc
-${PYSITELIB}/pandas/tests/util/test_validate_args.pyo
 ${PYSITELIB}/pandas/tests/util/test_validate_args_and_kwargs.py
 ${PYSITELIB}/pandas/tests/util/test_validate_args_and_kwargs.pyc
-${PYSITELIB}/pandas/tests/util/test_validate_args_and_kwargs.pyo
 ${PYSITELIB}/pandas/tests/util/test_validate_inclusive.py
 ${PYSITELIB}/pandas/tests/util/test_validate_inclusive.pyc
-${PYSITELIB}/pandas/tests/util/test_validate_inclusive.pyo
 ${PYSITELIB}/pandas/tests/util/test_validate_kwargs.py
 ${PYSITELIB}/pandas/tests/util/test_validate_kwargs.pyc
-${PYSITELIB}/pandas/tests/util/test_validate_kwargs.pyo
 ${PYSITELIB}/pandas/tests/window/__init__.py
 ${PYSITELIB}/pandas/tests/window/__init__.pyc
-${PYSITELIB}/pandas/tests/window/__init__.pyo
 ${PYSITELIB}/pandas/tests/window/conftest.py
 ${PYSITELIB}/pandas/tests/window/conftest.pyc
-${PYSITELIB}/pandas/tests/window/conftest.pyo
 ${PYSITELIB}/pandas/tests/window/moments/__init__.py
 ${PYSITELIB}/pandas/tests/window/moments/__init__.pyc
-${PYSITELIB}/pandas/tests/window/moments/__init__.pyo
 ${PYSITELIB}/pandas/tests/window/moments/conftest.py
 ${PYSITELIB}/pandas/tests/window/moments/conftest.pyc
-${PYSITELIB}/pandas/tests/window/moments/conftest.pyo
 ${PYSITELIB}/pandas/tests/window/moments/test_moments_consistency_ewm.py
 ${PYSITELIB}/pandas/tests/window/moments/test_moments_consistency_ewm.pyc
-${PYSITELIB}/pandas/tests/window/moments/test_moments_consistency_ewm.pyo
 ${PYSITELIB}/pandas/tests/window/moments/test_moments_consistency_expanding.py
 ${PYSITELIB}/pandas/tests/window/moments/test_moments_consistency_expanding.pyc
-${PYSITELIB}/pandas/tests/window/moments/test_moments_consistency_expanding.pyo
 ${PYSITELIB}/pandas/tests/window/moments/test_moments_consistency_rolling.py
 ${PYSITELIB}/pandas/tests/window/moments/test_moments_consistency_rolling.pyc
-${PYSITELIB}/pandas/tests/window/moments/test_moments_consistency_rolling.pyo
 ${PYSITELIB}/pandas/tests/window/test_api.py
 ${PYSITELIB}/pandas/tests/window/test_api.pyc
-${PYSITELIB}/pandas/tests/window/test_api.pyo
 ${PYSITELIB}/pandas/tests/window/test_apply.py
 ${PYSITELIB}/pandas/tests/window/test_apply.pyc
-${PYSITELIB}/pandas/tests/window/test_apply.pyo
 ${PYSITELIB}/pandas/tests/window/test_base_indexer.py
 ${PYSITELIB}/pandas/tests/window/test_base_indexer.pyc
-${PYSITELIB}/pandas/tests/window/test_base_indexer.pyo
 ${PYSITELIB}/pandas/tests/window/test_cython_aggregations.py
 ${PYSITELIB}/pandas/tests/window/test_cython_aggregations.pyc
-${PYSITELIB}/pandas/tests/window/test_cython_aggregations.pyo
 ${PYSITELIB}/pandas/tests/window/test_dtypes.py
 ${PYSITELIB}/pandas/tests/window/test_dtypes.pyc
-${PYSITELIB}/pandas/tests/window/test_dtypes.pyo
 ${PYSITELIB}/pandas/tests/window/test_ewm.py
 ${PYSITELIB}/pandas/tests/window/test_ewm.pyc
-${PYSITELIB}/pandas/tests/window/test_ewm.pyo
 ${PYSITELIB}/pandas/tests/window/test_expanding.py
 ${PYSITELIB}/pandas/tests/window/test_expanding.pyc
-${PYSITELIB}/pandas/tests/window/test_expanding.pyo
 ${PYSITELIB}/pandas/tests/window/test_groupby.py
 ${PYSITELIB}/pandas/tests/window/test_groupby.pyc
-${PYSITELIB}/pandas/tests/window/test_groupby.pyo
 ${PYSITELIB}/pandas/tests/window/test_numba.py
 ${PYSITELIB}/pandas/tests/window/test_numba.pyc
-${PYSITELIB}/pandas/tests/window/test_numba.pyo
 ${PYSITELIB}/pandas/tests/window/test_online.py
 ${PYSITELIB}/pandas/tests/window/test_online.pyc
-${PYSITELIB}/pandas/tests/window/test_online.pyo
 ${PYSITELIB}/pandas/tests/window/test_pairwise.py
 ${PYSITELIB}/pandas/tests/window/test_pairwise.pyc
-${PYSITELIB}/pandas/tests/window/test_pairwise.pyo
 ${PYSITELIB}/pandas/tests/window/test_rolling.py
 ${PYSITELIB}/pandas/tests/window/test_rolling.pyc
-${PYSITELIB}/pandas/tests/window/test_rolling.pyo
 ${PYSITELIB}/pandas/tests/window/test_rolling_functions.py
 ${PYSITELIB}/pandas/tests/window/test_rolling_functions.pyc
-${PYSITELIB}/pandas/tests/window/test_rolling_functions.pyo
 ${PYSITELIB}/pandas/tests/window/test_rolling_quantile.py
 ${PYSITELIB}/pandas/tests/window/test_rolling_quantile.pyc
-${PYSITELIB}/pandas/tests/window/test_rolling_quantile.pyo
 ${PYSITELIB}/pandas/tests/window/test_rolling_skew_kurt.py
 ${PYSITELIB}/pandas/tests/window/test_rolling_skew_kurt.pyc
-${PYSITELIB}/pandas/tests/window/test_rolling_skew_kurt.pyo
 ${PYSITELIB}/pandas/tests/window/test_timeseries_window.py
 ${PYSITELIB}/pandas/tests/window/test_timeseries_window.pyc
-${PYSITELIB}/pandas/tests/window/test_timeseries_window.pyo
 ${PYSITELIB}/pandas/tests/window/test_win_type.py
 ${PYSITELIB}/pandas/tests/window/test_win_type.pyc
-${PYSITELIB}/pandas/tests/window/test_win_type.pyo
 ${PYSITELIB}/pandas/tseries/__init__.py
 ${PYSITELIB}/pandas/tseries/__init__.pyc
-${PYSITELIB}/pandas/tseries/__init__.pyo
 ${PYSITELIB}/pandas/tseries/api.py
 ${PYSITELIB}/pandas/tseries/api.pyc
-${PYSITELIB}/pandas/tseries/api.pyo
 ${PYSITELIB}/pandas/tseries/frequencies.py
 ${PYSITELIB}/pandas/tseries/frequencies.pyc
-${PYSITELIB}/pandas/tseries/frequencies.pyo
 ${PYSITELIB}/pandas/tseries/holiday.py
 ${PYSITELIB}/pandas/tseries/holiday.pyc
-${PYSITELIB}/pandas/tseries/holiday.pyo
 ${PYSITELIB}/pandas/tseries/offsets.py
 ${PYSITELIB}/pandas/tseries/offsets.pyc
-${PYSITELIB}/pandas/tseries/offsets.pyo
 ${PYSITELIB}/pandas/util/__init__.py
 ${PYSITELIB}/pandas/util/__init__.pyc
-${PYSITELIB}/pandas/util/__init__.pyo
 ${PYSITELIB}/pandas/util/_decorators.py
 ${PYSITELIB}/pandas/util/_decorators.pyc
-${PYSITELIB}/pandas/util/_decorators.pyo
 ${PYSITELIB}/pandas/util/_doctools.py
 ${PYSITELIB}/pandas/util/_doctools.pyc
-${PYSITELIB}/pandas/util/_doctools.pyo
 ${PYSITELIB}/pandas/util/_exceptions.py
 ${PYSITELIB}/pandas/util/_exceptions.pyc
-${PYSITELIB}/pandas/util/_exceptions.pyo
 ${PYSITELIB}/pandas/util/_print_versions.py
 ${PYSITELIB}/pandas/util/_print_versions.pyc
-${PYSITELIB}/pandas/util/_print_versions.pyo
+${PYSITELIB}/pandas/util/_str_methods.py
+${PYSITELIB}/pandas/util/_str_methods.pyc
 ${PYSITELIB}/pandas/util/_test_decorators.py
 ${PYSITELIB}/pandas/util/_test_decorators.pyc
-${PYSITELIB}/pandas/util/_test_decorators.pyo
 ${PYSITELIB}/pandas/util/_tester.py
 ${PYSITELIB}/pandas/util/_tester.pyc
-${PYSITELIB}/pandas/util/_tester.pyo
 ${PYSITELIB}/pandas/util/_validators.py
 ${PYSITELIB}/pandas/util/_validators.pyc
-${PYSITELIB}/pandas/util/_validators.pyo
-${PYSITELIB}/pandas/util/testing.py
-${PYSITELIB}/pandas/util/testing.pyc
-${PYSITELIB}/pandas/util/testing.pyo
 ${PYSITELIB}/pandas/util/version/__init__.py
 ${PYSITELIB}/pandas/util/version/__init__.pyc
-${PYSITELIB}/pandas/util/version/__init__.pyo

Index: pkgsrc/math/py-pandas/distinfo
diff -u pkgsrc/math/py-pandas/distinfo:1.32 pkgsrc/math/py-pandas/distinfo:1.33
--- pkgsrc/math/py-pandas/distinfo:1.32 Sat Jan 28 19:47:54 2023
+++ pkgsrc/math/py-pandas/distinfo      Mon Aug 28 10:34:02 2023
@@ -1,6 +1,6 @@
-$NetBSD: distinfo,v 1.32 2023/01/28 19:47:54 he Exp $
+$NetBSD: distinfo,v 1.33 2023/08/28 10:34:02 adam Exp $
 
-BLAKE2s (pandas-1.5.3.tar.gz) = 70796e4f607463d03134f834f57b29b6b482faf98e64c1da58c8f847618b0081
-SHA512 (pandas-1.5.3.tar.gz) = 3c725c33dcaf78b952d2eb966ced73ff0073162a01d3cbcb722d58d8f12a82163e6e684c27284c735bdfb32dea263b960f70f6a80ff93e6b316316d40835ae35
-Size (pandas-1.5.3.tar.gz) = 5203060 bytes
-SHA1 (patch-pandas___libs_window_aggregations.pyx) = 674047b1d19d0d7ac7810863ad27e6747bbc14ca
+BLAKE2s (pandas-2.0.3.tar.gz) = 3b9fc192401779e61b98214c7158d25a61dc1b25b898c30d590712436ccc934c
+SHA512 (pandas-2.0.3.tar.gz) = bee3640521692545cb063b78c85f5ab90817c8029156f97856af4c9edfcc3e13596b48c4c1b4060c92e7e75b3b876d0734f7c1e3b2096d44c52ec09372c99d2e
+Size (pandas-2.0.3.tar.gz) = 5284455 bytes
+SHA1 (patch-pandas___libs_window_aggregations.pyx) = 65e3ec2b165de00b23550a989c5eb77c81c759f3

Index: pkgsrc/math/py-pandas/patches/patch-pandas___libs_window_aggregations.pyx
diff -u pkgsrc/math/py-pandas/patches/patch-pandas___libs_window_aggregations.pyx:1.2 pkgsrc/math/py-pandas/patches/patch-pandas___libs_window_aggregations.pyx:1.3
--- pkgsrc/math/py-pandas/patches/patch-pandas___libs_window_aggregations.pyx:1.2       Sat Jan 28 19:47:55 2023
+++ pkgsrc/math/py-pandas/patches/patch-pandas___libs_window_aggregations.pyx   Mon Aug 28 10:34:02 2023
@@ -1,4 +1,4 @@
-$NetBSD: patch-pandas___libs_window_aggregations.pyx,v 1.2 2023/01/28 19:47:55 he Exp $
+$NetBSD: patch-pandas___libs_window_aggregations.pyx,v 1.3 2023/08/28 10:34:02 adam Exp $
 
 On NetBSD, signbit and sqrt cannot be imported from "libc", because
 even though <math.h> is included, Python.h later includes
@@ -9,23 +9,21 @@ functions.  So ... re-do how we import s
 Submitted upstream:
 https://github.com/pandas-dev/pandas/pull/51049
 
---- pandas/_libs/window/aggregations.pyx.orig   2023-01-19 03:22:10.000000000 +0000
+--- pandas/_libs/window/aggregations.pyx.orig  2023-03-16 14:52:19.000000000 +0000
 +++ pandas/_libs/window/aggregations.pyx
-@@ -1,11 +1,8 @@
+@@ -1,10 +1,6 @@
  # cython: boundscheck=False, wraparound=False, cdivision=True
  
- cimport cython
 -from libc.math cimport (
 -    round,
 -    signbit,
 -    sqrt,
 -)
 +from libc.math cimport round
-+
  from libcpp.deque cimport deque
  
  from pandas._libs.algos cimport TiebreakEnumType
-@@ -20,6 +17,10 @@ from numpy cimport (
+@@ -19,6 +15,10 @@ from numpy cimport (
      ndarray,
  )
  
@@ -35,4 +33,4 @@ https://github.com/pandas-dev/pandas/pul
 +
  cnp.import_array()
  
- from pandas._libs.algos import is_monotonic
+ import cython



Home | Main Index | Thread Index | Old Index