Mon Nov 28 21:46:51 2022 UTC ()
py-pandas: updated to 1.5.2

What's new in 1.5.2 (November 21, 2022)
---------------------------------------

These are the changes in pandas 1.5.2. See :ref:`release` for a full changelog
including other versions of pandas.

Fixed regressions
~~~~~~~~~~~~~~~~~
- Fixed regression in :meth:`MultiIndex.join` for extension array dtypes (:issue:`49277`)
- Fixed regression in :meth:`Series.replace` raising ``RecursionError`` with numeric dtype and when specifying ``value=None`` (:issue:`45725`)
- Fixed regression in arithmetic operations for :class:`DataFrame` with :class:`MultiIndex` columns with different dtypes (:issue:`49769`)
- Fixed regression in :meth:`DataFrame.plot` preventing :class:`~matplotlib.colors.Colormap` instance
  from being passed using the ``colormap`` argument if Matplotlib 3.6+ is used (:issue:`49374`)
- Fixed regression in :func:`date_range` returning an invalid set of periods for ``CustomBusinessDay`` frequency and ``start`` date with timezone (:issue:`49441`)
- Fixed performance regression in groupby operations (:issue:`49676`)
- Fixed regression in :class:`Timedelta` constructor returning object of wrong type when subclassing ``Timedelta`` (:issue:`49579`)

Bug fixes
~~~~~~~~~
- Bug in the Copy-on-Write implementation losing track of views in certain chained indexing cases (:issue:`48996`)
- Fixed memory leak in :meth:`.Styler.to_excel` (:issue:`49751`)

Other
~~~~~
- Reverted ``color`` as an alias for ``c`` and ``size`` as an alias for ``s`` in function :meth:`DataFrame.plot.scatter` (:issue:`49732`)


(adam)
diff -r1.39 -r1.40 pkgsrc/math/py-pandas/Makefile
diff -r1.20 -r1.21 pkgsrc/math/py-pandas/PLIST
diff -r1.28 -r1.29 pkgsrc/math/py-pandas/distinfo

cvs diff -r1.39 -r1.40 pkgsrc/math/py-pandas/Makefile (expand / switch to unified diff)

--- pkgsrc/math/py-pandas/Makefile 2022/04/10 00:57:14 1.39
+++ pkgsrc/math/py-pandas/Makefile 2022/11/28 21:46:51 1.40
@@ -1,36 +1,31 @@ @@ -1,36 +1,31 @@
1# $NetBSD: Makefile,v 1.39 2022/04/10 00:57:14 gutteridge Exp $ 1# $NetBSD: Makefile,v 1.40 2022/11/28 21:46:51 adam Exp $
2 2
3DISTNAME= pandas-1.3.5 3DISTNAME= pandas-1.5.2
4PKGNAME= ${PYPKGPREFIX}-${DISTNAME} 4PKGNAME= ${PYPKGPREFIX}-${DISTNAME}
5PKGREVISION= 1 
6CATEGORIES= math graphics python 5CATEGORIES= math graphics python
7MASTER_SITES= ${MASTER_SITE_PYPI:=p/pandas/} 6MASTER_SITES= ${MASTER_SITE_PYPI:=p/pandas/}
8 7
9MAINTAINER= bad@NetBSD.org 8MAINTAINER= bad@NetBSD.org
10HOMEPAGE= https://pandas.pydata.org/ 9HOMEPAGE= https://pandas.pydata.org/
11COMMENT= Python Data Analysis Library 10COMMENT= Python Data Analysis Library
12LICENSE= modified-bsd 11LICENSE= modified-bsd
13 12
14DEPENDS+= ${PYPKGPREFIX}-bottleneck-[0-9]*:../../math/py-bottleneck 13DEPENDS+= ${PYPKGPREFIX}-dateutil>=2.8.1:../../time/py-dateutil
15DEPENDS+= ${PYPKGPREFIX}-dateutil>=2.7.3:../../time/py-dateutil 14DEPENDS+= ${PYPKGPREFIX}-pytz>=2020.1:../../time/py-pytz
16DEPENDS+= ${PYPKGPREFIX}-matplotlib-[0-9]*:../../graphics/py-matplotlib 
17DEPENDS+= ${PYPKGPREFIX}-numexpr-[0-9]*:../../math/py-numexpr 
18DEPENDS+= ${PYPKGPREFIX}-pytz>=2017.3:../../time/py-pytz 
19DEPENDS+= ${PYPKGPREFIX}-scipy>=0.7:../../math/py-scipy 
20DEPENDS+= ${PYPKGPREFIX}-sqlite3-[0-9]*:../../databases/py-sqlite3 15DEPENDS+= ${PYPKGPREFIX}-sqlite3-[0-9]*:../../databases/py-sqlite3
21DEPENDS+= ${PYPKGPREFIX}-tables>=2.2:../../math/py-tables 16TEST_DEPENDS+= ${PYPKGPREFIX}-hypothesis>=5.5.3:../../devel/py-hypothesis
22BUILD_DEPENDS+= ${PYPKGPREFIX}-test-runner-[0-9]*:../../devel/py-test-runner 17TEST_DEPENDS+= ${PYPKGPREFIX}-test>=6.0:../../devel/py-test
23TEST_DEPENDS+= ${PYPKGPREFIX}-hypothesis>=3.58:../../devel/py-hypothesis 18TEST_DEPENDS+= ${PYPKGPREFIX}-test-asyncio-[0-9]*:../../devel/py-test-asyncio
24TEST_DEPENDS+= ${PYPKGPREFIX}-test>=5.0.1:../../devel/py-test 19TEST_DEPENDS+= ${PYPKGPREFIX}-test-xdist>=1.31:../../devel/py-test-xdist
25TEST_DEPENDS+= ${PYPKGPREFIX}-test-xdist-[0-9]*:../../devel/py-test-xdist 
26 20
27USE_LANGUAGES= c c++ 21USE_LANGUAGES= c c++
28 22
29PYSETUPTESTTARGET= pytest 
30 
31PYTHON_VERSIONS_INCOMPATIBLE= 27 37 # py-scipy 23PYTHON_VERSIONS_INCOMPATIBLE= 27 37 # py-scipy
32 24
 25do-test:
 26 cd ${WRKSRC} && ${SETENV} ${TEST_ENV} pytest-${PYVERSSUFFIX} pandas
 27
33.include "../../lang/python/egg.mk" 28.include "../../lang/python/egg.mk"
34BUILDLINK_API_DEPENDS.py-numpy+= ${PYPKGPREFIX}-numpy>=1.16.5 29BUILDLINK_API_DEPENDS.py-numpy+= ${PYPKGPREFIX}-numpy>=1.23.2
35.include "../../math/py-numpy/buildlink3.mk" 30.include "../../math/py-numpy/buildlink3.mk"
36.include "../../mk/bsd.pkg.mk" 31.include "../../mk/bsd.pkg.mk"

cvs diff -r1.20 -r1.21 pkgsrc/math/py-pandas/PLIST (expand / switch to unified diff)

--- pkgsrc/math/py-pandas/PLIST 2021/11/21 16:31:26 1.20
+++ pkgsrc/math/py-pandas/PLIST 2022/11/28 21:46:51 1.21
@@ -1,14 +1,14 @@ @@ -1,14 +1,14 @@
1@comment $NetBSD: PLIST,v 1.20 2021/11/21 16:31:26 ryoon Exp $ 1@comment $NetBSD: PLIST,v 1.21 2022/11/28 21:46:51 adam Exp $
2${PYSITELIB}/${EGG_INFODIR}/PKG-INFO 2${PYSITELIB}/${EGG_INFODIR}/PKG-INFO
3${PYSITELIB}/${EGG_INFODIR}/SOURCES.txt 3${PYSITELIB}/${EGG_INFODIR}/SOURCES.txt
4${PYSITELIB}/${EGG_INFODIR}/dependency_links.txt 4${PYSITELIB}/${EGG_INFODIR}/dependency_links.txt
5${PYSITELIB}/${EGG_INFODIR}/entry_points.txt 5${PYSITELIB}/${EGG_INFODIR}/entry_points.txt
6${PYSITELIB}/${EGG_INFODIR}/not-zip-safe 6${PYSITELIB}/${EGG_INFODIR}/not-zip-safe
7${PYSITELIB}/${EGG_INFODIR}/requires.txt 7${PYSITELIB}/${EGG_INFODIR}/requires.txt
8${PYSITELIB}/${EGG_INFODIR}/top_level.txt 8${PYSITELIB}/${EGG_INFODIR}/top_level.txt
9${PYSITELIB}/pandas/__init__.py 9${PYSITELIB}/pandas/__init__.py
10${PYSITELIB}/pandas/__init__.pyc 10${PYSITELIB}/pandas/__init__.pyc
11${PYSITELIB}/pandas/__init__.pyo 11${PYSITELIB}/pandas/__init__.pyo
12${PYSITELIB}/pandas/_config/__init__.py 12${PYSITELIB}/pandas/_config/__init__.py
13${PYSITELIB}/pandas/_config/__init__.pyc 13${PYSITELIB}/pandas/_config/__init__.pyc
14${PYSITELIB}/pandas/_config/__init__.pyo 14${PYSITELIB}/pandas/_config/__init__.pyo
@@ -27,105 +27,90 @@ ${PYSITELIB}/pandas/_config/localization @@ -27,105 +27,90 @@ ${PYSITELIB}/pandas/_config/localization
27${PYSITELIB}/pandas/_libs/__init__.py 27${PYSITELIB}/pandas/_libs/__init__.py
28${PYSITELIB}/pandas/_libs/__init__.pyc 28${PYSITELIB}/pandas/_libs/__init__.pyc
29${PYSITELIB}/pandas/_libs/__init__.pyo 29${PYSITELIB}/pandas/_libs/__init__.pyo
30${PYSITELIB}/pandas/_libs/algos.pxd 30${PYSITELIB}/pandas/_libs/algos.pxd
31${PYSITELIB}/pandas/_libs/algos.pyi 31${PYSITELIB}/pandas/_libs/algos.pyi
32${PYSITELIB}/pandas/_libs/algos.pyx 32${PYSITELIB}/pandas/_libs/algos.pyx
33${PYSITELIB}/pandas/_libs/algos.so 33${PYSITELIB}/pandas/_libs/algos.so
34${PYSITELIB}/pandas/_libs/algos_common_helper.pxi.in 34${PYSITELIB}/pandas/_libs/algos_common_helper.pxi.in
35${PYSITELIB}/pandas/_libs/algos_take_helper.pxi.in 35${PYSITELIB}/pandas/_libs/algos_take_helper.pxi.in
36${PYSITELIB}/pandas/_libs/arrays.pxd 36${PYSITELIB}/pandas/_libs/arrays.pxd
37${PYSITELIB}/pandas/_libs/arrays.pyi 37${PYSITELIB}/pandas/_libs/arrays.pyi
38${PYSITELIB}/pandas/_libs/arrays.pyx 38${PYSITELIB}/pandas/_libs/arrays.pyx
39${PYSITELIB}/pandas/_libs/arrays.so 39${PYSITELIB}/pandas/_libs/arrays.so
 40${PYSITELIB}/pandas/_libs/dtypes.pxd
40${PYSITELIB}/pandas/_libs/groupby.pyi 41${PYSITELIB}/pandas/_libs/groupby.pyi
41${PYSITELIB}/pandas/_libs/groupby.pyx 42${PYSITELIB}/pandas/_libs/groupby.pyx
42${PYSITELIB}/pandas/_libs/groupby.so 43${PYSITELIB}/pandas/_libs/groupby.so
43${PYSITELIB}/pandas/_libs/hashing.pyi 44${PYSITELIB}/pandas/_libs/hashing.pyi
44${PYSITELIB}/pandas/_libs/hashing.pyx 45${PYSITELIB}/pandas/_libs/hashing.pyx
45${PYSITELIB}/pandas/_libs/hashing.so 46${PYSITELIB}/pandas/_libs/hashing.so
46${PYSITELIB}/pandas/_libs/hashtable.pxd 47${PYSITELIB}/pandas/_libs/hashtable.pxd
47${PYSITELIB}/pandas/_libs/hashtable.pyi 48${PYSITELIB}/pandas/_libs/hashtable.pyi
48${PYSITELIB}/pandas/_libs/hashtable.pyx 49${PYSITELIB}/pandas/_libs/hashtable.pyx
49${PYSITELIB}/pandas/_libs/hashtable.so 50${PYSITELIB}/pandas/_libs/hashtable.so
50${PYSITELIB}/pandas/_libs/hashtable_class_helper.pxi.in 51${PYSITELIB}/pandas/_libs/hashtable_class_helper.pxi.in
51${PYSITELIB}/pandas/_libs/hashtable_func_helper.pxi.in 52${PYSITELIB}/pandas/_libs/hashtable_func_helper.pxi.in
52${PYSITELIB}/pandas/_libs/index.pyi 53${PYSITELIB}/pandas/_libs/index.pyi
53${PYSITELIB}/pandas/_libs/index.pyx 54${PYSITELIB}/pandas/_libs/index.pyx
54${PYSITELIB}/pandas/_libs/index.so 55${PYSITELIB}/pandas/_libs/index.so
55${PYSITELIB}/pandas/_libs/index_class_helper.pxi.in 56${PYSITELIB}/pandas/_libs/index_class_helper.pxi.in
 57${PYSITELIB}/pandas/_libs/indexing.pyi
56${PYSITELIB}/pandas/_libs/indexing.pyx 58${PYSITELIB}/pandas/_libs/indexing.pyx
57${PYSITELIB}/pandas/_libs/indexing.so 59${PYSITELIB}/pandas/_libs/indexing.so
58${PYSITELIB}/pandas/_libs/internals.pyi 60${PYSITELIB}/pandas/_libs/internals.pyi
59${PYSITELIB}/pandas/_libs/internals.pyx 61${PYSITELIB}/pandas/_libs/internals.pyx
60${PYSITELIB}/pandas/_libs/internals.so 62${PYSITELIB}/pandas/_libs/internals.so
 63${PYSITELIB}/pandas/_libs/interval.pyi
61${PYSITELIB}/pandas/_libs/interval.pyx 64${PYSITELIB}/pandas/_libs/interval.pyx
62${PYSITELIB}/pandas/_libs/interval.so 65${PYSITELIB}/pandas/_libs/interval.so
63${PYSITELIB}/pandas/_libs/intervaltree.pxi.in 66${PYSITELIB}/pandas/_libs/intervaltree.pxi.in
64${PYSITELIB}/pandas/_libs/join.pyi 67${PYSITELIB}/pandas/_libs/join.pyi
65${PYSITELIB}/pandas/_libs/join.pyx 68${PYSITELIB}/pandas/_libs/join.pyx
66${PYSITELIB}/pandas/_libs/join.so 69${PYSITELIB}/pandas/_libs/join.so
 70${PYSITELIB}/pandas/_libs/json.pyi
67${PYSITELIB}/pandas/_libs/json.so 71${PYSITELIB}/pandas/_libs/json.so
68${PYSITELIB}/pandas/_libs/khash.pxd 72${PYSITELIB}/pandas/_libs/khash.pxd
69${PYSITELIB}/pandas/_libs/khash_for_primitive_helper.pxi.in 73${PYSITELIB}/pandas/_libs/khash_for_primitive_helper.pxi.in
70${PYSITELIB}/pandas/_libs/lib.pxd 74${PYSITELIB}/pandas/_libs/lib.pxd
71${PYSITELIB}/pandas/_libs/lib.pyi 75${PYSITELIB}/pandas/_libs/lib.pyi
72${PYSITELIB}/pandas/_libs/lib.pyx 76${PYSITELIB}/pandas/_libs/lib.pyx
73${PYSITELIB}/pandas/_libs/lib.so 77${PYSITELIB}/pandas/_libs/lib.so
74${PYSITELIB}/pandas/_libs/missing.pxd 78${PYSITELIB}/pandas/_libs/missing.pxd
 79${PYSITELIB}/pandas/_libs/missing.pyi
75${PYSITELIB}/pandas/_libs/missing.pyx 80${PYSITELIB}/pandas/_libs/missing.pyx
76${PYSITELIB}/pandas/_libs/missing.so 81${PYSITELIB}/pandas/_libs/missing.so
77${PYSITELIB}/pandas/_libs/ops.pyi 82${PYSITELIB}/pandas/_libs/ops.pyi
78${PYSITELIB}/pandas/_libs/ops.pyx 83${PYSITELIB}/pandas/_libs/ops.pyx
79${PYSITELIB}/pandas/_libs/ops.so 84${PYSITELIB}/pandas/_libs/ops.so
80${PYSITELIB}/pandas/_libs/ops_dispatch.pyi 85${PYSITELIB}/pandas/_libs/ops_dispatch.pyi
81${PYSITELIB}/pandas/_libs/ops_dispatch.pyx 86${PYSITELIB}/pandas/_libs/ops_dispatch.pyx
82${PYSITELIB}/pandas/_libs/ops_dispatch.so 87${PYSITELIB}/pandas/_libs/ops_dispatch.so
83${PYSITELIB}/pandas/_libs/parsers.pyi 88${PYSITELIB}/pandas/_libs/parsers.pyi
84${PYSITELIB}/pandas/_libs/parsers.pyx 89${PYSITELIB}/pandas/_libs/parsers.pyx
85${PYSITELIB}/pandas/_libs/parsers.so 90${PYSITELIB}/pandas/_libs/parsers.so
 91${PYSITELIB}/pandas/_libs/properties.pyi
86${PYSITELIB}/pandas/_libs/properties.pyx 92${PYSITELIB}/pandas/_libs/properties.pyx
87${PYSITELIB}/pandas/_libs/properties.so 93${PYSITELIB}/pandas/_libs/properties.so
 94${PYSITELIB}/pandas/_libs/reduction.pyi
88${PYSITELIB}/pandas/_libs/reduction.pyx 95${PYSITELIB}/pandas/_libs/reduction.pyx
89${PYSITELIB}/pandas/_libs/reduction.so 96${PYSITELIB}/pandas/_libs/reduction.so
90${PYSITELIB}/pandas/_libs/reshape.pyi 97${PYSITELIB}/pandas/_libs/reshape.pyi
91${PYSITELIB}/pandas/_libs/reshape.pyx 98${PYSITELIB}/pandas/_libs/reshape.pyx
92${PYSITELIB}/pandas/_libs/reshape.so 99${PYSITELIB}/pandas/_libs/reshape.so
 100${PYSITELIB}/pandas/_libs/sparse.pyi
93${PYSITELIB}/pandas/_libs/sparse.pyx 101${PYSITELIB}/pandas/_libs/sparse.pyx
94${PYSITELIB}/pandas/_libs/sparse.so 102${PYSITELIB}/pandas/_libs/sparse.so
95${PYSITELIB}/pandas/_libs/sparse_op_helper.pxi.in 103${PYSITELIB}/pandas/_libs/sparse_op_helper.pxi.in
96${PYSITELIB}/pandas/_libs/src/headers/cmath 
97${PYSITELIB}/pandas/_libs/src/headers/ms_inttypes.h 
98${PYSITELIB}/pandas/_libs/src/headers/ms_stdint.h 
99${PYSITELIB}/pandas/_libs/src/headers/portable.h 
100${PYSITELIB}/pandas/_libs/src/headers/stdint.h 
101${PYSITELIB}/pandas/_libs/src/inline_helper.h 
102${PYSITELIB}/pandas/_libs/src/klib/khash.h 
103${PYSITELIB}/pandas/_libs/src/klib/khash_python.h 
104${PYSITELIB}/pandas/_libs/src/parse_helper.h 
105${PYSITELIB}/pandas/_libs/src/parser/io.c 
106${PYSITELIB}/pandas/_libs/src/parser/io.h 
107${PYSITELIB}/pandas/_libs/src/parser/tokenizer.c 
108${PYSITELIB}/pandas/_libs/src/parser/tokenizer.h 
109${PYSITELIB}/pandas/_libs/src/skiplist.h 
110${PYSITELIB}/pandas/_libs/src/ujson/lib/ultrajson.h 
111${PYSITELIB}/pandas/_libs/src/ujson/lib/ultrajsondec.c 
112${PYSITELIB}/pandas/_libs/src/ujson/lib/ultrajsonenc.c 
113${PYSITELIB}/pandas/_libs/src/ujson/python/JSONtoObj.c 
114${PYSITELIB}/pandas/_libs/src/ujson/python/date_conversions.c 
115${PYSITELIB}/pandas/_libs/src/ujson/python/date_conversions.h 
116${PYSITELIB}/pandas/_libs/src/ujson/python/objToJSON.c 
117${PYSITELIB}/pandas/_libs/src/ujson/python/ujson.c 
118${PYSITELIB}/pandas/_libs/src/ujson/python/version.h 
119${PYSITELIB}/pandas/_libs/testing.pyi 104${PYSITELIB}/pandas/_libs/testing.pyi
120${PYSITELIB}/pandas/_libs/testing.pyx 105${PYSITELIB}/pandas/_libs/testing.pyx
121${PYSITELIB}/pandas/_libs/testing.so 106${PYSITELIB}/pandas/_libs/testing.so
122${PYSITELIB}/pandas/_libs/tslib.pyi 107${PYSITELIB}/pandas/_libs/tslib.pyi
123${PYSITELIB}/pandas/_libs/tslib.pyx 108${PYSITELIB}/pandas/_libs/tslib.pyx
124${PYSITELIB}/pandas/_libs/tslib.so 109${PYSITELIB}/pandas/_libs/tslib.so
125${PYSITELIB}/pandas/_libs/tslibs/__init__.py 110${PYSITELIB}/pandas/_libs/tslibs/__init__.py
126${PYSITELIB}/pandas/_libs/tslibs/__init__.pyc 111${PYSITELIB}/pandas/_libs/tslibs/__init__.pyc
127${PYSITELIB}/pandas/_libs/tslibs/__init__.pyo 112${PYSITELIB}/pandas/_libs/tslibs/__init__.pyo
128${PYSITELIB}/pandas/_libs/tslibs/base.pxd 113${PYSITELIB}/pandas/_libs/tslibs/base.pxd
129${PYSITELIB}/pandas/_libs/tslibs/base.pyx 114${PYSITELIB}/pandas/_libs/tslibs/base.pyx
130${PYSITELIB}/pandas/_libs/tslibs/base.so 115${PYSITELIB}/pandas/_libs/tslibs/base.so
131${PYSITELIB}/pandas/_libs/tslibs/ccalendar.pxd 116${PYSITELIB}/pandas/_libs/tslibs/ccalendar.pxd
@@ -138,43 +123,41 @@ ${PYSITELIB}/pandas/_libs/tslibs/convers @@ -138,43 +123,41 @@ ${PYSITELIB}/pandas/_libs/tslibs/convers
138${PYSITELIB}/pandas/_libs/tslibs/conversion.so 123${PYSITELIB}/pandas/_libs/tslibs/conversion.so
139${PYSITELIB}/pandas/_libs/tslibs/dtypes.pxd 124${PYSITELIB}/pandas/_libs/tslibs/dtypes.pxd
140${PYSITELIB}/pandas/_libs/tslibs/dtypes.pyi 125${PYSITELIB}/pandas/_libs/tslibs/dtypes.pyi
141${PYSITELIB}/pandas/_libs/tslibs/dtypes.pyx 126${PYSITELIB}/pandas/_libs/tslibs/dtypes.pyx
142${PYSITELIB}/pandas/_libs/tslibs/dtypes.so 127${PYSITELIB}/pandas/_libs/tslibs/dtypes.so
143${PYSITELIB}/pandas/_libs/tslibs/fields.pyi 128${PYSITELIB}/pandas/_libs/tslibs/fields.pyi
144${PYSITELIB}/pandas/_libs/tslibs/fields.pyx 129${PYSITELIB}/pandas/_libs/tslibs/fields.pyx
145${PYSITELIB}/pandas/_libs/tslibs/fields.so 130${PYSITELIB}/pandas/_libs/tslibs/fields.so
146${PYSITELIB}/pandas/_libs/tslibs/nattype.pxd 131${PYSITELIB}/pandas/_libs/tslibs/nattype.pxd
147${PYSITELIB}/pandas/_libs/tslibs/nattype.pyi 132${PYSITELIB}/pandas/_libs/tslibs/nattype.pyi
148${PYSITELIB}/pandas/_libs/tslibs/nattype.pyx 133${PYSITELIB}/pandas/_libs/tslibs/nattype.pyx
149${PYSITELIB}/pandas/_libs/tslibs/nattype.so 134${PYSITELIB}/pandas/_libs/tslibs/nattype.so
150${PYSITELIB}/pandas/_libs/tslibs/np_datetime.pxd 135${PYSITELIB}/pandas/_libs/tslibs/np_datetime.pxd
 136${PYSITELIB}/pandas/_libs/tslibs/np_datetime.pyi
151${PYSITELIB}/pandas/_libs/tslibs/np_datetime.pyx 137${PYSITELIB}/pandas/_libs/tslibs/np_datetime.pyx
152${PYSITELIB}/pandas/_libs/tslibs/np_datetime.so 138${PYSITELIB}/pandas/_libs/tslibs/np_datetime.so
153${PYSITELIB}/pandas/_libs/tslibs/offsets.pxd 139${PYSITELIB}/pandas/_libs/tslibs/offsets.pxd
 140${PYSITELIB}/pandas/_libs/tslibs/offsets.pyi
154${PYSITELIB}/pandas/_libs/tslibs/offsets.pyx 141${PYSITELIB}/pandas/_libs/tslibs/offsets.pyx
155${PYSITELIB}/pandas/_libs/tslibs/offsets.so 142${PYSITELIB}/pandas/_libs/tslibs/offsets.so
156${PYSITELIB}/pandas/_libs/tslibs/parsing.pxd 143${PYSITELIB}/pandas/_libs/tslibs/parsing.pxd
157${PYSITELIB}/pandas/_libs/tslibs/parsing.pyi 144${PYSITELIB}/pandas/_libs/tslibs/parsing.pyi
158${PYSITELIB}/pandas/_libs/tslibs/parsing.pyx 145${PYSITELIB}/pandas/_libs/tslibs/parsing.pyx
159${PYSITELIB}/pandas/_libs/tslibs/parsing.so 146${PYSITELIB}/pandas/_libs/tslibs/parsing.so
160${PYSITELIB}/pandas/_libs/tslibs/period.pxd 147${PYSITELIB}/pandas/_libs/tslibs/period.pxd
161${PYSITELIB}/pandas/_libs/tslibs/period.pyi 148${PYSITELIB}/pandas/_libs/tslibs/period.pyi
162${PYSITELIB}/pandas/_libs/tslibs/period.pyx 149${PYSITELIB}/pandas/_libs/tslibs/period.pyx
163${PYSITELIB}/pandas/_libs/tslibs/period.so 150${PYSITELIB}/pandas/_libs/tslibs/period.so
164${PYSITELIB}/pandas/_libs/tslibs/src/datetime/np_datetime.c 
165${PYSITELIB}/pandas/_libs/tslibs/src/datetime/np_datetime.h 
166${PYSITELIB}/pandas/_libs/tslibs/src/datetime/np_datetime_strings.c 
167${PYSITELIB}/pandas/_libs/tslibs/src/datetime/np_datetime_strings.h 
168${PYSITELIB}/pandas/_libs/tslibs/strptime.pyi 151${PYSITELIB}/pandas/_libs/tslibs/strptime.pyi
169${PYSITELIB}/pandas/_libs/tslibs/strptime.pyx 152${PYSITELIB}/pandas/_libs/tslibs/strptime.pyx
170${PYSITELIB}/pandas/_libs/tslibs/strptime.so 153${PYSITELIB}/pandas/_libs/tslibs/strptime.so
171${PYSITELIB}/pandas/_libs/tslibs/timedeltas.pxd 154${PYSITELIB}/pandas/_libs/tslibs/timedeltas.pxd
172${PYSITELIB}/pandas/_libs/tslibs/timedeltas.pyi 155${PYSITELIB}/pandas/_libs/tslibs/timedeltas.pyi
173${PYSITELIB}/pandas/_libs/tslibs/timedeltas.pyx 156${PYSITELIB}/pandas/_libs/tslibs/timedeltas.pyx
174${PYSITELIB}/pandas/_libs/tslibs/timedeltas.so 157${PYSITELIB}/pandas/_libs/tslibs/timedeltas.so
175${PYSITELIB}/pandas/_libs/tslibs/timestamps.pxd 158${PYSITELIB}/pandas/_libs/tslibs/timestamps.pxd
176${PYSITELIB}/pandas/_libs/tslibs/timestamps.pyi 159${PYSITELIB}/pandas/_libs/tslibs/timestamps.pyi
177${PYSITELIB}/pandas/_libs/tslibs/timestamps.pyx 160${PYSITELIB}/pandas/_libs/tslibs/timestamps.pyx
178${PYSITELIB}/pandas/_libs/tslibs/timestamps.so 161${PYSITELIB}/pandas/_libs/tslibs/timestamps.so
179${PYSITELIB}/pandas/_libs/tslibs/timezones.pxd 162${PYSITELIB}/pandas/_libs/tslibs/timezones.pxd
180${PYSITELIB}/pandas/_libs/tslibs/timezones.pyi 163${PYSITELIB}/pandas/_libs/tslibs/timezones.pyi
@@ -194,26 +177,29 @@ ${PYSITELIB}/pandas/_libs/window/__init_ @@ -194,26 +177,29 @@ ${PYSITELIB}/pandas/_libs/window/__init_
194${PYSITELIB}/pandas/_libs/window/__init__.pyo 177${PYSITELIB}/pandas/_libs/window/__init__.pyo
195${PYSITELIB}/pandas/_libs/window/aggregations.pyi 178${PYSITELIB}/pandas/_libs/window/aggregations.pyi
196${PYSITELIB}/pandas/_libs/window/aggregations.pyx 179${PYSITELIB}/pandas/_libs/window/aggregations.pyx
197${PYSITELIB}/pandas/_libs/window/aggregations.so 180${PYSITELIB}/pandas/_libs/window/aggregations.so
198${PYSITELIB}/pandas/_libs/window/indexers.pyi 181${PYSITELIB}/pandas/_libs/window/indexers.pyi
199${PYSITELIB}/pandas/_libs/window/indexers.pyx 182${PYSITELIB}/pandas/_libs/window/indexers.pyx
200${PYSITELIB}/pandas/_libs/window/indexers.so 183${PYSITELIB}/pandas/_libs/window/indexers.so
201${PYSITELIB}/pandas/_libs/writers.pyi 184${PYSITELIB}/pandas/_libs/writers.pyi
202${PYSITELIB}/pandas/_libs/writers.pyx 185${PYSITELIB}/pandas/_libs/writers.pyx
203${PYSITELIB}/pandas/_libs/writers.so 186${PYSITELIB}/pandas/_libs/writers.so
204${PYSITELIB}/pandas/_testing/__init__.py 187${PYSITELIB}/pandas/_testing/__init__.py
205${PYSITELIB}/pandas/_testing/__init__.pyc 188${PYSITELIB}/pandas/_testing/__init__.pyc
206${PYSITELIB}/pandas/_testing/__init__.pyo 189${PYSITELIB}/pandas/_testing/__init__.pyo
 190${PYSITELIB}/pandas/_testing/_hypothesis.py
 191${PYSITELIB}/pandas/_testing/_hypothesis.pyc
 192${PYSITELIB}/pandas/_testing/_hypothesis.pyo
207${PYSITELIB}/pandas/_testing/_io.py 193${PYSITELIB}/pandas/_testing/_io.py
208${PYSITELIB}/pandas/_testing/_io.pyc 194${PYSITELIB}/pandas/_testing/_io.pyc
209${PYSITELIB}/pandas/_testing/_io.pyo 195${PYSITELIB}/pandas/_testing/_io.pyo
210${PYSITELIB}/pandas/_testing/_random.py 196${PYSITELIB}/pandas/_testing/_random.py
211${PYSITELIB}/pandas/_testing/_random.pyc 197${PYSITELIB}/pandas/_testing/_random.pyc
212${PYSITELIB}/pandas/_testing/_random.pyo 198${PYSITELIB}/pandas/_testing/_random.pyo
213${PYSITELIB}/pandas/_testing/_warnings.py 199${PYSITELIB}/pandas/_testing/_warnings.py
214${PYSITELIB}/pandas/_testing/_warnings.pyc 200${PYSITELIB}/pandas/_testing/_warnings.pyc
215${PYSITELIB}/pandas/_testing/_warnings.pyo 201${PYSITELIB}/pandas/_testing/_warnings.pyo
216${PYSITELIB}/pandas/_testing/asserters.py 202${PYSITELIB}/pandas/_testing/asserters.py
217${PYSITELIB}/pandas/_testing/asserters.pyc 203${PYSITELIB}/pandas/_testing/asserters.pyc
218${PYSITELIB}/pandas/_testing/asserters.pyo 204${PYSITELIB}/pandas/_testing/asserters.pyo
219${PYSITELIB}/pandas/_testing/compat.py 205${PYSITELIB}/pandas/_testing/compat.py
@@ -227,26 +213,29 @@ ${PYSITELIB}/pandas/_typing.pyc @@ -227,26 +213,29 @@ ${PYSITELIB}/pandas/_typing.pyc
227${PYSITELIB}/pandas/_typing.pyo 213${PYSITELIB}/pandas/_typing.pyo
228${PYSITELIB}/pandas/_version.py 214${PYSITELIB}/pandas/_version.py
229${PYSITELIB}/pandas/_version.pyc 215${PYSITELIB}/pandas/_version.pyc
230${PYSITELIB}/pandas/_version.pyo 216${PYSITELIB}/pandas/_version.pyo
231${PYSITELIB}/pandas/api/__init__.py 217${PYSITELIB}/pandas/api/__init__.py
232${PYSITELIB}/pandas/api/__init__.pyc 218${PYSITELIB}/pandas/api/__init__.pyc
233${PYSITELIB}/pandas/api/__init__.pyo 219${PYSITELIB}/pandas/api/__init__.pyo
234${PYSITELIB}/pandas/api/extensions/__init__.py 220${PYSITELIB}/pandas/api/extensions/__init__.py
235${PYSITELIB}/pandas/api/extensions/__init__.pyc 221${PYSITELIB}/pandas/api/extensions/__init__.pyc
236${PYSITELIB}/pandas/api/extensions/__init__.pyo 222${PYSITELIB}/pandas/api/extensions/__init__.pyo
237${PYSITELIB}/pandas/api/indexers/__init__.py 223${PYSITELIB}/pandas/api/indexers/__init__.py
238${PYSITELIB}/pandas/api/indexers/__init__.pyc 224${PYSITELIB}/pandas/api/indexers/__init__.pyc
239${PYSITELIB}/pandas/api/indexers/__init__.pyo 225${PYSITELIB}/pandas/api/indexers/__init__.pyo
 226${PYSITELIB}/pandas/api/interchange/__init__.py
 227${PYSITELIB}/pandas/api/interchange/__init__.pyc
 228${PYSITELIB}/pandas/api/interchange/__init__.pyo
240${PYSITELIB}/pandas/api/types/__init__.py 229${PYSITELIB}/pandas/api/types/__init__.py
241${PYSITELIB}/pandas/api/types/__init__.pyc 230${PYSITELIB}/pandas/api/types/__init__.pyc
242${PYSITELIB}/pandas/api/types/__init__.pyo 231${PYSITELIB}/pandas/api/types/__init__.pyo
243${PYSITELIB}/pandas/arrays/__init__.py 232${PYSITELIB}/pandas/arrays/__init__.py
244${PYSITELIB}/pandas/arrays/__init__.pyc 233${PYSITELIB}/pandas/arrays/__init__.pyc
245${PYSITELIB}/pandas/arrays/__init__.pyo 234${PYSITELIB}/pandas/arrays/__init__.pyo
246${PYSITELIB}/pandas/compat/__init__.py 235${PYSITELIB}/pandas/compat/__init__.py
247${PYSITELIB}/pandas/compat/__init__.pyc 236${PYSITELIB}/pandas/compat/__init__.pyc
248${PYSITELIB}/pandas/compat/__init__.pyo 237${PYSITELIB}/pandas/compat/__init__.pyo
249${PYSITELIB}/pandas/compat/_optional.py 238${PYSITELIB}/pandas/compat/_optional.py
250${PYSITELIB}/pandas/compat/_optional.pyc 239${PYSITELIB}/pandas/compat/_optional.pyc
251${PYSITELIB}/pandas/compat/_optional.pyo 240${PYSITELIB}/pandas/compat/_optional.pyo
252${PYSITELIB}/pandas/compat/chainmap.py 241${PYSITELIB}/pandas/compat/chainmap.py
@@ -260,32 +249,53 @@ ${PYSITELIB}/pandas/compat/numpy/functio @@ -260,32 +249,53 @@ ${PYSITELIB}/pandas/compat/numpy/functio
260${PYSITELIB}/pandas/compat/numpy/function.pyo 249${PYSITELIB}/pandas/compat/numpy/function.pyo
261${PYSITELIB}/pandas/compat/pickle_compat.py 250${PYSITELIB}/pandas/compat/pickle_compat.py
262${PYSITELIB}/pandas/compat/pickle_compat.pyc 251${PYSITELIB}/pandas/compat/pickle_compat.pyc
263${PYSITELIB}/pandas/compat/pickle_compat.pyo 252${PYSITELIB}/pandas/compat/pickle_compat.pyo
264${PYSITELIB}/pandas/compat/pyarrow.py 253${PYSITELIB}/pandas/compat/pyarrow.py
265${PYSITELIB}/pandas/compat/pyarrow.pyc 254${PYSITELIB}/pandas/compat/pyarrow.pyc
266${PYSITELIB}/pandas/compat/pyarrow.pyo 255${PYSITELIB}/pandas/compat/pyarrow.pyo
267${PYSITELIB}/pandas/conftest.py 256${PYSITELIB}/pandas/conftest.py
268${PYSITELIB}/pandas/conftest.pyc 257${PYSITELIB}/pandas/conftest.pyc
269${PYSITELIB}/pandas/conftest.pyo 258${PYSITELIB}/pandas/conftest.pyo
270${PYSITELIB}/pandas/core/__init__.py 259${PYSITELIB}/pandas/core/__init__.py
271${PYSITELIB}/pandas/core/__init__.pyc 260${PYSITELIB}/pandas/core/__init__.pyc
272${PYSITELIB}/pandas/core/__init__.pyo 261${PYSITELIB}/pandas/core/__init__.pyo
 262${PYSITELIB}/pandas/core/_numba/__init__.py
 263${PYSITELIB}/pandas/core/_numba/__init__.pyc
 264${PYSITELIB}/pandas/core/_numba/__init__.pyo
 265${PYSITELIB}/pandas/core/_numba/executor.py
 266${PYSITELIB}/pandas/core/_numba/executor.pyc
 267${PYSITELIB}/pandas/core/_numba/executor.pyo
 268${PYSITELIB}/pandas/core/_numba/kernels/__init__.py
 269${PYSITELIB}/pandas/core/_numba/kernels/__init__.pyc
 270${PYSITELIB}/pandas/core/_numba/kernels/__init__.pyo
 271${PYSITELIB}/pandas/core/_numba/kernels/mean_.py
 272${PYSITELIB}/pandas/core/_numba/kernels/mean_.pyc
 273${PYSITELIB}/pandas/core/_numba/kernels/mean_.pyo
 274${PYSITELIB}/pandas/core/_numba/kernels/min_max_.py
 275${PYSITELIB}/pandas/core/_numba/kernels/min_max_.pyc
 276${PYSITELIB}/pandas/core/_numba/kernels/min_max_.pyo
 277${PYSITELIB}/pandas/core/_numba/kernels/shared.py
 278${PYSITELIB}/pandas/core/_numba/kernels/shared.pyc
 279${PYSITELIB}/pandas/core/_numba/kernels/shared.pyo
 280${PYSITELIB}/pandas/core/_numba/kernels/sum_.py
 281${PYSITELIB}/pandas/core/_numba/kernels/sum_.pyc
 282${PYSITELIB}/pandas/core/_numba/kernels/sum_.pyo
 283${PYSITELIB}/pandas/core/_numba/kernels/var_.py
 284${PYSITELIB}/pandas/core/_numba/kernels/var_.pyc
 285${PYSITELIB}/pandas/core/_numba/kernels/var_.pyo
273${PYSITELIB}/pandas/core/accessor.py 286${PYSITELIB}/pandas/core/accessor.py
274${PYSITELIB}/pandas/core/accessor.pyc 287${PYSITELIB}/pandas/core/accessor.pyc
275${PYSITELIB}/pandas/core/accessor.pyo 288${PYSITELIB}/pandas/core/accessor.pyo
276${PYSITELIB}/pandas/core/aggregation.py 
277${PYSITELIB}/pandas/core/aggregation.pyc 
278${PYSITELIB}/pandas/core/aggregation.pyo 
279${PYSITELIB}/pandas/core/algorithms.py 289${PYSITELIB}/pandas/core/algorithms.py
280${PYSITELIB}/pandas/core/algorithms.pyc 290${PYSITELIB}/pandas/core/algorithms.pyc
281${PYSITELIB}/pandas/core/algorithms.pyo 291${PYSITELIB}/pandas/core/algorithms.pyo
282${PYSITELIB}/pandas/core/api.py 292${PYSITELIB}/pandas/core/api.py
283${PYSITELIB}/pandas/core/api.pyc 293${PYSITELIB}/pandas/core/api.pyc
284${PYSITELIB}/pandas/core/api.pyo 294${PYSITELIB}/pandas/core/api.pyo
285${PYSITELIB}/pandas/core/apply.py 295${PYSITELIB}/pandas/core/apply.py
286${PYSITELIB}/pandas/core/apply.pyc 296${PYSITELIB}/pandas/core/apply.pyc
287${PYSITELIB}/pandas/core/apply.pyo 297${PYSITELIB}/pandas/core/apply.pyo
288${PYSITELIB}/pandas/core/array_algos/__init__.py 298${PYSITELIB}/pandas/core/array_algos/__init__.py
289${PYSITELIB}/pandas/core/array_algos/__init__.pyc 299${PYSITELIB}/pandas/core/array_algos/__init__.pyc
290${PYSITELIB}/pandas/core/array_algos/__init__.pyo 300${PYSITELIB}/pandas/core/array_algos/__init__.pyo
291${PYSITELIB}/pandas/core/array_algos/masked_reductions.py 301${PYSITELIB}/pandas/core/array_algos/masked_reductions.py
@@ -302,35 +312,47 @@ ${PYSITELIB}/pandas/core/array_algos/rep @@ -302,35 +312,47 @@ ${PYSITELIB}/pandas/core/array_algos/rep
302${PYSITELIB}/pandas/core/array_algos/replace.pyo 312${PYSITELIB}/pandas/core/array_algos/replace.pyo
303${PYSITELIB}/pandas/core/array_algos/take.py 313${PYSITELIB}/pandas/core/array_algos/take.py
304${PYSITELIB}/pandas/core/array_algos/take.pyc 314${PYSITELIB}/pandas/core/array_algos/take.pyc
305${PYSITELIB}/pandas/core/array_algos/take.pyo 315${PYSITELIB}/pandas/core/array_algos/take.pyo
306${PYSITELIB}/pandas/core/array_algos/transforms.py 316${PYSITELIB}/pandas/core/array_algos/transforms.py
307${PYSITELIB}/pandas/core/array_algos/transforms.pyc 317${PYSITELIB}/pandas/core/array_algos/transforms.pyc
308${PYSITELIB}/pandas/core/array_algos/transforms.pyo 318${PYSITELIB}/pandas/core/array_algos/transforms.pyo
309${PYSITELIB}/pandas/core/arraylike.py 319${PYSITELIB}/pandas/core/arraylike.py
310${PYSITELIB}/pandas/core/arraylike.pyc 320${PYSITELIB}/pandas/core/arraylike.pyc
311${PYSITELIB}/pandas/core/arraylike.pyo 321${PYSITELIB}/pandas/core/arraylike.pyo
312${PYSITELIB}/pandas/core/arrays/__init__.py 322${PYSITELIB}/pandas/core/arrays/__init__.py
313${PYSITELIB}/pandas/core/arrays/__init__.pyc 323${PYSITELIB}/pandas/core/arrays/__init__.pyc
314${PYSITELIB}/pandas/core/arrays/__init__.pyo 324${PYSITELIB}/pandas/core/arrays/__init__.pyo
315${PYSITELIB}/pandas/core/arrays/_arrow_utils.py 
316${PYSITELIB}/pandas/core/arrays/_arrow_utils.pyc 
317${PYSITELIB}/pandas/core/arrays/_arrow_utils.pyo 
318${PYSITELIB}/pandas/core/arrays/_mixins.py 325${PYSITELIB}/pandas/core/arrays/_mixins.py
319${PYSITELIB}/pandas/core/arrays/_mixins.pyc 326${PYSITELIB}/pandas/core/arrays/_mixins.pyc
320${PYSITELIB}/pandas/core/arrays/_mixins.pyo 327${PYSITELIB}/pandas/core/arrays/_mixins.pyo
321${PYSITELIB}/pandas/core/arrays/_ranges.py 328${PYSITELIB}/pandas/core/arrays/_ranges.py
322${PYSITELIB}/pandas/core/arrays/_ranges.pyc 329${PYSITELIB}/pandas/core/arrays/_ranges.pyc
323${PYSITELIB}/pandas/core/arrays/_ranges.pyo 330${PYSITELIB}/pandas/core/arrays/_ranges.pyo
 331${PYSITELIB}/pandas/core/arrays/arrow/__init__.py
 332${PYSITELIB}/pandas/core/arrays/arrow/__init__.pyc
 333${PYSITELIB}/pandas/core/arrays/arrow/__init__.pyo
 334${PYSITELIB}/pandas/core/arrays/arrow/_arrow_utils.py
 335${PYSITELIB}/pandas/core/arrays/arrow/_arrow_utils.pyc
 336${PYSITELIB}/pandas/core/arrays/arrow/_arrow_utils.pyo
 337${PYSITELIB}/pandas/core/arrays/arrow/array.py
 338${PYSITELIB}/pandas/core/arrays/arrow/array.pyc
 339${PYSITELIB}/pandas/core/arrays/arrow/array.pyo
 340${PYSITELIB}/pandas/core/arrays/arrow/dtype.py
 341${PYSITELIB}/pandas/core/arrays/arrow/dtype.pyc
 342${PYSITELIB}/pandas/core/arrays/arrow/dtype.pyo
 343${PYSITELIB}/pandas/core/arrays/arrow/extension_types.py
 344${PYSITELIB}/pandas/core/arrays/arrow/extension_types.pyc
 345${PYSITELIB}/pandas/core/arrays/arrow/extension_types.pyo
324${PYSITELIB}/pandas/core/arrays/base.py 346${PYSITELIB}/pandas/core/arrays/base.py
325${PYSITELIB}/pandas/core/arrays/base.pyc 347${PYSITELIB}/pandas/core/arrays/base.pyc
326${PYSITELIB}/pandas/core/arrays/base.pyo 348${PYSITELIB}/pandas/core/arrays/base.pyo
327${PYSITELIB}/pandas/core/arrays/boolean.py 349${PYSITELIB}/pandas/core/arrays/boolean.py
328${PYSITELIB}/pandas/core/arrays/boolean.pyc 350${PYSITELIB}/pandas/core/arrays/boolean.pyc
329${PYSITELIB}/pandas/core/arrays/boolean.pyo 351${PYSITELIB}/pandas/core/arrays/boolean.pyo
330${PYSITELIB}/pandas/core/arrays/categorical.py 352${PYSITELIB}/pandas/core/arrays/categorical.py
331${PYSITELIB}/pandas/core/arrays/categorical.pyc 353${PYSITELIB}/pandas/core/arrays/categorical.pyc
332${PYSITELIB}/pandas/core/arrays/categorical.pyo 354${PYSITELIB}/pandas/core/arrays/categorical.pyo
333${PYSITELIB}/pandas/core/arrays/datetimelike.py 355${PYSITELIB}/pandas/core/arrays/datetimelike.py
334${PYSITELIB}/pandas/core/arrays/datetimelike.pyc 356${PYSITELIB}/pandas/core/arrays/datetimelike.pyc
335${PYSITELIB}/pandas/core/arrays/datetimelike.pyo 357${PYSITELIB}/pandas/core/arrays/datetimelike.pyo
336${PYSITELIB}/pandas/core/arrays/datetimes.py 358${PYSITELIB}/pandas/core/arrays/datetimes.py
@@ -431,26 +453,29 @@ ${PYSITELIB}/pandas/core/config_init.pyc @@ -431,26 +453,29 @@ ${PYSITELIB}/pandas/core/config_init.pyc
431${PYSITELIB}/pandas/core/config_init.pyo 453${PYSITELIB}/pandas/core/config_init.pyo
432${PYSITELIB}/pandas/core/construction.py 454${PYSITELIB}/pandas/core/construction.py
433${PYSITELIB}/pandas/core/construction.pyc 455${PYSITELIB}/pandas/core/construction.pyc
434${PYSITELIB}/pandas/core/construction.pyo 456${PYSITELIB}/pandas/core/construction.pyo
435${PYSITELIB}/pandas/core/describe.py 457${PYSITELIB}/pandas/core/describe.py
436${PYSITELIB}/pandas/core/describe.pyc 458${PYSITELIB}/pandas/core/describe.pyc
437${PYSITELIB}/pandas/core/describe.pyo 459${PYSITELIB}/pandas/core/describe.pyo
438${PYSITELIB}/pandas/core/dtypes/__init__.py 460${PYSITELIB}/pandas/core/dtypes/__init__.py
439${PYSITELIB}/pandas/core/dtypes/__init__.pyc 461${PYSITELIB}/pandas/core/dtypes/__init__.pyc
440${PYSITELIB}/pandas/core/dtypes/__init__.pyo 462${PYSITELIB}/pandas/core/dtypes/__init__.pyo
441${PYSITELIB}/pandas/core/dtypes/api.py 463${PYSITELIB}/pandas/core/dtypes/api.py
442${PYSITELIB}/pandas/core/dtypes/api.pyc 464${PYSITELIB}/pandas/core/dtypes/api.pyc
443${PYSITELIB}/pandas/core/dtypes/api.pyo 465${PYSITELIB}/pandas/core/dtypes/api.pyo
 466${PYSITELIB}/pandas/core/dtypes/astype.py
 467${PYSITELIB}/pandas/core/dtypes/astype.pyc
 468${PYSITELIB}/pandas/core/dtypes/astype.pyo
444${PYSITELIB}/pandas/core/dtypes/base.py 469${PYSITELIB}/pandas/core/dtypes/base.py
445${PYSITELIB}/pandas/core/dtypes/base.pyc 470${PYSITELIB}/pandas/core/dtypes/base.pyc
446${PYSITELIB}/pandas/core/dtypes/base.pyo 471${PYSITELIB}/pandas/core/dtypes/base.pyo
447${PYSITELIB}/pandas/core/dtypes/cast.py 472${PYSITELIB}/pandas/core/dtypes/cast.py
448${PYSITELIB}/pandas/core/dtypes/cast.pyc 473${PYSITELIB}/pandas/core/dtypes/cast.pyc
449${PYSITELIB}/pandas/core/dtypes/cast.pyo 474${PYSITELIB}/pandas/core/dtypes/cast.pyo
450${PYSITELIB}/pandas/core/dtypes/common.py 475${PYSITELIB}/pandas/core/dtypes/common.py
451${PYSITELIB}/pandas/core/dtypes/common.pyc 476${PYSITELIB}/pandas/core/dtypes/common.pyc
452${PYSITELIB}/pandas/core/dtypes/common.pyo 477${PYSITELIB}/pandas/core/dtypes/common.pyo
453${PYSITELIB}/pandas/core/dtypes/concat.py 478${PYSITELIB}/pandas/core/dtypes/concat.py
454${PYSITELIB}/pandas/core/dtypes/concat.pyc 479${PYSITELIB}/pandas/core/dtypes/concat.pyc
455${PYSITELIB}/pandas/core/dtypes/concat.pyo 480${PYSITELIB}/pandas/core/dtypes/concat.pyo
456${PYSITELIB}/pandas/core/dtypes/dtypes.py 481${PYSITELIB}/pandas/core/dtypes/dtypes.py
@@ -482,38 +507,47 @@ ${PYSITELIB}/pandas/core/groupby/base.py @@ -482,38 +507,47 @@ ${PYSITELIB}/pandas/core/groupby/base.py
482${PYSITELIB}/pandas/core/groupby/base.pyo 507${PYSITELIB}/pandas/core/groupby/base.pyo
483${PYSITELIB}/pandas/core/groupby/categorical.py 508${PYSITELIB}/pandas/core/groupby/categorical.py
484${PYSITELIB}/pandas/core/groupby/categorical.pyc 509${PYSITELIB}/pandas/core/groupby/categorical.pyc
485${PYSITELIB}/pandas/core/groupby/categorical.pyo 510${PYSITELIB}/pandas/core/groupby/categorical.pyo
486${PYSITELIB}/pandas/core/groupby/generic.py 511${PYSITELIB}/pandas/core/groupby/generic.py
487${PYSITELIB}/pandas/core/groupby/generic.pyc 512${PYSITELIB}/pandas/core/groupby/generic.pyc
488${PYSITELIB}/pandas/core/groupby/generic.pyo 513${PYSITELIB}/pandas/core/groupby/generic.pyo
489${PYSITELIB}/pandas/core/groupby/groupby.py 514${PYSITELIB}/pandas/core/groupby/groupby.py
490${PYSITELIB}/pandas/core/groupby/groupby.pyc 515${PYSITELIB}/pandas/core/groupby/groupby.pyc
491${PYSITELIB}/pandas/core/groupby/groupby.pyo 516${PYSITELIB}/pandas/core/groupby/groupby.pyo
492${PYSITELIB}/pandas/core/groupby/grouper.py 517${PYSITELIB}/pandas/core/groupby/grouper.py
493${PYSITELIB}/pandas/core/groupby/grouper.pyc 518${PYSITELIB}/pandas/core/groupby/grouper.pyc
494${PYSITELIB}/pandas/core/groupby/grouper.pyo 519${PYSITELIB}/pandas/core/groupby/grouper.pyo
 520${PYSITELIB}/pandas/core/groupby/indexing.py
 521${PYSITELIB}/pandas/core/groupby/indexing.pyc
 522${PYSITELIB}/pandas/core/groupby/indexing.pyo
495${PYSITELIB}/pandas/core/groupby/numba_.py 523${PYSITELIB}/pandas/core/groupby/numba_.py
496${PYSITELIB}/pandas/core/groupby/numba_.pyc 524${PYSITELIB}/pandas/core/groupby/numba_.pyc
497${PYSITELIB}/pandas/core/groupby/numba_.pyo 525${PYSITELIB}/pandas/core/groupby/numba_.pyo
498${PYSITELIB}/pandas/core/groupby/ops.py 526${PYSITELIB}/pandas/core/groupby/ops.py
499${PYSITELIB}/pandas/core/groupby/ops.pyc 527${PYSITELIB}/pandas/core/groupby/ops.pyc
500${PYSITELIB}/pandas/core/groupby/ops.pyo 528${PYSITELIB}/pandas/core/groupby/ops.pyo
501${PYSITELIB}/pandas/core/index.py 529${PYSITELIB}/pandas/core/index.py
502${PYSITELIB}/pandas/core/index.pyc 530${PYSITELIB}/pandas/core/index.pyc
503${PYSITELIB}/pandas/core/index.pyo 531${PYSITELIB}/pandas/core/index.pyo
504${PYSITELIB}/pandas/core/indexers.py 532${PYSITELIB}/pandas/core/indexers/__init__.py
505${PYSITELIB}/pandas/core/indexers.pyc 533${PYSITELIB}/pandas/core/indexers/__init__.pyc
506${PYSITELIB}/pandas/core/indexers.pyo 534${PYSITELIB}/pandas/core/indexers/__init__.pyo
 535${PYSITELIB}/pandas/core/indexers/objects.py
 536${PYSITELIB}/pandas/core/indexers/objects.pyc
 537${PYSITELIB}/pandas/core/indexers/objects.pyo
 538${PYSITELIB}/pandas/core/indexers/utils.py
 539${PYSITELIB}/pandas/core/indexers/utils.pyc
 540${PYSITELIB}/pandas/core/indexers/utils.pyo
507${PYSITELIB}/pandas/core/indexes/__init__.py 541${PYSITELIB}/pandas/core/indexes/__init__.py
508${PYSITELIB}/pandas/core/indexes/__init__.pyc 542${PYSITELIB}/pandas/core/indexes/__init__.pyc
509${PYSITELIB}/pandas/core/indexes/__init__.pyo 543${PYSITELIB}/pandas/core/indexes/__init__.pyo
510${PYSITELIB}/pandas/core/indexes/accessors.py 544${PYSITELIB}/pandas/core/indexes/accessors.py
511${PYSITELIB}/pandas/core/indexes/accessors.pyc 545${PYSITELIB}/pandas/core/indexes/accessors.pyc
512${PYSITELIB}/pandas/core/indexes/accessors.pyo 546${PYSITELIB}/pandas/core/indexes/accessors.pyo
513${PYSITELIB}/pandas/core/indexes/api.py 547${PYSITELIB}/pandas/core/indexes/api.py
514${PYSITELIB}/pandas/core/indexes/api.pyc 548${PYSITELIB}/pandas/core/indexes/api.pyc
515${PYSITELIB}/pandas/core/indexes/api.pyo 549${PYSITELIB}/pandas/core/indexes/api.pyo
516${PYSITELIB}/pandas/core/indexes/base.py 550${PYSITELIB}/pandas/core/indexes/base.py
517${PYSITELIB}/pandas/core/indexes/base.pyc 551${PYSITELIB}/pandas/core/indexes/base.pyc
518${PYSITELIB}/pandas/core/indexes/base.pyo 552${PYSITELIB}/pandas/core/indexes/base.pyo
519${PYSITELIB}/pandas/core/indexes/category.py 553${PYSITELIB}/pandas/core/indexes/category.py
@@ -542,26 +576,47 @@ ${PYSITELIB}/pandas/core/indexes/numeric @@ -542,26 +576,47 @@ ${PYSITELIB}/pandas/core/indexes/numeric
542${PYSITELIB}/pandas/core/indexes/numeric.pyo 576${PYSITELIB}/pandas/core/indexes/numeric.pyo
543${PYSITELIB}/pandas/core/indexes/period.py 577${PYSITELIB}/pandas/core/indexes/period.py
544${PYSITELIB}/pandas/core/indexes/period.pyc 578${PYSITELIB}/pandas/core/indexes/period.pyc
545${PYSITELIB}/pandas/core/indexes/period.pyo 579${PYSITELIB}/pandas/core/indexes/period.pyo
546${PYSITELIB}/pandas/core/indexes/range.py 580${PYSITELIB}/pandas/core/indexes/range.py
547${PYSITELIB}/pandas/core/indexes/range.pyc 581${PYSITELIB}/pandas/core/indexes/range.pyc
548${PYSITELIB}/pandas/core/indexes/range.pyo 582${PYSITELIB}/pandas/core/indexes/range.pyo
549${PYSITELIB}/pandas/core/indexes/timedeltas.py 583${PYSITELIB}/pandas/core/indexes/timedeltas.py
550${PYSITELIB}/pandas/core/indexes/timedeltas.pyc 584${PYSITELIB}/pandas/core/indexes/timedeltas.pyc
551${PYSITELIB}/pandas/core/indexes/timedeltas.pyo 585${PYSITELIB}/pandas/core/indexes/timedeltas.pyo
552${PYSITELIB}/pandas/core/indexing.py 586${PYSITELIB}/pandas/core/indexing.py
553${PYSITELIB}/pandas/core/indexing.pyc 587${PYSITELIB}/pandas/core/indexing.pyc
554${PYSITELIB}/pandas/core/indexing.pyo 588${PYSITELIB}/pandas/core/indexing.pyo
 589${PYSITELIB}/pandas/core/interchange/__init__.py
 590${PYSITELIB}/pandas/core/interchange/__init__.pyc
 591${PYSITELIB}/pandas/core/interchange/__init__.pyo
 592${PYSITELIB}/pandas/core/interchange/buffer.py
 593${PYSITELIB}/pandas/core/interchange/buffer.pyc
 594${PYSITELIB}/pandas/core/interchange/buffer.pyo
 595${PYSITELIB}/pandas/core/interchange/column.py
 596${PYSITELIB}/pandas/core/interchange/column.pyc
 597${PYSITELIB}/pandas/core/interchange/column.pyo
 598${PYSITELIB}/pandas/core/interchange/dataframe.py
 599${PYSITELIB}/pandas/core/interchange/dataframe.pyc
 600${PYSITELIB}/pandas/core/interchange/dataframe.pyo
 601${PYSITELIB}/pandas/core/interchange/dataframe_protocol.py
 602${PYSITELIB}/pandas/core/interchange/dataframe_protocol.pyc
 603${PYSITELIB}/pandas/core/interchange/dataframe_protocol.pyo
 604${PYSITELIB}/pandas/core/interchange/from_dataframe.py
 605${PYSITELIB}/pandas/core/interchange/from_dataframe.pyc
 606${PYSITELIB}/pandas/core/interchange/from_dataframe.pyo
 607${PYSITELIB}/pandas/core/interchange/utils.py
 608${PYSITELIB}/pandas/core/interchange/utils.pyc
 609${PYSITELIB}/pandas/core/interchange/utils.pyo
555${PYSITELIB}/pandas/core/internals/__init__.py 610${PYSITELIB}/pandas/core/internals/__init__.py
556${PYSITELIB}/pandas/core/internals/__init__.pyc 611${PYSITELIB}/pandas/core/internals/__init__.pyc
557${PYSITELIB}/pandas/core/internals/__init__.pyo 612${PYSITELIB}/pandas/core/internals/__init__.pyo
558${PYSITELIB}/pandas/core/internals/api.py 613${PYSITELIB}/pandas/core/internals/api.py
559${PYSITELIB}/pandas/core/internals/api.pyc 614${PYSITELIB}/pandas/core/internals/api.pyc
560${PYSITELIB}/pandas/core/internals/api.pyo 615${PYSITELIB}/pandas/core/internals/api.pyo
561${PYSITELIB}/pandas/core/internals/array_manager.py 616${PYSITELIB}/pandas/core/internals/array_manager.py
562${PYSITELIB}/pandas/core/internals/array_manager.pyc 617${PYSITELIB}/pandas/core/internals/array_manager.pyc
563${PYSITELIB}/pandas/core/internals/array_manager.pyo 618${PYSITELIB}/pandas/core/internals/array_manager.pyo
564${PYSITELIB}/pandas/core/internals/base.py 619${PYSITELIB}/pandas/core/internals/base.py
565${PYSITELIB}/pandas/core/internals/base.pyc 620${PYSITELIB}/pandas/core/internals/base.pyc
566${PYSITELIB}/pandas/core/internals/base.pyo 621${PYSITELIB}/pandas/core/internals/base.pyo
567${PYSITELIB}/pandas/core/internals/blocks.py 622${PYSITELIB}/pandas/core/internals/blocks.py
@@ -614,47 +669,53 @@ ${PYSITELIB}/pandas/core/ops/missing.pyc @@ -614,47 +669,53 @@ ${PYSITELIB}/pandas/core/ops/missing.pyc
614${PYSITELIB}/pandas/core/ops/missing.pyo 669${PYSITELIB}/pandas/core/ops/missing.pyo
615${PYSITELIB}/pandas/core/resample.py 670${PYSITELIB}/pandas/core/resample.py
616${PYSITELIB}/pandas/core/resample.pyc 671${PYSITELIB}/pandas/core/resample.pyc
617${PYSITELIB}/pandas/core/resample.pyo 672${PYSITELIB}/pandas/core/resample.pyo
618${PYSITELIB}/pandas/core/reshape/__init__.py 673${PYSITELIB}/pandas/core/reshape/__init__.py
619${PYSITELIB}/pandas/core/reshape/__init__.pyc 674${PYSITELIB}/pandas/core/reshape/__init__.pyc
620${PYSITELIB}/pandas/core/reshape/__init__.pyo 675${PYSITELIB}/pandas/core/reshape/__init__.pyo
621${PYSITELIB}/pandas/core/reshape/api.py 676${PYSITELIB}/pandas/core/reshape/api.py
622${PYSITELIB}/pandas/core/reshape/api.pyc 677${PYSITELIB}/pandas/core/reshape/api.pyc
623${PYSITELIB}/pandas/core/reshape/api.pyo 678${PYSITELIB}/pandas/core/reshape/api.pyo
624${PYSITELIB}/pandas/core/reshape/concat.py 679${PYSITELIB}/pandas/core/reshape/concat.py
625${PYSITELIB}/pandas/core/reshape/concat.pyc 680${PYSITELIB}/pandas/core/reshape/concat.pyc
626${PYSITELIB}/pandas/core/reshape/concat.pyo 681${PYSITELIB}/pandas/core/reshape/concat.pyo
 682${PYSITELIB}/pandas/core/reshape/encoding.py
 683${PYSITELIB}/pandas/core/reshape/encoding.pyc
 684${PYSITELIB}/pandas/core/reshape/encoding.pyo
627${PYSITELIB}/pandas/core/reshape/melt.py 685${PYSITELIB}/pandas/core/reshape/melt.py
628${PYSITELIB}/pandas/core/reshape/melt.pyc 686${PYSITELIB}/pandas/core/reshape/melt.pyc
629${PYSITELIB}/pandas/core/reshape/melt.pyo 687${PYSITELIB}/pandas/core/reshape/melt.pyo
630${PYSITELIB}/pandas/core/reshape/merge.py 688${PYSITELIB}/pandas/core/reshape/merge.py
631${PYSITELIB}/pandas/core/reshape/merge.pyc 689${PYSITELIB}/pandas/core/reshape/merge.pyc
632${PYSITELIB}/pandas/core/reshape/merge.pyo 690${PYSITELIB}/pandas/core/reshape/merge.pyo
633${PYSITELIB}/pandas/core/reshape/pivot.py 691${PYSITELIB}/pandas/core/reshape/pivot.py
634${PYSITELIB}/pandas/core/reshape/pivot.pyc 692${PYSITELIB}/pandas/core/reshape/pivot.pyc
635${PYSITELIB}/pandas/core/reshape/pivot.pyo 693${PYSITELIB}/pandas/core/reshape/pivot.pyo
636${PYSITELIB}/pandas/core/reshape/reshape.py 694${PYSITELIB}/pandas/core/reshape/reshape.py
637${PYSITELIB}/pandas/core/reshape/reshape.pyc 695${PYSITELIB}/pandas/core/reshape/reshape.pyc
638${PYSITELIB}/pandas/core/reshape/reshape.pyo 696${PYSITELIB}/pandas/core/reshape/reshape.pyo
639${PYSITELIB}/pandas/core/reshape/tile.py 697${PYSITELIB}/pandas/core/reshape/tile.py
640${PYSITELIB}/pandas/core/reshape/tile.pyc 698${PYSITELIB}/pandas/core/reshape/tile.pyc
641${PYSITELIB}/pandas/core/reshape/tile.pyo 699${PYSITELIB}/pandas/core/reshape/tile.pyo
642${PYSITELIB}/pandas/core/reshape/util.py 700${PYSITELIB}/pandas/core/reshape/util.py
643${PYSITELIB}/pandas/core/reshape/util.pyc 701${PYSITELIB}/pandas/core/reshape/util.pyc
644${PYSITELIB}/pandas/core/reshape/util.pyo 702${PYSITELIB}/pandas/core/reshape/util.pyo
645${PYSITELIB}/pandas/core/roperator.py 703${PYSITELIB}/pandas/core/roperator.py
646${PYSITELIB}/pandas/core/roperator.pyc 704${PYSITELIB}/pandas/core/roperator.pyc
647${PYSITELIB}/pandas/core/roperator.pyo 705${PYSITELIB}/pandas/core/roperator.pyo
 706${PYSITELIB}/pandas/core/sample.py
 707${PYSITELIB}/pandas/core/sample.pyc
 708${PYSITELIB}/pandas/core/sample.pyo
648${PYSITELIB}/pandas/core/series.py 709${PYSITELIB}/pandas/core/series.py
649${PYSITELIB}/pandas/core/series.pyc 710${PYSITELIB}/pandas/core/series.pyc
650${PYSITELIB}/pandas/core/series.pyo 711${PYSITELIB}/pandas/core/series.pyo
651${PYSITELIB}/pandas/core/shared_docs.py 712${PYSITELIB}/pandas/core/shared_docs.py
652${PYSITELIB}/pandas/core/shared_docs.pyc 713${PYSITELIB}/pandas/core/shared_docs.pyc
653${PYSITELIB}/pandas/core/shared_docs.pyo 714${PYSITELIB}/pandas/core/shared_docs.pyo
654${PYSITELIB}/pandas/core/sorting.py 715${PYSITELIB}/pandas/core/sorting.py
655${PYSITELIB}/pandas/core/sorting.pyc 716${PYSITELIB}/pandas/core/sorting.pyc
656${PYSITELIB}/pandas/core/sorting.pyo 717${PYSITELIB}/pandas/core/sorting.pyo
657${PYSITELIB}/pandas/core/sparse/__init__.py 718${PYSITELIB}/pandas/core/sparse/__init__.py
658${PYSITELIB}/pandas/core/sparse/__init__.pyc 719${PYSITELIB}/pandas/core/sparse/__init__.pyc
659${PYSITELIB}/pandas/core/sparse/__init__.pyo 720${PYSITELIB}/pandas/core/sparse/__init__.pyo
660${PYSITELIB}/pandas/core/sparse/api.py 721${PYSITELIB}/pandas/core/sparse/api.py
@@ -701,29 +762,26 @@ ${PYSITELIB}/pandas/core/window/__init__ @@ -701,29 +762,26 @@ ${PYSITELIB}/pandas/core/window/__init__
701${PYSITELIB}/pandas/core/window/__init__.pyo 762${PYSITELIB}/pandas/core/window/__init__.pyo
702${PYSITELIB}/pandas/core/window/common.py 763${PYSITELIB}/pandas/core/window/common.py
703${PYSITELIB}/pandas/core/window/common.pyc 764${PYSITELIB}/pandas/core/window/common.pyc
704${PYSITELIB}/pandas/core/window/common.pyo 765${PYSITELIB}/pandas/core/window/common.pyo
705${PYSITELIB}/pandas/core/window/doc.py 766${PYSITELIB}/pandas/core/window/doc.py
706${PYSITELIB}/pandas/core/window/doc.pyc 767${PYSITELIB}/pandas/core/window/doc.pyc
707${PYSITELIB}/pandas/core/window/doc.pyo 768${PYSITELIB}/pandas/core/window/doc.pyo
708${PYSITELIB}/pandas/core/window/ewm.py 769${PYSITELIB}/pandas/core/window/ewm.py
709${PYSITELIB}/pandas/core/window/ewm.pyc 770${PYSITELIB}/pandas/core/window/ewm.pyc
710${PYSITELIB}/pandas/core/window/ewm.pyo 771${PYSITELIB}/pandas/core/window/ewm.pyo
711${PYSITELIB}/pandas/core/window/expanding.py 772${PYSITELIB}/pandas/core/window/expanding.py
712${PYSITELIB}/pandas/core/window/expanding.pyc 773${PYSITELIB}/pandas/core/window/expanding.pyc
713${PYSITELIB}/pandas/core/window/expanding.pyo 774${PYSITELIB}/pandas/core/window/expanding.pyo
714${PYSITELIB}/pandas/core/window/indexers.py 
715${PYSITELIB}/pandas/core/window/indexers.pyc 
716${PYSITELIB}/pandas/core/window/indexers.pyo 
717${PYSITELIB}/pandas/core/window/numba_.py 775${PYSITELIB}/pandas/core/window/numba_.py
718${PYSITELIB}/pandas/core/window/numba_.pyc 776${PYSITELIB}/pandas/core/window/numba_.pyc
719${PYSITELIB}/pandas/core/window/numba_.pyo 777${PYSITELIB}/pandas/core/window/numba_.pyo
720${PYSITELIB}/pandas/core/window/online.py 778${PYSITELIB}/pandas/core/window/online.py
721${PYSITELIB}/pandas/core/window/online.pyc 779${PYSITELIB}/pandas/core/window/online.pyc
722${PYSITELIB}/pandas/core/window/online.pyo 780${PYSITELIB}/pandas/core/window/online.pyo
723${PYSITELIB}/pandas/core/window/rolling.py 781${PYSITELIB}/pandas/core/window/rolling.py
724${PYSITELIB}/pandas/core/window/rolling.pyc 782${PYSITELIB}/pandas/core/window/rolling.pyc
725${PYSITELIB}/pandas/core/window/rolling.pyo 783${PYSITELIB}/pandas/core/window/rolling.pyo
726${PYSITELIB}/pandas/errors/__init__.py 784${PYSITELIB}/pandas/errors/__init__.py
727${PYSITELIB}/pandas/errors/__init__.pyc 785${PYSITELIB}/pandas/errors/__init__.pyc
728${PYSITELIB}/pandas/errors/__init__.pyo 786${PYSITELIB}/pandas/errors/__init__.pyo
729${PYSITELIB}/pandas/io/__init__.py 787${PYSITELIB}/pandas/io/__init__.py
@@ -813,26 +871,29 @@ ${PYSITELIB}/pandas/io/formats/printing. @@ -813,26 +871,29 @@ ${PYSITELIB}/pandas/io/formats/printing.
813${PYSITELIB}/pandas/io/formats/string.py 871${PYSITELIB}/pandas/io/formats/string.py
814${PYSITELIB}/pandas/io/formats/string.pyc 872${PYSITELIB}/pandas/io/formats/string.pyc
815${PYSITELIB}/pandas/io/formats/string.pyo 873${PYSITELIB}/pandas/io/formats/string.pyo
816${PYSITELIB}/pandas/io/formats/style.py 874${PYSITELIB}/pandas/io/formats/style.py
817${PYSITELIB}/pandas/io/formats/style.pyc 875${PYSITELIB}/pandas/io/formats/style.pyc
818${PYSITELIB}/pandas/io/formats/style.pyo 876${PYSITELIB}/pandas/io/formats/style.pyo
819${PYSITELIB}/pandas/io/formats/style_render.py 877${PYSITELIB}/pandas/io/formats/style_render.py
820${PYSITELIB}/pandas/io/formats/style_render.pyc 878${PYSITELIB}/pandas/io/formats/style_render.pyc
821${PYSITELIB}/pandas/io/formats/style_render.pyo 879${PYSITELIB}/pandas/io/formats/style_render.pyo
822${PYSITELIB}/pandas/io/formats/templates/html.tpl 880${PYSITELIB}/pandas/io/formats/templates/html.tpl
823${PYSITELIB}/pandas/io/formats/templates/html_style.tpl 881${PYSITELIB}/pandas/io/formats/templates/html_style.tpl
824${PYSITELIB}/pandas/io/formats/templates/html_table.tpl 882${PYSITELIB}/pandas/io/formats/templates/html_table.tpl
825${PYSITELIB}/pandas/io/formats/templates/latex.tpl 883${PYSITELIB}/pandas/io/formats/templates/latex.tpl
 884${PYSITELIB}/pandas/io/formats/templates/latex_longtable.tpl
 885${PYSITELIB}/pandas/io/formats/templates/latex_table.tpl
 886${PYSITELIB}/pandas/io/formats/templates/string.tpl
826${PYSITELIB}/pandas/io/formats/xml.py 887${PYSITELIB}/pandas/io/formats/xml.py
827${PYSITELIB}/pandas/io/formats/xml.pyc 888${PYSITELIB}/pandas/io/formats/xml.pyc
828${PYSITELIB}/pandas/io/formats/xml.pyo 889${PYSITELIB}/pandas/io/formats/xml.pyo
829${PYSITELIB}/pandas/io/gbq.py 890${PYSITELIB}/pandas/io/gbq.py
830${PYSITELIB}/pandas/io/gbq.pyc 891${PYSITELIB}/pandas/io/gbq.pyc
831${PYSITELIB}/pandas/io/gbq.pyo 892${PYSITELIB}/pandas/io/gbq.pyo
832${PYSITELIB}/pandas/io/html.py 893${PYSITELIB}/pandas/io/html.py
833${PYSITELIB}/pandas/io/html.pyc 894${PYSITELIB}/pandas/io/html.pyc
834${PYSITELIB}/pandas/io/html.pyo 895${PYSITELIB}/pandas/io/html.pyo
835${PYSITELIB}/pandas/io/json/__init__.py 896${PYSITELIB}/pandas/io/json/__init__.py
836${PYSITELIB}/pandas/io/json/__init__.pyc 897${PYSITELIB}/pandas/io/json/__init__.pyc
837${PYSITELIB}/pandas/io/json/__init__.pyo 898${PYSITELIB}/pandas/io/json/__init__.pyo
838${PYSITELIB}/pandas/io/json/_json.py 899${PYSITELIB}/pandas/io/json/_json.py
@@ -843,47 +904,51 @@ ${PYSITELIB}/pandas/io/json/_normalize.p @@ -843,47 +904,51 @@ ${PYSITELIB}/pandas/io/json/_normalize.p
843${PYSITELIB}/pandas/io/json/_normalize.pyo 904${PYSITELIB}/pandas/io/json/_normalize.pyo
844${PYSITELIB}/pandas/io/json/_table_schema.py 905${PYSITELIB}/pandas/io/json/_table_schema.py
845${PYSITELIB}/pandas/io/json/_table_schema.pyc 906${PYSITELIB}/pandas/io/json/_table_schema.pyc
846${PYSITELIB}/pandas/io/json/_table_schema.pyo 907${PYSITELIB}/pandas/io/json/_table_schema.pyo
847${PYSITELIB}/pandas/io/orc.py 908${PYSITELIB}/pandas/io/orc.py
848${PYSITELIB}/pandas/io/orc.pyc 909${PYSITELIB}/pandas/io/orc.pyc
849${PYSITELIB}/pandas/io/orc.pyo 910${PYSITELIB}/pandas/io/orc.pyo
850${PYSITELIB}/pandas/io/parquet.py 911${PYSITELIB}/pandas/io/parquet.py
851${PYSITELIB}/pandas/io/parquet.pyc 912${PYSITELIB}/pandas/io/parquet.pyc
852${PYSITELIB}/pandas/io/parquet.pyo 913${PYSITELIB}/pandas/io/parquet.pyo
853${PYSITELIB}/pandas/io/parsers/__init__.py 914${PYSITELIB}/pandas/io/parsers/__init__.py
854${PYSITELIB}/pandas/io/parsers/__init__.pyc 915${PYSITELIB}/pandas/io/parsers/__init__.pyc
855${PYSITELIB}/pandas/io/parsers/__init__.pyo 916${PYSITELIB}/pandas/io/parsers/__init__.pyo
 917${PYSITELIB}/pandas/io/parsers/arrow_parser_wrapper.py
 918${PYSITELIB}/pandas/io/parsers/arrow_parser_wrapper.pyc
 919${PYSITELIB}/pandas/io/parsers/arrow_parser_wrapper.pyo
856${PYSITELIB}/pandas/io/parsers/base_parser.py 920${PYSITELIB}/pandas/io/parsers/base_parser.py
857${PYSITELIB}/pandas/io/parsers/base_parser.pyc 921${PYSITELIB}/pandas/io/parsers/base_parser.pyc
858${PYSITELIB}/pandas/io/parsers/base_parser.pyo 922${PYSITELIB}/pandas/io/parsers/base_parser.pyo
859${PYSITELIB}/pandas/io/parsers/c_parser_wrapper.py 923${PYSITELIB}/pandas/io/parsers/c_parser_wrapper.py
860${PYSITELIB}/pandas/io/parsers/c_parser_wrapper.pyc 924${PYSITELIB}/pandas/io/parsers/c_parser_wrapper.pyc
861${PYSITELIB}/pandas/io/parsers/c_parser_wrapper.pyo 925${PYSITELIB}/pandas/io/parsers/c_parser_wrapper.pyo
862${PYSITELIB}/pandas/io/parsers/python_parser.py 926${PYSITELIB}/pandas/io/parsers/python_parser.py
863${PYSITELIB}/pandas/io/parsers/python_parser.pyc 927${PYSITELIB}/pandas/io/parsers/python_parser.pyc
864${PYSITELIB}/pandas/io/parsers/python_parser.pyo 928${PYSITELIB}/pandas/io/parsers/python_parser.pyo
865${PYSITELIB}/pandas/io/parsers/readers.py 929${PYSITELIB}/pandas/io/parsers/readers.py
866${PYSITELIB}/pandas/io/parsers/readers.pyc 930${PYSITELIB}/pandas/io/parsers/readers.pyc
867${PYSITELIB}/pandas/io/parsers/readers.pyo 931${PYSITELIB}/pandas/io/parsers/readers.pyo
868${PYSITELIB}/pandas/io/pickle.py 932${PYSITELIB}/pandas/io/pickle.py
869${PYSITELIB}/pandas/io/pickle.pyc 933${PYSITELIB}/pandas/io/pickle.pyc
870${PYSITELIB}/pandas/io/pickle.pyo 934${PYSITELIB}/pandas/io/pickle.pyo
871${PYSITELIB}/pandas/io/pytables.py 935${PYSITELIB}/pandas/io/pytables.py
872${PYSITELIB}/pandas/io/pytables.pyc 936${PYSITELIB}/pandas/io/pytables.pyc
873${PYSITELIB}/pandas/io/pytables.pyo 937${PYSITELIB}/pandas/io/pytables.pyo
874${PYSITELIB}/pandas/io/sas/__init__.py 938${PYSITELIB}/pandas/io/sas/__init__.py
875${PYSITELIB}/pandas/io/sas/__init__.pyc 939${PYSITELIB}/pandas/io/sas/__init__.pyc
876${PYSITELIB}/pandas/io/sas/__init__.pyo 940${PYSITELIB}/pandas/io/sas/__init__.pyo
 941${PYSITELIB}/pandas/io/sas/_sas.pyi
877${PYSITELIB}/pandas/io/sas/_sas.so 942${PYSITELIB}/pandas/io/sas/_sas.so
878${PYSITELIB}/pandas/io/sas/sas.pyx 943${PYSITELIB}/pandas/io/sas/sas.pyx
879${PYSITELIB}/pandas/io/sas/sas7bdat.py 944${PYSITELIB}/pandas/io/sas/sas7bdat.py
880${PYSITELIB}/pandas/io/sas/sas7bdat.pyc 945${PYSITELIB}/pandas/io/sas/sas7bdat.pyc
881${PYSITELIB}/pandas/io/sas/sas7bdat.pyo 946${PYSITELIB}/pandas/io/sas/sas7bdat.pyo
882${PYSITELIB}/pandas/io/sas/sas_constants.py 947${PYSITELIB}/pandas/io/sas/sas_constants.py
883${PYSITELIB}/pandas/io/sas/sas_constants.pyc 948${PYSITELIB}/pandas/io/sas/sas_constants.pyc
884${PYSITELIB}/pandas/io/sas/sas_constants.pyo 949${PYSITELIB}/pandas/io/sas/sas_constants.pyo
885${PYSITELIB}/pandas/io/sas/sas_xport.py 950${PYSITELIB}/pandas/io/sas/sas_xport.py
886${PYSITELIB}/pandas/io/sas/sas_xport.pyc 951${PYSITELIB}/pandas/io/sas/sas_xport.pyc
887${PYSITELIB}/pandas/io/sas/sas_xport.pyo 952${PYSITELIB}/pandas/io/sas/sas_xport.pyo
888${PYSITELIB}/pandas/io/sas/sasreader.py 953${PYSITELIB}/pandas/io/sas/sasreader.py
889${PYSITELIB}/pandas/io/sas/sasreader.pyc 954${PYSITELIB}/pandas/io/sas/sasreader.pyc
@@ -911,26 +976,29 @@ ${PYSITELIB}/pandas/plotting/_matplotlib @@ -911,26 +976,29 @@ ${PYSITELIB}/pandas/plotting/_matplotlib
911${PYSITELIB}/pandas/plotting/_matplotlib/__init__.pyo 976${PYSITELIB}/pandas/plotting/_matplotlib/__init__.pyo
912${PYSITELIB}/pandas/plotting/_matplotlib/boxplot.py 977${PYSITELIB}/pandas/plotting/_matplotlib/boxplot.py
913${PYSITELIB}/pandas/plotting/_matplotlib/boxplot.pyc 978${PYSITELIB}/pandas/plotting/_matplotlib/boxplot.pyc
914${PYSITELIB}/pandas/plotting/_matplotlib/boxplot.pyo 979${PYSITELIB}/pandas/plotting/_matplotlib/boxplot.pyo
915${PYSITELIB}/pandas/plotting/_matplotlib/compat.py 980${PYSITELIB}/pandas/plotting/_matplotlib/compat.py
916${PYSITELIB}/pandas/plotting/_matplotlib/compat.pyc 981${PYSITELIB}/pandas/plotting/_matplotlib/compat.pyc
917${PYSITELIB}/pandas/plotting/_matplotlib/compat.pyo 982${PYSITELIB}/pandas/plotting/_matplotlib/compat.pyo
918${PYSITELIB}/pandas/plotting/_matplotlib/converter.py 983${PYSITELIB}/pandas/plotting/_matplotlib/converter.py
919${PYSITELIB}/pandas/plotting/_matplotlib/converter.pyc 984${PYSITELIB}/pandas/plotting/_matplotlib/converter.pyc
920${PYSITELIB}/pandas/plotting/_matplotlib/converter.pyo 985${PYSITELIB}/pandas/plotting/_matplotlib/converter.pyo
921${PYSITELIB}/pandas/plotting/_matplotlib/core.py 986${PYSITELIB}/pandas/plotting/_matplotlib/core.py
922${PYSITELIB}/pandas/plotting/_matplotlib/core.pyc 987${PYSITELIB}/pandas/plotting/_matplotlib/core.pyc
923${PYSITELIB}/pandas/plotting/_matplotlib/core.pyo 988${PYSITELIB}/pandas/plotting/_matplotlib/core.pyo
 989${PYSITELIB}/pandas/plotting/_matplotlib/groupby.py
 990${PYSITELIB}/pandas/plotting/_matplotlib/groupby.pyc
 991${PYSITELIB}/pandas/plotting/_matplotlib/groupby.pyo
924${PYSITELIB}/pandas/plotting/_matplotlib/hist.py 992${PYSITELIB}/pandas/plotting/_matplotlib/hist.py
925${PYSITELIB}/pandas/plotting/_matplotlib/hist.pyc 993${PYSITELIB}/pandas/plotting/_matplotlib/hist.pyc
926${PYSITELIB}/pandas/plotting/_matplotlib/hist.pyo 994${PYSITELIB}/pandas/plotting/_matplotlib/hist.pyo
927${PYSITELIB}/pandas/plotting/_matplotlib/misc.py 995${PYSITELIB}/pandas/plotting/_matplotlib/misc.py
928${PYSITELIB}/pandas/plotting/_matplotlib/misc.pyc 996${PYSITELIB}/pandas/plotting/_matplotlib/misc.pyc
929${PYSITELIB}/pandas/plotting/_matplotlib/misc.pyo 997${PYSITELIB}/pandas/plotting/_matplotlib/misc.pyo
930${PYSITELIB}/pandas/plotting/_matplotlib/style.py 998${PYSITELIB}/pandas/plotting/_matplotlib/style.py
931${PYSITELIB}/pandas/plotting/_matplotlib/style.pyc 999${PYSITELIB}/pandas/plotting/_matplotlib/style.pyc
932${PYSITELIB}/pandas/plotting/_matplotlib/style.pyo 1000${PYSITELIB}/pandas/plotting/_matplotlib/style.pyo
933${PYSITELIB}/pandas/plotting/_matplotlib/timeseries.py 1001${PYSITELIB}/pandas/plotting/_matplotlib/timeseries.py
934${PYSITELIB}/pandas/plotting/_matplotlib/timeseries.pyc 1002${PYSITELIB}/pandas/plotting/_matplotlib/timeseries.pyc
935${PYSITELIB}/pandas/plotting/_matplotlib/timeseries.pyo 1003${PYSITELIB}/pandas/plotting/_matplotlib/timeseries.pyo
936${PYSITELIB}/pandas/plotting/_matplotlib/tools.py 1004${PYSITELIB}/pandas/plotting/_matplotlib/tools.py
@@ -974,26 +1042,29 @@ ${PYSITELIB}/pandas/tests/apply/test_fra @@ -974,26 +1042,29 @@ ${PYSITELIB}/pandas/tests/apply/test_fra
974${PYSITELIB}/pandas/tests/apply/test_frame_transform.pyo 1042${PYSITELIB}/pandas/tests/apply/test_frame_transform.pyo
975${PYSITELIB}/pandas/tests/apply/test_invalid_arg.py 1043${PYSITELIB}/pandas/tests/apply/test_invalid_arg.py
976${PYSITELIB}/pandas/tests/apply/test_invalid_arg.pyc 1044${PYSITELIB}/pandas/tests/apply/test_invalid_arg.pyc
977${PYSITELIB}/pandas/tests/apply/test_invalid_arg.pyo 1045${PYSITELIB}/pandas/tests/apply/test_invalid_arg.pyo
978${PYSITELIB}/pandas/tests/apply/test_series_apply.py 1046${PYSITELIB}/pandas/tests/apply/test_series_apply.py
979${PYSITELIB}/pandas/tests/apply/test_series_apply.pyc 1047${PYSITELIB}/pandas/tests/apply/test_series_apply.pyc
980${PYSITELIB}/pandas/tests/apply/test_series_apply.pyo 1048${PYSITELIB}/pandas/tests/apply/test_series_apply.pyo
981${PYSITELIB}/pandas/tests/apply/test_series_apply_relabeling.py 1049${PYSITELIB}/pandas/tests/apply/test_series_apply_relabeling.py
982${PYSITELIB}/pandas/tests/apply/test_series_apply_relabeling.pyc 1050${PYSITELIB}/pandas/tests/apply/test_series_apply_relabeling.pyc
983${PYSITELIB}/pandas/tests/apply/test_series_apply_relabeling.pyo 1051${PYSITELIB}/pandas/tests/apply/test_series_apply_relabeling.pyo
984${PYSITELIB}/pandas/tests/apply/test_series_transform.py 1052${PYSITELIB}/pandas/tests/apply/test_series_transform.py
985${PYSITELIB}/pandas/tests/apply/test_series_transform.pyc 1053${PYSITELIB}/pandas/tests/apply/test_series_transform.pyc
986${PYSITELIB}/pandas/tests/apply/test_series_transform.pyo 1054${PYSITELIB}/pandas/tests/apply/test_series_transform.pyo
 1055${PYSITELIB}/pandas/tests/apply/test_str.py
 1056${PYSITELIB}/pandas/tests/apply/test_str.pyc
 1057${PYSITELIB}/pandas/tests/apply/test_str.pyo
987${PYSITELIB}/pandas/tests/arithmetic/__init__.py 1058${PYSITELIB}/pandas/tests/arithmetic/__init__.py
988${PYSITELIB}/pandas/tests/arithmetic/__init__.pyc 1059${PYSITELIB}/pandas/tests/arithmetic/__init__.pyc
989${PYSITELIB}/pandas/tests/arithmetic/__init__.pyo 1060${PYSITELIB}/pandas/tests/arithmetic/__init__.pyo
990${PYSITELIB}/pandas/tests/arithmetic/common.py 1061${PYSITELIB}/pandas/tests/arithmetic/common.py
991${PYSITELIB}/pandas/tests/arithmetic/common.pyc 1062${PYSITELIB}/pandas/tests/arithmetic/common.pyc
992${PYSITELIB}/pandas/tests/arithmetic/common.pyo 1063${PYSITELIB}/pandas/tests/arithmetic/common.pyo
993${PYSITELIB}/pandas/tests/arithmetic/conftest.py 1064${PYSITELIB}/pandas/tests/arithmetic/conftest.py
994${PYSITELIB}/pandas/tests/arithmetic/conftest.pyc 1065${PYSITELIB}/pandas/tests/arithmetic/conftest.pyc
995${PYSITELIB}/pandas/tests/arithmetic/conftest.pyo 1066${PYSITELIB}/pandas/tests/arithmetic/conftest.pyo
996${PYSITELIB}/pandas/tests/arithmetic/test_array_ops.py 1067${PYSITELIB}/pandas/tests/arithmetic/test_array_ops.py
997${PYSITELIB}/pandas/tests/arithmetic/test_array_ops.pyc 1068${PYSITELIB}/pandas/tests/arithmetic/test_array_ops.pyc
998${PYSITELIB}/pandas/tests/arithmetic/test_array_ops.pyo 1069${PYSITELIB}/pandas/tests/arithmetic/test_array_ops.pyo
999${PYSITELIB}/pandas/tests/arithmetic/test_categorical.py 1070${PYSITELIB}/pandas/tests/arithmetic/test_categorical.py
@@ -1046,41 +1117,41 @@ ${PYSITELIB}/pandas/tests/arrays/boolean @@ -1046,41 +1117,41 @@ ${PYSITELIB}/pandas/tests/arrays/boolean
1046${PYSITELIB}/pandas/tests/arrays/boolean/test_logical.pyo 1117${PYSITELIB}/pandas/tests/arrays/boolean/test_logical.pyo
1047${PYSITELIB}/pandas/tests/arrays/boolean/test_ops.py 1118${PYSITELIB}/pandas/tests/arrays/boolean/test_ops.py
1048${PYSITELIB}/pandas/tests/arrays/boolean/test_ops.pyc 1119${PYSITELIB}/pandas/tests/arrays/boolean/test_ops.pyc
1049${PYSITELIB}/pandas/tests/arrays/boolean/test_ops.pyo 1120${PYSITELIB}/pandas/tests/arrays/boolean/test_ops.pyo
1050${PYSITELIB}/pandas/tests/arrays/boolean/test_reduction.py 1121${PYSITELIB}/pandas/tests/arrays/boolean/test_reduction.py
1051${PYSITELIB}/pandas/tests/arrays/boolean/test_reduction.pyc 1122${PYSITELIB}/pandas/tests/arrays/boolean/test_reduction.pyc
1052${PYSITELIB}/pandas/tests/arrays/boolean/test_reduction.pyo 1123${PYSITELIB}/pandas/tests/arrays/boolean/test_reduction.pyo
1053${PYSITELIB}/pandas/tests/arrays/boolean/test_repr.py 1124${PYSITELIB}/pandas/tests/arrays/boolean/test_repr.py
1054${PYSITELIB}/pandas/tests/arrays/boolean/test_repr.pyc 1125${PYSITELIB}/pandas/tests/arrays/boolean/test_repr.pyc
1055${PYSITELIB}/pandas/tests/arrays/boolean/test_repr.pyo 1126${PYSITELIB}/pandas/tests/arrays/boolean/test_repr.pyo
1056${PYSITELIB}/pandas/tests/arrays/categorical/__init__.py 1127${PYSITELIB}/pandas/tests/arrays/categorical/__init__.py
1057${PYSITELIB}/pandas/tests/arrays/categorical/__init__.pyc 1128${PYSITELIB}/pandas/tests/arrays/categorical/__init__.pyc
1058${PYSITELIB}/pandas/tests/arrays/categorical/__init__.pyo 1129${PYSITELIB}/pandas/tests/arrays/categorical/__init__.pyo
1059${PYSITELIB}/pandas/tests/arrays/categorical/common.py 
1060${PYSITELIB}/pandas/tests/arrays/categorical/common.pyc 
1061${PYSITELIB}/pandas/tests/arrays/categorical/common.pyo 
1062${PYSITELIB}/pandas/tests/arrays/categorical/conftest.py 1130${PYSITELIB}/pandas/tests/arrays/categorical/conftest.py
1063${PYSITELIB}/pandas/tests/arrays/categorical/conftest.pyc 1131${PYSITELIB}/pandas/tests/arrays/categorical/conftest.pyc
1064${PYSITELIB}/pandas/tests/arrays/categorical/conftest.pyo 1132${PYSITELIB}/pandas/tests/arrays/categorical/conftest.pyo
1065${PYSITELIB}/pandas/tests/arrays/categorical/test_algos.py 1133${PYSITELIB}/pandas/tests/arrays/categorical/test_algos.py
1066${PYSITELIB}/pandas/tests/arrays/categorical/test_algos.pyc 1134${PYSITELIB}/pandas/tests/arrays/categorical/test_algos.pyc
1067${PYSITELIB}/pandas/tests/arrays/categorical/test_algos.pyo 1135${PYSITELIB}/pandas/tests/arrays/categorical/test_algos.pyo
1068${PYSITELIB}/pandas/tests/arrays/categorical/test_analytics.py 1136${PYSITELIB}/pandas/tests/arrays/categorical/test_analytics.py
1069${PYSITELIB}/pandas/tests/arrays/categorical/test_analytics.pyc 1137${PYSITELIB}/pandas/tests/arrays/categorical/test_analytics.pyc
1070${PYSITELIB}/pandas/tests/arrays/categorical/test_analytics.pyo 1138${PYSITELIB}/pandas/tests/arrays/categorical/test_analytics.pyo
1071${PYSITELIB}/pandas/tests/arrays/categorical/test_api.py 1139${PYSITELIB}/pandas/tests/arrays/categorical/test_api.py
1072${PYSITELIB}/pandas/tests/arrays/categorical/test_api.pyc 1140${PYSITELIB}/pandas/tests/arrays/categorical/test_api.pyc
1073${PYSITELIB}/pandas/tests/arrays/categorical/test_api.pyo 1141${PYSITELIB}/pandas/tests/arrays/categorical/test_api.pyo
 1142${PYSITELIB}/pandas/tests/arrays/categorical/test_astype.py
 1143${PYSITELIB}/pandas/tests/arrays/categorical/test_astype.pyc
 1144${PYSITELIB}/pandas/tests/arrays/categorical/test_astype.pyo
1074${PYSITELIB}/pandas/tests/arrays/categorical/test_constructors.py 1145${PYSITELIB}/pandas/tests/arrays/categorical/test_constructors.py
1075${PYSITELIB}/pandas/tests/arrays/categorical/test_constructors.pyc 1146${PYSITELIB}/pandas/tests/arrays/categorical/test_constructors.pyc
1076${PYSITELIB}/pandas/tests/arrays/categorical/test_constructors.pyo 1147${PYSITELIB}/pandas/tests/arrays/categorical/test_constructors.pyo
1077${PYSITELIB}/pandas/tests/arrays/categorical/test_dtypes.py 1148${PYSITELIB}/pandas/tests/arrays/categorical/test_dtypes.py
1078${PYSITELIB}/pandas/tests/arrays/categorical/test_dtypes.pyc 1149${PYSITELIB}/pandas/tests/arrays/categorical/test_dtypes.pyc
1079${PYSITELIB}/pandas/tests/arrays/categorical/test_dtypes.pyo 1150${PYSITELIB}/pandas/tests/arrays/categorical/test_dtypes.pyo
1080${PYSITELIB}/pandas/tests/arrays/categorical/test_indexing.py 1151${PYSITELIB}/pandas/tests/arrays/categorical/test_indexing.py
1081${PYSITELIB}/pandas/tests/arrays/categorical/test_indexing.pyc 1152${PYSITELIB}/pandas/tests/arrays/categorical/test_indexing.pyc
1082${PYSITELIB}/pandas/tests/arrays/categorical/test_indexing.pyo 1153${PYSITELIB}/pandas/tests/arrays/categorical/test_indexing.pyo
1083${PYSITELIB}/pandas/tests/arrays/categorical/test_missing.py 1154${PYSITELIB}/pandas/tests/arrays/categorical/test_missing.py
1084${PYSITELIB}/pandas/tests/arrays/categorical/test_missing.pyc 1155${PYSITELIB}/pandas/tests/arrays/categorical/test_missing.pyc
1085${PYSITELIB}/pandas/tests/arrays/categorical/test_missing.pyo 1156${PYSITELIB}/pandas/tests/arrays/categorical/test_missing.pyo
1086${PYSITELIB}/pandas/tests/arrays/categorical/test_operators.py 1157${PYSITELIB}/pandas/tests/arrays/categorical/test_operators.py
@@ -1187,26 +1258,41 @@ ${PYSITELIB}/pandas/tests/arrays/interva @@ -1187,26 +1258,41 @@ ${PYSITELIB}/pandas/tests/arrays/interva
1187${PYSITELIB}/pandas/tests/arrays/interval/test_ops.pyo 1258${PYSITELIB}/pandas/tests/arrays/interval/test_ops.pyo
1188${PYSITELIB}/pandas/tests/arrays/masked/__init__.py 1259${PYSITELIB}/pandas/tests/arrays/masked/__init__.py
1189${PYSITELIB}/pandas/tests/arrays/masked/__init__.pyc 1260${PYSITELIB}/pandas/tests/arrays/masked/__init__.pyc
1190${PYSITELIB}/pandas/tests/arrays/masked/__init__.pyo 1261${PYSITELIB}/pandas/tests/arrays/masked/__init__.pyo
1191${PYSITELIB}/pandas/tests/arrays/masked/test_arithmetic.py 1262${PYSITELIB}/pandas/tests/arrays/masked/test_arithmetic.py
1192${PYSITELIB}/pandas/tests/arrays/masked/test_arithmetic.pyc 1263${PYSITELIB}/pandas/tests/arrays/masked/test_arithmetic.pyc
1193${PYSITELIB}/pandas/tests/arrays/masked/test_arithmetic.pyo 1264${PYSITELIB}/pandas/tests/arrays/masked/test_arithmetic.pyo
1194${PYSITELIB}/pandas/tests/arrays/masked/test_arrow_compat.py 1265${PYSITELIB}/pandas/tests/arrays/masked/test_arrow_compat.py
1195${PYSITELIB}/pandas/tests/arrays/masked/test_arrow_compat.pyc 1266${PYSITELIB}/pandas/tests/arrays/masked/test_arrow_compat.pyc
1196${PYSITELIB}/pandas/tests/arrays/masked/test_arrow_compat.pyo 1267${PYSITELIB}/pandas/tests/arrays/masked/test_arrow_compat.pyo
1197${PYSITELIB}/pandas/tests/arrays/masked/test_function.py 1268${PYSITELIB}/pandas/tests/arrays/masked/test_function.py
1198${PYSITELIB}/pandas/tests/arrays/masked/test_function.pyc 1269${PYSITELIB}/pandas/tests/arrays/masked/test_function.pyc
1199${PYSITELIB}/pandas/tests/arrays/masked/test_function.pyo 1270${PYSITELIB}/pandas/tests/arrays/masked/test_function.pyo
 1271${PYSITELIB}/pandas/tests/arrays/masked/test_indexing.py
 1272${PYSITELIB}/pandas/tests/arrays/masked/test_indexing.pyc
 1273${PYSITELIB}/pandas/tests/arrays/masked/test_indexing.pyo
 1274${PYSITELIB}/pandas/tests/arrays/masked_shared.py
 1275${PYSITELIB}/pandas/tests/arrays/masked_shared.pyc
 1276${PYSITELIB}/pandas/tests/arrays/masked_shared.pyo
 1277${PYSITELIB}/pandas/tests/arrays/numpy_/__init__.py
 1278${PYSITELIB}/pandas/tests/arrays/numpy_/__init__.pyc
 1279${PYSITELIB}/pandas/tests/arrays/numpy_/__init__.pyo
 1280${PYSITELIB}/pandas/tests/arrays/numpy_/test_indexing.py
 1281${PYSITELIB}/pandas/tests/arrays/numpy_/test_indexing.pyc
 1282${PYSITELIB}/pandas/tests/arrays/numpy_/test_indexing.pyo
 1283${PYSITELIB}/pandas/tests/arrays/numpy_/test_numpy.py
 1284${PYSITELIB}/pandas/tests/arrays/numpy_/test_numpy.pyc
 1285${PYSITELIB}/pandas/tests/arrays/numpy_/test_numpy.pyo
1200${PYSITELIB}/pandas/tests/arrays/period/__init__.py 1286${PYSITELIB}/pandas/tests/arrays/period/__init__.py
1201${PYSITELIB}/pandas/tests/arrays/period/__init__.pyc 1287${PYSITELIB}/pandas/tests/arrays/period/__init__.pyc
1202${PYSITELIB}/pandas/tests/arrays/period/__init__.pyo 1288${PYSITELIB}/pandas/tests/arrays/period/__init__.pyo
1203${PYSITELIB}/pandas/tests/arrays/period/test_arrow_compat.py 1289${PYSITELIB}/pandas/tests/arrays/period/test_arrow_compat.py
1204${PYSITELIB}/pandas/tests/arrays/period/test_arrow_compat.pyc 1290${PYSITELIB}/pandas/tests/arrays/period/test_arrow_compat.pyc
1205${PYSITELIB}/pandas/tests/arrays/period/test_arrow_compat.pyo 1291${PYSITELIB}/pandas/tests/arrays/period/test_arrow_compat.pyo
1206${PYSITELIB}/pandas/tests/arrays/period/test_astype.py 1292${PYSITELIB}/pandas/tests/arrays/period/test_astype.py
1207${PYSITELIB}/pandas/tests/arrays/period/test_astype.pyc 1293${PYSITELIB}/pandas/tests/arrays/period/test_astype.pyc
1208${PYSITELIB}/pandas/tests/arrays/period/test_astype.pyo 1294${PYSITELIB}/pandas/tests/arrays/period/test_astype.pyo
1209${PYSITELIB}/pandas/tests/arrays/period/test_constructors.py 1295${PYSITELIB}/pandas/tests/arrays/period/test_constructors.py
1210${PYSITELIB}/pandas/tests/arrays/period/test_constructors.pyc 1296${PYSITELIB}/pandas/tests/arrays/period/test_constructors.pyc
1211${PYSITELIB}/pandas/tests/arrays/period/test_constructors.pyo 1297${PYSITELIB}/pandas/tests/arrays/period/test_constructors.pyo
1212${PYSITELIB}/pandas/tests/arrays/period/test_reductions.py 1298${PYSITELIB}/pandas/tests/arrays/period/test_reductions.py
@@ -1214,59 +1300,71 @@ ${PYSITELIB}/pandas/tests/arrays/period/ @@ -1214,59 +1300,71 @@ ${PYSITELIB}/pandas/tests/arrays/period/
1214${PYSITELIB}/pandas/tests/arrays/period/test_reductions.pyo 1300${PYSITELIB}/pandas/tests/arrays/period/test_reductions.pyo
1215${PYSITELIB}/pandas/tests/arrays/sparse/__init__.py 1301${PYSITELIB}/pandas/tests/arrays/sparse/__init__.py
1216${PYSITELIB}/pandas/tests/arrays/sparse/__init__.pyc 1302${PYSITELIB}/pandas/tests/arrays/sparse/__init__.pyc
1217${PYSITELIB}/pandas/tests/arrays/sparse/__init__.pyo 1303${PYSITELIB}/pandas/tests/arrays/sparse/__init__.pyo
1218${PYSITELIB}/pandas/tests/arrays/sparse/test_accessor.py 1304${PYSITELIB}/pandas/tests/arrays/sparse/test_accessor.py
1219${PYSITELIB}/pandas/tests/arrays/sparse/test_accessor.pyc 1305${PYSITELIB}/pandas/tests/arrays/sparse/test_accessor.pyc
1220${PYSITELIB}/pandas/tests/arrays/sparse/test_accessor.pyo 1306${PYSITELIB}/pandas/tests/arrays/sparse/test_accessor.pyo
1221${PYSITELIB}/pandas/tests/arrays/sparse/test_arithmetics.py 1307${PYSITELIB}/pandas/tests/arrays/sparse/test_arithmetics.py
1222${PYSITELIB}/pandas/tests/arrays/sparse/test_arithmetics.pyc 1308${PYSITELIB}/pandas/tests/arrays/sparse/test_arithmetics.pyc
1223${PYSITELIB}/pandas/tests/arrays/sparse/test_arithmetics.pyo 1309${PYSITELIB}/pandas/tests/arrays/sparse/test_arithmetics.pyo
1224${PYSITELIB}/pandas/tests/arrays/sparse/test_array.py 1310${PYSITELIB}/pandas/tests/arrays/sparse/test_array.py
1225${PYSITELIB}/pandas/tests/arrays/sparse/test_array.pyc 1311${PYSITELIB}/pandas/tests/arrays/sparse/test_array.pyc
1226${PYSITELIB}/pandas/tests/arrays/sparse/test_array.pyo 1312${PYSITELIB}/pandas/tests/arrays/sparse/test_array.pyo
 1313${PYSITELIB}/pandas/tests/arrays/sparse/test_astype.py
 1314${PYSITELIB}/pandas/tests/arrays/sparse/test_astype.pyc
 1315${PYSITELIB}/pandas/tests/arrays/sparse/test_astype.pyo
1227${PYSITELIB}/pandas/tests/arrays/sparse/test_combine_concat.py 1316${PYSITELIB}/pandas/tests/arrays/sparse/test_combine_concat.py
1228${PYSITELIB}/pandas/tests/arrays/sparse/test_combine_concat.pyc 1317${PYSITELIB}/pandas/tests/arrays/sparse/test_combine_concat.pyc
1229${PYSITELIB}/pandas/tests/arrays/sparse/test_combine_concat.pyo 1318${PYSITELIB}/pandas/tests/arrays/sparse/test_combine_concat.pyo
 1319${PYSITELIB}/pandas/tests/arrays/sparse/test_constructors.py
 1320${PYSITELIB}/pandas/tests/arrays/sparse/test_constructors.pyc
 1321${PYSITELIB}/pandas/tests/arrays/sparse/test_constructors.pyo
1230${PYSITELIB}/pandas/tests/arrays/sparse/test_dtype.py 1322${PYSITELIB}/pandas/tests/arrays/sparse/test_dtype.py
1231${PYSITELIB}/pandas/tests/arrays/sparse/test_dtype.pyc 1323${PYSITELIB}/pandas/tests/arrays/sparse/test_dtype.pyc
1232${PYSITELIB}/pandas/tests/arrays/sparse/test_dtype.pyo 1324${PYSITELIB}/pandas/tests/arrays/sparse/test_dtype.pyo
 1325${PYSITELIB}/pandas/tests/arrays/sparse/test_indexing.py
 1326${PYSITELIB}/pandas/tests/arrays/sparse/test_indexing.pyc
 1327${PYSITELIB}/pandas/tests/arrays/sparse/test_indexing.pyo
1233${PYSITELIB}/pandas/tests/arrays/sparse/test_libsparse.py 1328${PYSITELIB}/pandas/tests/arrays/sparse/test_libsparse.py
1234${PYSITELIB}/pandas/tests/arrays/sparse/test_libsparse.pyc 1329${PYSITELIB}/pandas/tests/arrays/sparse/test_libsparse.pyc
1235${PYSITELIB}/pandas/tests/arrays/sparse/test_libsparse.pyo 1330${PYSITELIB}/pandas/tests/arrays/sparse/test_libsparse.pyo
 1331${PYSITELIB}/pandas/tests/arrays/sparse/test_reductions.py
 1332${PYSITELIB}/pandas/tests/arrays/sparse/test_reductions.pyc
 1333${PYSITELIB}/pandas/tests/arrays/sparse/test_reductions.pyo
 1334${PYSITELIB}/pandas/tests/arrays/sparse/test_unary.py
 1335${PYSITELIB}/pandas/tests/arrays/sparse/test_unary.pyc
 1336${PYSITELIB}/pandas/tests/arrays/sparse/test_unary.pyo
1236${PYSITELIB}/pandas/tests/arrays/string_/__init__.py 1337${PYSITELIB}/pandas/tests/arrays/string_/__init__.py
1237${PYSITELIB}/pandas/tests/arrays/string_/__init__.pyc 1338${PYSITELIB}/pandas/tests/arrays/string_/__init__.pyc
1238${PYSITELIB}/pandas/tests/arrays/string_/__init__.pyo 1339${PYSITELIB}/pandas/tests/arrays/string_/__init__.pyo
1239${PYSITELIB}/pandas/tests/arrays/string_/test_string.py 1340${PYSITELIB}/pandas/tests/arrays/string_/test_string.py
1240${PYSITELIB}/pandas/tests/arrays/string_/test_string.pyc 1341${PYSITELIB}/pandas/tests/arrays/string_/test_string.pyc
1241${PYSITELIB}/pandas/tests/arrays/string_/test_string.pyo 1342${PYSITELIB}/pandas/tests/arrays/string_/test_string.pyo
1242${PYSITELIB}/pandas/tests/arrays/string_/test_string_arrow.py 1343${PYSITELIB}/pandas/tests/arrays/string_/test_string_arrow.py
1243${PYSITELIB}/pandas/tests/arrays/string_/test_string_arrow.pyc 1344${PYSITELIB}/pandas/tests/arrays/string_/test_string_arrow.pyc
1244${PYSITELIB}/pandas/tests/arrays/string_/test_string_arrow.pyo 1345${PYSITELIB}/pandas/tests/arrays/string_/test_string_arrow.pyo
1245${PYSITELIB}/pandas/tests/arrays/test_array.py 1346${PYSITELIB}/pandas/tests/arrays/test_array.py
1246${PYSITELIB}/pandas/tests/arrays/test_array.pyc 1347${PYSITELIB}/pandas/tests/arrays/test_array.pyc
1247${PYSITELIB}/pandas/tests/arrays/test_array.pyo 1348${PYSITELIB}/pandas/tests/arrays/test_array.pyo
1248${PYSITELIB}/pandas/tests/arrays/test_datetimelike.py 1349${PYSITELIB}/pandas/tests/arrays/test_datetimelike.py
1249${PYSITELIB}/pandas/tests/arrays/test_datetimelike.pyc 1350${PYSITELIB}/pandas/tests/arrays/test_datetimelike.pyc
1250${PYSITELIB}/pandas/tests/arrays/test_datetimelike.pyo 1351${PYSITELIB}/pandas/tests/arrays/test_datetimelike.pyo
1251${PYSITELIB}/pandas/tests/arrays/test_datetimes.py 1352${PYSITELIB}/pandas/tests/arrays/test_datetimes.py
1252${PYSITELIB}/pandas/tests/arrays/test_datetimes.pyc 1353${PYSITELIB}/pandas/tests/arrays/test_datetimes.pyc
1253${PYSITELIB}/pandas/tests/arrays/test_datetimes.pyo 1354${PYSITELIB}/pandas/tests/arrays/test_datetimes.pyo
1254${PYSITELIB}/pandas/tests/arrays/test_ndarray_backed.py 1355${PYSITELIB}/pandas/tests/arrays/test_ndarray_backed.py
1255${PYSITELIB}/pandas/tests/arrays/test_ndarray_backed.pyc 1356${PYSITELIB}/pandas/tests/arrays/test_ndarray_backed.pyc
1256${PYSITELIB}/pandas/tests/arrays/test_ndarray_backed.pyo 1357${PYSITELIB}/pandas/tests/arrays/test_ndarray_backed.pyo
1257${PYSITELIB}/pandas/tests/arrays/test_numpy.py 
1258${PYSITELIB}/pandas/tests/arrays/test_numpy.pyc 
1259${PYSITELIB}/pandas/tests/arrays/test_numpy.pyo 
1260${PYSITELIB}/pandas/tests/arrays/test_period.py 1358${PYSITELIB}/pandas/tests/arrays/test_period.py
1261${PYSITELIB}/pandas/tests/arrays/test_period.pyc 1359${PYSITELIB}/pandas/tests/arrays/test_period.pyc
1262${PYSITELIB}/pandas/tests/arrays/test_period.pyo 1360${PYSITELIB}/pandas/tests/arrays/test_period.pyo
1263${PYSITELIB}/pandas/tests/arrays/test_timedeltas.py 1361${PYSITELIB}/pandas/tests/arrays/test_timedeltas.py
1264${PYSITELIB}/pandas/tests/arrays/test_timedeltas.pyc 1362${PYSITELIB}/pandas/tests/arrays/test_timedeltas.pyc
1265${PYSITELIB}/pandas/tests/arrays/test_timedeltas.pyo 1363${PYSITELIB}/pandas/tests/arrays/test_timedeltas.pyo
1266${PYSITELIB}/pandas/tests/arrays/timedeltas/__init__.py 1364${PYSITELIB}/pandas/tests/arrays/timedeltas/__init__.py
1267${PYSITELIB}/pandas/tests/arrays/timedeltas/__init__.pyc 1365${PYSITELIB}/pandas/tests/arrays/timedeltas/__init__.pyc
1268${PYSITELIB}/pandas/tests/arrays/timedeltas/__init__.pyo 1366${PYSITELIB}/pandas/tests/arrays/timedeltas/__init__.pyo
1269${PYSITELIB}/pandas/tests/arrays/timedeltas/test_constructors.py 1367${PYSITELIB}/pandas/tests/arrays/timedeltas/test_constructors.py
1270${PYSITELIB}/pandas/tests/arrays/timedeltas/test_constructors.pyc 1368${PYSITELIB}/pandas/tests/arrays/timedeltas/test_constructors.pyc
1271${PYSITELIB}/pandas/tests/arrays/timedeltas/test_constructors.pyo 1369${PYSITELIB}/pandas/tests/arrays/timedeltas/test_constructors.pyo
1272${PYSITELIB}/pandas/tests/arrays/timedeltas/test_reductions.py 1370${PYSITELIB}/pandas/tests/arrays/timedeltas/test_reductions.py
@@ -1313,32 +1411,53 @@ ${PYSITELIB}/pandas/tests/config/__init_ @@ -1313,32 +1411,53 @@ ${PYSITELIB}/pandas/tests/config/__init_
1313${PYSITELIB}/pandas/tests/config/__init__.pyo 1411${PYSITELIB}/pandas/tests/config/__init__.pyo
1314${PYSITELIB}/pandas/tests/config/test_config.py 1412${PYSITELIB}/pandas/tests/config/test_config.py
1315${PYSITELIB}/pandas/tests/config/test_config.pyc 1413${PYSITELIB}/pandas/tests/config/test_config.pyc
1316${PYSITELIB}/pandas/tests/config/test_config.pyo 1414${PYSITELIB}/pandas/tests/config/test_config.pyo
1317${PYSITELIB}/pandas/tests/config/test_localization.py 1415${PYSITELIB}/pandas/tests/config/test_localization.py
1318${PYSITELIB}/pandas/tests/config/test_localization.pyc 1416${PYSITELIB}/pandas/tests/config/test_localization.pyc
1319${PYSITELIB}/pandas/tests/config/test_localization.pyo 1417${PYSITELIB}/pandas/tests/config/test_localization.pyo
1320${PYSITELIB}/pandas/tests/construction/__init__.py 1418${PYSITELIB}/pandas/tests/construction/__init__.py
1321${PYSITELIB}/pandas/tests/construction/__init__.pyc 1419${PYSITELIB}/pandas/tests/construction/__init__.pyc
1322${PYSITELIB}/pandas/tests/construction/__init__.pyo 1420${PYSITELIB}/pandas/tests/construction/__init__.pyo
1323${PYSITELIB}/pandas/tests/construction/test_extract_array.py 1421${PYSITELIB}/pandas/tests/construction/test_extract_array.py
1324${PYSITELIB}/pandas/tests/construction/test_extract_array.pyc 1422${PYSITELIB}/pandas/tests/construction/test_extract_array.pyc
1325${PYSITELIB}/pandas/tests/construction/test_extract_array.pyo 1423${PYSITELIB}/pandas/tests/construction/test_extract_array.pyo
 1424${PYSITELIB}/pandas/tests/copy_view/__init__.py
 1425${PYSITELIB}/pandas/tests/copy_view/__init__.pyc
 1426${PYSITELIB}/pandas/tests/copy_view/__init__.pyo
 1427${PYSITELIB}/pandas/tests/copy_view/test_indexing.py
 1428${PYSITELIB}/pandas/tests/copy_view/test_indexing.pyc
 1429${PYSITELIB}/pandas/tests/copy_view/test_indexing.pyo
 1430${PYSITELIB}/pandas/tests/copy_view/test_internals.py
 1431${PYSITELIB}/pandas/tests/copy_view/test_internals.pyc
 1432${PYSITELIB}/pandas/tests/copy_view/test_internals.pyo
 1433${PYSITELIB}/pandas/tests/copy_view/test_methods.py
 1434${PYSITELIB}/pandas/tests/copy_view/test_methods.pyc
 1435${PYSITELIB}/pandas/tests/copy_view/test_methods.pyo
 1436${PYSITELIB}/pandas/tests/copy_view/test_setitem.py
 1437${PYSITELIB}/pandas/tests/copy_view/test_setitem.pyc
 1438${PYSITELIB}/pandas/tests/copy_view/test_setitem.pyo
 1439${PYSITELIB}/pandas/tests/copy_view/util.py
 1440${PYSITELIB}/pandas/tests/copy_view/util.pyc
 1441${PYSITELIB}/pandas/tests/copy_view/util.pyo
1326${PYSITELIB}/pandas/tests/dtypes/__init__.py 1442${PYSITELIB}/pandas/tests/dtypes/__init__.py
1327${PYSITELIB}/pandas/tests/dtypes/__init__.pyc 1443${PYSITELIB}/pandas/tests/dtypes/__init__.pyc
1328${PYSITELIB}/pandas/tests/dtypes/__init__.pyo 1444${PYSITELIB}/pandas/tests/dtypes/__init__.pyo
1329${PYSITELIB}/pandas/tests/dtypes/cast/__init__.py 1445${PYSITELIB}/pandas/tests/dtypes/cast/__init__.py
1330${PYSITELIB}/pandas/tests/dtypes/cast/__init__.pyc 1446${PYSITELIB}/pandas/tests/dtypes/cast/__init__.pyc
1331${PYSITELIB}/pandas/tests/dtypes/cast/__init__.pyo 1447${PYSITELIB}/pandas/tests/dtypes/cast/__init__.pyo
 1448${PYSITELIB}/pandas/tests/dtypes/cast/test_can_hold_element.py
 1449${PYSITELIB}/pandas/tests/dtypes/cast/test_can_hold_element.pyc
 1450${PYSITELIB}/pandas/tests/dtypes/cast/test_can_hold_element.pyo
1332${PYSITELIB}/pandas/tests/dtypes/cast/test_construct_from_scalar.py 1451${PYSITELIB}/pandas/tests/dtypes/cast/test_construct_from_scalar.py
1333${PYSITELIB}/pandas/tests/dtypes/cast/test_construct_from_scalar.pyc 1452${PYSITELIB}/pandas/tests/dtypes/cast/test_construct_from_scalar.pyc
1334${PYSITELIB}/pandas/tests/dtypes/cast/test_construct_from_scalar.pyo 1453${PYSITELIB}/pandas/tests/dtypes/cast/test_construct_from_scalar.pyo
1335${PYSITELIB}/pandas/tests/dtypes/cast/test_construct_ndarray.py 1454${PYSITELIB}/pandas/tests/dtypes/cast/test_construct_ndarray.py
1336${PYSITELIB}/pandas/tests/dtypes/cast/test_construct_ndarray.pyc 1455${PYSITELIB}/pandas/tests/dtypes/cast/test_construct_ndarray.pyc
1337${PYSITELIB}/pandas/tests/dtypes/cast/test_construct_ndarray.pyo 1456${PYSITELIB}/pandas/tests/dtypes/cast/test_construct_ndarray.pyo
1338${PYSITELIB}/pandas/tests/dtypes/cast/test_construct_object_arr.py 1457${PYSITELIB}/pandas/tests/dtypes/cast/test_construct_object_arr.py
1339${PYSITELIB}/pandas/tests/dtypes/cast/test_construct_object_arr.pyc 1458${PYSITELIB}/pandas/tests/dtypes/cast/test_construct_object_arr.pyc
1340${PYSITELIB}/pandas/tests/dtypes/cast/test_construct_object_arr.pyo 1459${PYSITELIB}/pandas/tests/dtypes/cast/test_construct_object_arr.pyo
1341${PYSITELIB}/pandas/tests/dtypes/cast/test_dict_compat.py 1460${PYSITELIB}/pandas/tests/dtypes/cast/test_dict_compat.py
1342${PYSITELIB}/pandas/tests/dtypes/cast/test_dict_compat.pyc 1461${PYSITELIB}/pandas/tests/dtypes/cast/test_dict_compat.pyc
1343${PYSITELIB}/pandas/tests/dtypes/cast/test_dict_compat.pyo 1462${PYSITELIB}/pandas/tests/dtypes/cast/test_dict_compat.pyo
1344${PYSITELIB}/pandas/tests/dtypes/cast/test_downcast.py 1463${PYSITELIB}/pandas/tests/dtypes/cast/test_downcast.py
@@ -1370,26 +1489,35 @@ ${PYSITELIB}/pandas/tests/dtypes/test_dt @@ -1370,26 +1489,35 @@ ${PYSITELIB}/pandas/tests/dtypes/test_dt
1370${PYSITELIB}/pandas/tests/dtypes/test_dtypes.pyo 1489${PYSITELIB}/pandas/tests/dtypes/test_dtypes.pyo
1371${PYSITELIB}/pandas/tests/dtypes/test_generic.py 1490${PYSITELIB}/pandas/tests/dtypes/test_generic.py
1372${PYSITELIB}/pandas/tests/dtypes/test_generic.pyc 1491${PYSITELIB}/pandas/tests/dtypes/test_generic.pyc
1373${PYSITELIB}/pandas/tests/dtypes/test_generic.pyo 1492${PYSITELIB}/pandas/tests/dtypes/test_generic.pyo
1374${PYSITELIB}/pandas/tests/dtypes/test_inference.py 1493${PYSITELIB}/pandas/tests/dtypes/test_inference.py
1375${PYSITELIB}/pandas/tests/dtypes/test_inference.pyc 1494${PYSITELIB}/pandas/tests/dtypes/test_inference.pyc
1376${PYSITELIB}/pandas/tests/dtypes/test_inference.pyo 1495${PYSITELIB}/pandas/tests/dtypes/test_inference.pyo
1377${PYSITELIB}/pandas/tests/dtypes/test_missing.py 1496${PYSITELIB}/pandas/tests/dtypes/test_missing.py
1378${PYSITELIB}/pandas/tests/dtypes/test_missing.pyc 1497${PYSITELIB}/pandas/tests/dtypes/test_missing.pyc
1379${PYSITELIB}/pandas/tests/dtypes/test_missing.pyo 1498${PYSITELIB}/pandas/tests/dtypes/test_missing.pyo
1380${PYSITELIB}/pandas/tests/extension/__init__.py 1499${PYSITELIB}/pandas/tests/extension/__init__.py
1381${PYSITELIB}/pandas/tests/extension/__init__.pyc 1500${PYSITELIB}/pandas/tests/extension/__init__.pyc
1382${PYSITELIB}/pandas/tests/extension/__init__.pyo 1501${PYSITELIB}/pandas/tests/extension/__init__.pyo
 1502${PYSITELIB}/pandas/tests/extension/array_with_attr/__init__.py
 1503${PYSITELIB}/pandas/tests/extension/array_with_attr/__init__.pyc
 1504${PYSITELIB}/pandas/tests/extension/array_with_attr/__init__.pyo
 1505${PYSITELIB}/pandas/tests/extension/array_with_attr/array.py
 1506${PYSITELIB}/pandas/tests/extension/array_with_attr/array.pyc
 1507${PYSITELIB}/pandas/tests/extension/array_with_attr/array.pyo
 1508${PYSITELIB}/pandas/tests/extension/array_with_attr/test_array_with_attr.py
 1509${PYSITELIB}/pandas/tests/extension/array_with_attr/test_array_with_attr.pyc
 1510${PYSITELIB}/pandas/tests/extension/array_with_attr/test_array_with_attr.pyo
1383${PYSITELIB}/pandas/tests/extension/arrow/__init__.py 1511${PYSITELIB}/pandas/tests/extension/arrow/__init__.py
1384${PYSITELIB}/pandas/tests/extension/arrow/__init__.pyc 1512${PYSITELIB}/pandas/tests/extension/arrow/__init__.pyc
1385${PYSITELIB}/pandas/tests/extension/arrow/__init__.pyo 1513${PYSITELIB}/pandas/tests/extension/arrow/__init__.pyo
1386${PYSITELIB}/pandas/tests/extension/arrow/arrays.py 1514${PYSITELIB}/pandas/tests/extension/arrow/arrays.py
1387${PYSITELIB}/pandas/tests/extension/arrow/arrays.pyc 1515${PYSITELIB}/pandas/tests/extension/arrow/arrays.pyc
1388${PYSITELIB}/pandas/tests/extension/arrow/arrays.pyo 1516${PYSITELIB}/pandas/tests/extension/arrow/arrays.pyo
1389${PYSITELIB}/pandas/tests/extension/arrow/test_bool.py 1517${PYSITELIB}/pandas/tests/extension/arrow/test_bool.py
1390${PYSITELIB}/pandas/tests/extension/arrow/test_bool.pyc 1518${PYSITELIB}/pandas/tests/extension/arrow/test_bool.pyc
1391${PYSITELIB}/pandas/tests/extension/arrow/test_bool.pyo 1519${PYSITELIB}/pandas/tests/extension/arrow/test_bool.pyo
1392${PYSITELIB}/pandas/tests/extension/arrow/test_string.py 1520${PYSITELIB}/pandas/tests/extension/arrow/test_string.py
1393${PYSITELIB}/pandas/tests/extension/arrow/test_string.pyc 1521${PYSITELIB}/pandas/tests/extension/arrow/test_string.pyc
1394${PYSITELIB}/pandas/tests/extension/arrow/test_string.pyo 1522${PYSITELIB}/pandas/tests/extension/arrow/test_string.pyo
1395${PYSITELIB}/pandas/tests/extension/arrow/test_timestamp.py 1523${PYSITELIB}/pandas/tests/extension/arrow/test_timestamp.py
@@ -1409,26 +1537,29 @@ ${PYSITELIB}/pandas/tests/extension/base @@ -1409,26 +1537,29 @@ ${PYSITELIB}/pandas/tests/extension/base
1409${PYSITELIB}/pandas/tests/extension/base/constructors.pyo 1537${PYSITELIB}/pandas/tests/extension/base/constructors.pyo
1410${PYSITELIB}/pandas/tests/extension/base/dim2.py 1538${PYSITELIB}/pandas/tests/extension/base/dim2.py
1411${PYSITELIB}/pandas/tests/extension/base/dim2.pyc 1539${PYSITELIB}/pandas/tests/extension/base/dim2.pyc
1412${PYSITELIB}/pandas/tests/extension/base/dim2.pyo 1540${PYSITELIB}/pandas/tests/extension/base/dim2.pyo
1413${PYSITELIB}/pandas/tests/extension/base/dtype.py 1541${PYSITELIB}/pandas/tests/extension/base/dtype.py
1414${PYSITELIB}/pandas/tests/extension/base/dtype.pyc 1542${PYSITELIB}/pandas/tests/extension/base/dtype.pyc
1415${PYSITELIB}/pandas/tests/extension/base/dtype.pyo 1543${PYSITELIB}/pandas/tests/extension/base/dtype.pyo
1416${PYSITELIB}/pandas/tests/extension/base/getitem.py 1544${PYSITELIB}/pandas/tests/extension/base/getitem.py
1417${PYSITELIB}/pandas/tests/extension/base/getitem.pyc 1545${PYSITELIB}/pandas/tests/extension/base/getitem.pyc
1418${PYSITELIB}/pandas/tests/extension/base/getitem.pyo 1546${PYSITELIB}/pandas/tests/extension/base/getitem.pyo
1419${PYSITELIB}/pandas/tests/extension/base/groupby.py 1547${PYSITELIB}/pandas/tests/extension/base/groupby.py
1420${PYSITELIB}/pandas/tests/extension/base/groupby.pyc 1548${PYSITELIB}/pandas/tests/extension/base/groupby.pyc
1421${PYSITELIB}/pandas/tests/extension/base/groupby.pyo 1549${PYSITELIB}/pandas/tests/extension/base/groupby.pyo
 1550${PYSITELIB}/pandas/tests/extension/base/index.py
 1551${PYSITELIB}/pandas/tests/extension/base/index.pyc
 1552${PYSITELIB}/pandas/tests/extension/base/index.pyo
1422${PYSITELIB}/pandas/tests/extension/base/interface.py 1553${PYSITELIB}/pandas/tests/extension/base/interface.py
1423${PYSITELIB}/pandas/tests/extension/base/interface.pyc 1554${PYSITELIB}/pandas/tests/extension/base/interface.pyc
1424${PYSITELIB}/pandas/tests/extension/base/interface.pyo 1555${PYSITELIB}/pandas/tests/extension/base/interface.pyo
1425${PYSITELIB}/pandas/tests/extension/base/io.py 1556${PYSITELIB}/pandas/tests/extension/base/io.py
1426${PYSITELIB}/pandas/tests/extension/base/io.pyc 1557${PYSITELIB}/pandas/tests/extension/base/io.pyc
1427${PYSITELIB}/pandas/tests/extension/base/io.pyo 1558${PYSITELIB}/pandas/tests/extension/base/io.pyo
1428${PYSITELIB}/pandas/tests/extension/base/methods.py 1559${PYSITELIB}/pandas/tests/extension/base/methods.py
1429${PYSITELIB}/pandas/tests/extension/base/methods.pyc 1560${PYSITELIB}/pandas/tests/extension/base/methods.pyc
1430${PYSITELIB}/pandas/tests/extension/base/methods.pyo 1561${PYSITELIB}/pandas/tests/extension/base/methods.pyo
1431${PYSITELIB}/pandas/tests/extension/base/missing.py 1562${PYSITELIB}/pandas/tests/extension/base/missing.py
1432${PYSITELIB}/pandas/tests/extension/base/missing.pyc 1563${PYSITELIB}/pandas/tests/extension/base/missing.pyc
1433${PYSITELIB}/pandas/tests/extension/base/missing.pyo 1564${PYSITELIB}/pandas/tests/extension/base/missing.pyo
1434${PYSITELIB}/pandas/tests/extension/base/ops.py 1565${PYSITELIB}/pandas/tests/extension/base/ops.py
@@ -1439,26 +1570,32 @@ ${PYSITELIB}/pandas/tests/extension/base @@ -1439,26 +1570,32 @@ ${PYSITELIB}/pandas/tests/extension/base
1439${PYSITELIB}/pandas/tests/extension/base/printing.pyo 1570${PYSITELIB}/pandas/tests/extension/base/printing.pyo
1440${PYSITELIB}/pandas/tests/extension/base/reduce.py 1571${PYSITELIB}/pandas/tests/extension/base/reduce.py
1441${PYSITELIB}/pandas/tests/extension/base/reduce.pyc 1572${PYSITELIB}/pandas/tests/extension/base/reduce.pyc
1442${PYSITELIB}/pandas/tests/extension/base/reduce.pyo 1573${PYSITELIB}/pandas/tests/extension/base/reduce.pyo
1443${PYSITELIB}/pandas/tests/extension/base/reshaping.py 1574${PYSITELIB}/pandas/tests/extension/base/reshaping.py
1444${PYSITELIB}/pandas/tests/extension/base/reshaping.pyc 1575${PYSITELIB}/pandas/tests/extension/base/reshaping.pyc
1445${PYSITELIB}/pandas/tests/extension/base/reshaping.pyo 1576${PYSITELIB}/pandas/tests/extension/base/reshaping.pyo
1446${PYSITELIB}/pandas/tests/extension/base/setitem.py 1577${PYSITELIB}/pandas/tests/extension/base/setitem.py
1447${PYSITELIB}/pandas/tests/extension/base/setitem.pyc 1578${PYSITELIB}/pandas/tests/extension/base/setitem.pyc
1448${PYSITELIB}/pandas/tests/extension/base/setitem.pyo 1579${PYSITELIB}/pandas/tests/extension/base/setitem.pyo
1449${PYSITELIB}/pandas/tests/extension/conftest.py 1580${PYSITELIB}/pandas/tests/extension/conftest.py
1450${PYSITELIB}/pandas/tests/extension/conftest.pyc 1581${PYSITELIB}/pandas/tests/extension/conftest.pyc
1451${PYSITELIB}/pandas/tests/extension/conftest.pyo 1582${PYSITELIB}/pandas/tests/extension/conftest.pyo
 1583${PYSITELIB}/pandas/tests/extension/date/__init__.py
 1584${PYSITELIB}/pandas/tests/extension/date/__init__.pyc
 1585${PYSITELIB}/pandas/tests/extension/date/__init__.pyo
 1586${PYSITELIB}/pandas/tests/extension/date/array.py
 1587${PYSITELIB}/pandas/tests/extension/date/array.pyc
 1588${PYSITELIB}/pandas/tests/extension/date/array.pyo
1452${PYSITELIB}/pandas/tests/extension/decimal/__init__.py 1589${PYSITELIB}/pandas/tests/extension/decimal/__init__.py
1453${PYSITELIB}/pandas/tests/extension/decimal/__init__.pyc 1590${PYSITELIB}/pandas/tests/extension/decimal/__init__.pyc
1454${PYSITELIB}/pandas/tests/extension/decimal/__init__.pyo 1591${PYSITELIB}/pandas/tests/extension/decimal/__init__.pyo
1455${PYSITELIB}/pandas/tests/extension/decimal/array.py 1592${PYSITELIB}/pandas/tests/extension/decimal/array.py
1456${PYSITELIB}/pandas/tests/extension/decimal/array.pyc 1593${PYSITELIB}/pandas/tests/extension/decimal/array.pyc
1457${PYSITELIB}/pandas/tests/extension/decimal/array.pyo 1594${PYSITELIB}/pandas/tests/extension/decimal/array.pyo
1458${PYSITELIB}/pandas/tests/extension/decimal/test_decimal.py 1595${PYSITELIB}/pandas/tests/extension/decimal/test_decimal.py
1459${PYSITELIB}/pandas/tests/extension/decimal/test_decimal.pyc 1596${PYSITELIB}/pandas/tests/extension/decimal/test_decimal.pyc
1460${PYSITELIB}/pandas/tests/extension/decimal/test_decimal.pyo 1597${PYSITELIB}/pandas/tests/extension/decimal/test_decimal.pyo
1461${PYSITELIB}/pandas/tests/extension/json/__init__.py 1598${PYSITELIB}/pandas/tests/extension/json/__init__.py
1462${PYSITELIB}/pandas/tests/extension/json/__init__.pyc 1599${PYSITELIB}/pandas/tests/extension/json/__init__.pyc
1463${PYSITELIB}/pandas/tests/extension/json/__init__.pyo 1600${PYSITELIB}/pandas/tests/extension/json/__init__.pyo
1464${PYSITELIB}/pandas/tests/extension/json/array.py 1601${PYSITELIB}/pandas/tests/extension/json/array.py
@@ -1466,26 +1603,29 @@ ${PYSITELIB}/pandas/tests/extension/json @@ -1466,26 +1603,29 @@ ${PYSITELIB}/pandas/tests/extension/json
1466${PYSITELIB}/pandas/tests/extension/json/array.pyo 1603${PYSITELIB}/pandas/tests/extension/json/array.pyo
1467${PYSITELIB}/pandas/tests/extension/json/test_json.py 1604${PYSITELIB}/pandas/tests/extension/json/test_json.py
1468${PYSITELIB}/pandas/tests/extension/json/test_json.pyc 1605${PYSITELIB}/pandas/tests/extension/json/test_json.pyc
1469${PYSITELIB}/pandas/tests/extension/json/test_json.pyo 1606${PYSITELIB}/pandas/tests/extension/json/test_json.pyo
1470${PYSITELIB}/pandas/tests/extension/list/__init__.py 1607${PYSITELIB}/pandas/tests/extension/list/__init__.py
1471${PYSITELIB}/pandas/tests/extension/list/__init__.pyc 1608${PYSITELIB}/pandas/tests/extension/list/__init__.pyc
1472${PYSITELIB}/pandas/tests/extension/list/__init__.pyo 1609${PYSITELIB}/pandas/tests/extension/list/__init__.pyo
1473${PYSITELIB}/pandas/tests/extension/list/array.py 1610${PYSITELIB}/pandas/tests/extension/list/array.py
1474${PYSITELIB}/pandas/tests/extension/list/array.pyc 1611${PYSITELIB}/pandas/tests/extension/list/array.pyc
1475${PYSITELIB}/pandas/tests/extension/list/array.pyo 1612${PYSITELIB}/pandas/tests/extension/list/array.pyo
1476${PYSITELIB}/pandas/tests/extension/list/test_list.py 1613${PYSITELIB}/pandas/tests/extension/list/test_list.py
1477${PYSITELIB}/pandas/tests/extension/list/test_list.pyc 1614${PYSITELIB}/pandas/tests/extension/list/test_list.pyc
1478${PYSITELIB}/pandas/tests/extension/list/test_list.pyo 1615${PYSITELIB}/pandas/tests/extension/list/test_list.pyo
 1616${PYSITELIB}/pandas/tests/extension/test_arrow.py
 1617${PYSITELIB}/pandas/tests/extension/test_arrow.pyc
 1618${PYSITELIB}/pandas/tests/extension/test_arrow.pyo
1479${PYSITELIB}/pandas/tests/extension/test_boolean.py 1619${PYSITELIB}/pandas/tests/extension/test_boolean.py
1480${PYSITELIB}/pandas/tests/extension/test_boolean.pyc 1620${PYSITELIB}/pandas/tests/extension/test_boolean.pyc
1481${PYSITELIB}/pandas/tests/extension/test_boolean.pyo 1621${PYSITELIB}/pandas/tests/extension/test_boolean.pyo
1482${PYSITELIB}/pandas/tests/extension/test_categorical.py 1622${PYSITELIB}/pandas/tests/extension/test_categorical.py
1483${PYSITELIB}/pandas/tests/extension/test_categorical.pyc 1623${PYSITELIB}/pandas/tests/extension/test_categorical.pyc
1484${PYSITELIB}/pandas/tests/extension/test_categorical.pyo 1624${PYSITELIB}/pandas/tests/extension/test_categorical.pyo
1485${PYSITELIB}/pandas/tests/extension/test_common.py 1625${PYSITELIB}/pandas/tests/extension/test_common.py
1486${PYSITELIB}/pandas/tests/extension/test_common.pyc 1626${PYSITELIB}/pandas/tests/extension/test_common.pyc
1487${PYSITELIB}/pandas/tests/extension/test_common.pyo 1627${PYSITELIB}/pandas/tests/extension/test_common.pyo
1488${PYSITELIB}/pandas/tests/extension/test_datetime.py 1628${PYSITELIB}/pandas/tests/extension/test_datetime.py
1489${PYSITELIB}/pandas/tests/extension/test_datetime.pyc 1629${PYSITELIB}/pandas/tests/extension/test_datetime.pyc
1490${PYSITELIB}/pandas/tests/extension/test_datetime.pyo 1630${PYSITELIB}/pandas/tests/extension/test_datetime.pyo
1491${PYSITELIB}/pandas/tests/extension/test_extension.py 1631${PYSITELIB}/pandas/tests/extension/test_extension.py
@@ -1526,26 +1666,29 @@ ${PYSITELIB}/pandas/tests/frame/conftest @@ -1526,26 +1666,29 @@ ${PYSITELIB}/pandas/tests/frame/conftest
1526${PYSITELIB}/pandas/tests/frame/conftest.pyo 1666${PYSITELIB}/pandas/tests/frame/conftest.pyo
1527${PYSITELIB}/pandas/tests/frame/constructors/__init__.py 1667${PYSITELIB}/pandas/tests/frame/constructors/__init__.py
1528${PYSITELIB}/pandas/tests/frame/constructors/__init__.pyc 1668${PYSITELIB}/pandas/tests/frame/constructors/__init__.pyc
1529${PYSITELIB}/pandas/tests/frame/constructors/__init__.pyo 1669${PYSITELIB}/pandas/tests/frame/constructors/__init__.pyo
1530${PYSITELIB}/pandas/tests/frame/constructors/test_from_dict.py 1670${PYSITELIB}/pandas/tests/frame/constructors/test_from_dict.py
1531${PYSITELIB}/pandas/tests/frame/constructors/test_from_dict.pyc 1671${PYSITELIB}/pandas/tests/frame/constructors/test_from_dict.pyc
1532${PYSITELIB}/pandas/tests/frame/constructors/test_from_dict.pyo 1672${PYSITELIB}/pandas/tests/frame/constructors/test_from_dict.pyo
1533${PYSITELIB}/pandas/tests/frame/constructors/test_from_records.py 1673${PYSITELIB}/pandas/tests/frame/constructors/test_from_records.py
1534${PYSITELIB}/pandas/tests/frame/constructors/test_from_records.pyc 1674${PYSITELIB}/pandas/tests/frame/constructors/test_from_records.pyc
1535${PYSITELIB}/pandas/tests/frame/constructors/test_from_records.pyo 1675${PYSITELIB}/pandas/tests/frame/constructors/test_from_records.pyo
1536${PYSITELIB}/pandas/tests/frame/indexing/__init__.py 1676${PYSITELIB}/pandas/tests/frame/indexing/__init__.py
1537${PYSITELIB}/pandas/tests/frame/indexing/__init__.pyc 1677${PYSITELIB}/pandas/tests/frame/indexing/__init__.pyc
1538${PYSITELIB}/pandas/tests/frame/indexing/__init__.pyo 1678${PYSITELIB}/pandas/tests/frame/indexing/__init__.pyo
 1679${PYSITELIB}/pandas/tests/frame/indexing/test_coercion.py
 1680${PYSITELIB}/pandas/tests/frame/indexing/test_coercion.pyc
 1681${PYSITELIB}/pandas/tests/frame/indexing/test_coercion.pyo
1539${PYSITELIB}/pandas/tests/frame/indexing/test_delitem.py 1682${PYSITELIB}/pandas/tests/frame/indexing/test_delitem.py
1540${PYSITELIB}/pandas/tests/frame/indexing/test_delitem.pyc 1683${PYSITELIB}/pandas/tests/frame/indexing/test_delitem.pyc
1541${PYSITELIB}/pandas/tests/frame/indexing/test_delitem.pyo 1684${PYSITELIB}/pandas/tests/frame/indexing/test_delitem.pyo
1542${PYSITELIB}/pandas/tests/frame/indexing/test_get.py 1685${PYSITELIB}/pandas/tests/frame/indexing/test_get.py
1543${PYSITELIB}/pandas/tests/frame/indexing/test_get.pyc 1686${PYSITELIB}/pandas/tests/frame/indexing/test_get.pyc
1544${PYSITELIB}/pandas/tests/frame/indexing/test_get.pyo 1687${PYSITELIB}/pandas/tests/frame/indexing/test_get.pyo
1545${PYSITELIB}/pandas/tests/frame/indexing/test_get_value.py 1688${PYSITELIB}/pandas/tests/frame/indexing/test_get_value.py
1546${PYSITELIB}/pandas/tests/frame/indexing/test_get_value.pyc 1689${PYSITELIB}/pandas/tests/frame/indexing/test_get_value.pyc
1547${PYSITELIB}/pandas/tests/frame/indexing/test_get_value.pyo 1690${PYSITELIB}/pandas/tests/frame/indexing/test_get_value.pyo
1548${PYSITELIB}/pandas/tests/frame/indexing/test_getitem.py 1691${PYSITELIB}/pandas/tests/frame/indexing/test_getitem.py
1549${PYSITELIB}/pandas/tests/frame/indexing/test_getitem.pyc 1692${PYSITELIB}/pandas/tests/frame/indexing/test_getitem.pyc
1550${PYSITELIB}/pandas/tests/frame/indexing/test_getitem.pyo 1693${PYSITELIB}/pandas/tests/frame/indexing/test_getitem.pyo
1551${PYSITELIB}/pandas/tests/frame/indexing/test_indexing.py 1694${PYSITELIB}/pandas/tests/frame/indexing/test_indexing.py
@@ -1928,59 +2071,68 @@ ${PYSITELIB}/pandas/tests/groupby/test_a @@ -1928,59 +2071,68 @@ ${PYSITELIB}/pandas/tests/groupby/test_a
1928${PYSITELIB}/pandas/tests/groupby/test_apply_mutate.pyo 2071${PYSITELIB}/pandas/tests/groupby/test_apply_mutate.pyo
1929${PYSITELIB}/pandas/tests/groupby/test_bin_groupby.py 2072${PYSITELIB}/pandas/tests/groupby/test_bin_groupby.py
1930${PYSITELIB}/pandas/tests/groupby/test_bin_groupby.pyc 2073${PYSITELIB}/pandas/tests/groupby/test_bin_groupby.pyc
1931${PYSITELIB}/pandas/tests/groupby/test_bin_groupby.pyo 2074${PYSITELIB}/pandas/tests/groupby/test_bin_groupby.pyo
1932${PYSITELIB}/pandas/tests/groupby/test_categorical.py 2075${PYSITELIB}/pandas/tests/groupby/test_categorical.py
1933${PYSITELIB}/pandas/tests/groupby/test_categorical.pyc 2076${PYSITELIB}/pandas/tests/groupby/test_categorical.pyc
1934${PYSITELIB}/pandas/tests/groupby/test_categorical.pyo 2077${PYSITELIB}/pandas/tests/groupby/test_categorical.pyo
1935${PYSITELIB}/pandas/tests/groupby/test_counting.py 2078${PYSITELIB}/pandas/tests/groupby/test_counting.py
1936${PYSITELIB}/pandas/tests/groupby/test_counting.pyc 2079${PYSITELIB}/pandas/tests/groupby/test_counting.pyc
1937${PYSITELIB}/pandas/tests/groupby/test_counting.pyo 2080${PYSITELIB}/pandas/tests/groupby/test_counting.pyo
1938${PYSITELIB}/pandas/tests/groupby/test_filters.py 2081${PYSITELIB}/pandas/tests/groupby/test_filters.py
1939${PYSITELIB}/pandas/tests/groupby/test_filters.pyc 2082${PYSITELIB}/pandas/tests/groupby/test_filters.pyc
1940${PYSITELIB}/pandas/tests/groupby/test_filters.pyo 2083${PYSITELIB}/pandas/tests/groupby/test_filters.pyo
 2084${PYSITELIB}/pandas/tests/groupby/test_frame_value_counts.py
 2085${PYSITELIB}/pandas/tests/groupby/test_frame_value_counts.pyc
 2086${PYSITELIB}/pandas/tests/groupby/test_frame_value_counts.pyo
1941${PYSITELIB}/pandas/tests/groupby/test_function.py 2087${PYSITELIB}/pandas/tests/groupby/test_function.py
1942${PYSITELIB}/pandas/tests/groupby/test_function.pyc 2088${PYSITELIB}/pandas/tests/groupby/test_function.pyc
1943${PYSITELIB}/pandas/tests/groupby/test_function.pyo 2089${PYSITELIB}/pandas/tests/groupby/test_function.pyo
1944${PYSITELIB}/pandas/tests/groupby/test_groupby.py 2090${PYSITELIB}/pandas/tests/groupby/test_groupby.py
1945${PYSITELIB}/pandas/tests/groupby/test_groupby.pyc 2091${PYSITELIB}/pandas/tests/groupby/test_groupby.pyc
1946${PYSITELIB}/pandas/tests/groupby/test_groupby.pyo 2092${PYSITELIB}/pandas/tests/groupby/test_groupby.pyo
1947${PYSITELIB}/pandas/tests/groupby/test_groupby_dropna.py 2093${PYSITELIB}/pandas/tests/groupby/test_groupby_dropna.py
1948${PYSITELIB}/pandas/tests/groupby/test_groupby_dropna.pyc 2094${PYSITELIB}/pandas/tests/groupby/test_groupby_dropna.pyc
1949${PYSITELIB}/pandas/tests/groupby/test_groupby_dropna.pyo 2095${PYSITELIB}/pandas/tests/groupby/test_groupby_dropna.pyo
1950${PYSITELIB}/pandas/tests/groupby/test_groupby_shift_diff.py 2096${PYSITELIB}/pandas/tests/groupby/test_groupby_shift_diff.py
1951${PYSITELIB}/pandas/tests/groupby/test_groupby_shift_diff.pyc 2097${PYSITELIB}/pandas/tests/groupby/test_groupby_shift_diff.pyc
1952${PYSITELIB}/pandas/tests/groupby/test_groupby_shift_diff.pyo 2098${PYSITELIB}/pandas/tests/groupby/test_groupby_shift_diff.pyo
1953${PYSITELIB}/pandas/tests/groupby/test_groupby_subclass.py 2099${PYSITELIB}/pandas/tests/groupby/test_groupby_subclass.py
1954${PYSITELIB}/pandas/tests/groupby/test_groupby_subclass.pyc 2100${PYSITELIB}/pandas/tests/groupby/test_groupby_subclass.pyc
1955${PYSITELIB}/pandas/tests/groupby/test_groupby_subclass.pyo 2101${PYSITELIB}/pandas/tests/groupby/test_groupby_subclass.pyo
1956${PYSITELIB}/pandas/tests/groupby/test_grouping.py 2102${PYSITELIB}/pandas/tests/groupby/test_grouping.py
1957${PYSITELIB}/pandas/tests/groupby/test_grouping.pyc 2103${PYSITELIB}/pandas/tests/groupby/test_grouping.pyc
1958${PYSITELIB}/pandas/tests/groupby/test_grouping.pyo 2104${PYSITELIB}/pandas/tests/groupby/test_grouping.pyo
1959${PYSITELIB}/pandas/tests/groupby/test_index_as_string.py 2105${PYSITELIB}/pandas/tests/groupby/test_index_as_string.py
1960${PYSITELIB}/pandas/tests/groupby/test_index_as_string.pyc 2106${PYSITELIB}/pandas/tests/groupby/test_index_as_string.pyc
1961${PYSITELIB}/pandas/tests/groupby/test_index_as_string.pyo 2107${PYSITELIB}/pandas/tests/groupby/test_index_as_string.pyo
 2108${PYSITELIB}/pandas/tests/groupby/test_indexing.py
 2109${PYSITELIB}/pandas/tests/groupby/test_indexing.pyc
 2110${PYSITELIB}/pandas/tests/groupby/test_indexing.pyo
1962${PYSITELIB}/pandas/tests/groupby/test_libgroupby.py 2111${PYSITELIB}/pandas/tests/groupby/test_libgroupby.py
1963${PYSITELIB}/pandas/tests/groupby/test_libgroupby.pyc 2112${PYSITELIB}/pandas/tests/groupby/test_libgroupby.pyc
1964${PYSITELIB}/pandas/tests/groupby/test_libgroupby.pyo 2113${PYSITELIB}/pandas/tests/groupby/test_libgroupby.pyo
1965${PYSITELIB}/pandas/tests/groupby/test_min_max.py 2114${PYSITELIB}/pandas/tests/groupby/test_min_max.py
1966${PYSITELIB}/pandas/tests/groupby/test_min_max.pyc 2115${PYSITELIB}/pandas/tests/groupby/test_min_max.pyc
1967${PYSITELIB}/pandas/tests/groupby/test_min_max.pyo 2116${PYSITELIB}/pandas/tests/groupby/test_min_max.pyo
1968${PYSITELIB}/pandas/tests/groupby/test_missing.py 2117${PYSITELIB}/pandas/tests/groupby/test_missing.py
1969${PYSITELIB}/pandas/tests/groupby/test_missing.pyc 2118${PYSITELIB}/pandas/tests/groupby/test_missing.pyc
1970${PYSITELIB}/pandas/tests/groupby/test_missing.pyo 2119${PYSITELIB}/pandas/tests/groupby/test_missing.pyo
1971${PYSITELIB}/pandas/tests/groupby/test_nth.py 2120${PYSITELIB}/pandas/tests/groupby/test_nth.py
1972${PYSITELIB}/pandas/tests/groupby/test_nth.pyc 2121${PYSITELIB}/pandas/tests/groupby/test_nth.pyc
1973${PYSITELIB}/pandas/tests/groupby/test_nth.pyo 2122${PYSITELIB}/pandas/tests/groupby/test_nth.pyo
 2123${PYSITELIB}/pandas/tests/groupby/test_numba.py
 2124${PYSITELIB}/pandas/tests/groupby/test_numba.pyc
 2125${PYSITELIB}/pandas/tests/groupby/test_numba.pyo
1974${PYSITELIB}/pandas/tests/groupby/test_nunique.py 2126${PYSITELIB}/pandas/tests/groupby/test_nunique.py
1975${PYSITELIB}/pandas/tests/groupby/test_nunique.pyc 2127${PYSITELIB}/pandas/tests/groupby/test_nunique.pyc
1976${PYSITELIB}/pandas/tests/groupby/test_nunique.pyo 2128${PYSITELIB}/pandas/tests/groupby/test_nunique.pyo
1977${PYSITELIB}/pandas/tests/groupby/test_pipe.py 2129${PYSITELIB}/pandas/tests/groupby/test_pipe.py
1978${PYSITELIB}/pandas/tests/groupby/test_pipe.pyc 2130${PYSITELIB}/pandas/tests/groupby/test_pipe.pyc
1979${PYSITELIB}/pandas/tests/groupby/test_pipe.pyo 2131${PYSITELIB}/pandas/tests/groupby/test_pipe.pyo
1980${PYSITELIB}/pandas/tests/groupby/test_quantile.py 2132${PYSITELIB}/pandas/tests/groupby/test_quantile.py
1981${PYSITELIB}/pandas/tests/groupby/test_quantile.pyc 2133${PYSITELIB}/pandas/tests/groupby/test_quantile.pyc
1982${PYSITELIB}/pandas/tests/groupby/test_quantile.pyo 2134${PYSITELIB}/pandas/tests/groupby/test_quantile.pyo
1983${PYSITELIB}/pandas/tests/groupby/test_rank.py 2135${PYSITELIB}/pandas/tests/groupby/test_rank.py
1984${PYSITELIB}/pandas/tests/groupby/test_rank.pyc 2136${PYSITELIB}/pandas/tests/groupby/test_rank.pyc
1985${PYSITELIB}/pandas/tests/groupby/test_rank.pyo 2137${PYSITELIB}/pandas/tests/groupby/test_rank.pyo
1986${PYSITELIB}/pandas/tests/groupby/test_sample.py 2138${PYSITELIB}/pandas/tests/groupby/test_sample.py
@@ -2009,26 +2161,29 @@ ${PYSITELIB}/pandas/tests/indexes/__init @@ -2009,26 +2161,29 @@ ${PYSITELIB}/pandas/tests/indexes/__init
2009${PYSITELIB}/pandas/tests/indexes/__init__.pyo 2161${PYSITELIB}/pandas/tests/indexes/__init__.pyo
2010${PYSITELIB}/pandas/tests/indexes/base_class/__init__.py 2162${PYSITELIB}/pandas/tests/indexes/base_class/__init__.py
2011${PYSITELIB}/pandas/tests/indexes/base_class/__init__.pyc 2163${PYSITELIB}/pandas/tests/indexes/base_class/__init__.pyc
2012${PYSITELIB}/pandas/tests/indexes/base_class/__init__.pyo 2164${PYSITELIB}/pandas/tests/indexes/base_class/__init__.pyo
2013${PYSITELIB}/pandas/tests/indexes/base_class/test_constructors.py 2165${PYSITELIB}/pandas/tests/indexes/base_class/test_constructors.py
2014${PYSITELIB}/pandas/tests/indexes/base_class/test_constructors.pyc 2166${PYSITELIB}/pandas/tests/indexes/base_class/test_constructors.pyc
2015${PYSITELIB}/pandas/tests/indexes/base_class/test_constructors.pyo 2167${PYSITELIB}/pandas/tests/indexes/base_class/test_constructors.pyo
2016${PYSITELIB}/pandas/tests/indexes/base_class/test_formats.py 2168${PYSITELIB}/pandas/tests/indexes/base_class/test_formats.py
2017${PYSITELIB}/pandas/tests/indexes/base_class/test_formats.pyc 2169${PYSITELIB}/pandas/tests/indexes/base_class/test_formats.pyc
2018${PYSITELIB}/pandas/tests/indexes/base_class/test_formats.pyo 2170${PYSITELIB}/pandas/tests/indexes/base_class/test_formats.pyo
2019${PYSITELIB}/pandas/tests/indexes/base_class/test_indexing.py 2171${PYSITELIB}/pandas/tests/indexes/base_class/test_indexing.py
2020${PYSITELIB}/pandas/tests/indexes/base_class/test_indexing.pyc 2172${PYSITELIB}/pandas/tests/indexes/base_class/test_indexing.pyc
2021${PYSITELIB}/pandas/tests/indexes/base_class/test_indexing.pyo 2173${PYSITELIB}/pandas/tests/indexes/base_class/test_indexing.pyo
 2174${PYSITELIB}/pandas/tests/indexes/base_class/test_pickle.py
 2175${PYSITELIB}/pandas/tests/indexes/base_class/test_pickle.pyc
 2176${PYSITELIB}/pandas/tests/indexes/base_class/test_pickle.pyo
2022${PYSITELIB}/pandas/tests/indexes/base_class/test_reshape.py 2177${PYSITELIB}/pandas/tests/indexes/base_class/test_reshape.py
2023${PYSITELIB}/pandas/tests/indexes/base_class/test_reshape.pyc 2178${PYSITELIB}/pandas/tests/indexes/base_class/test_reshape.pyc
2024${PYSITELIB}/pandas/tests/indexes/base_class/test_reshape.pyo 2179${PYSITELIB}/pandas/tests/indexes/base_class/test_reshape.pyo
2025${PYSITELIB}/pandas/tests/indexes/base_class/test_setops.py 2180${PYSITELIB}/pandas/tests/indexes/base_class/test_setops.py
2026${PYSITELIB}/pandas/tests/indexes/base_class/test_setops.pyc 2181${PYSITELIB}/pandas/tests/indexes/base_class/test_setops.pyc
2027${PYSITELIB}/pandas/tests/indexes/base_class/test_setops.pyo 2182${PYSITELIB}/pandas/tests/indexes/base_class/test_setops.pyo
2028${PYSITELIB}/pandas/tests/indexes/base_class/test_where.py 2183${PYSITELIB}/pandas/tests/indexes/base_class/test_where.py
2029${PYSITELIB}/pandas/tests/indexes/base_class/test_where.pyc 2184${PYSITELIB}/pandas/tests/indexes/base_class/test_where.pyc
2030${PYSITELIB}/pandas/tests/indexes/base_class/test_where.pyo 2185${PYSITELIB}/pandas/tests/indexes/base_class/test_where.pyo
2031${PYSITELIB}/pandas/tests/indexes/categorical/__init__.py 2186${PYSITELIB}/pandas/tests/indexes/categorical/__init__.py
2032${PYSITELIB}/pandas/tests/indexes/categorical/__init__.pyc 2187${PYSITELIB}/pandas/tests/indexes/categorical/__init__.pyc
2033${PYSITELIB}/pandas/tests/indexes/categorical/__init__.pyo 2188${PYSITELIB}/pandas/tests/indexes/categorical/__init__.pyo
2034${PYSITELIB}/pandas/tests/indexes/categorical/test_append.py 2189${PYSITELIB}/pandas/tests/indexes/categorical/test_append.py
@@ -2072,26 +2227,29 @@ ${PYSITELIB}/pandas/tests/indexes/dateti @@ -2072,26 +2227,29 @@ ${PYSITELIB}/pandas/tests/indexes/dateti
2072${PYSITELIB}/pandas/tests/indexes/datetimelike.pyo 2227${PYSITELIB}/pandas/tests/indexes/datetimelike.pyo
2073${PYSITELIB}/pandas/tests/indexes/datetimelike_/__init__.py 2228${PYSITELIB}/pandas/tests/indexes/datetimelike_/__init__.py
2074${PYSITELIB}/pandas/tests/indexes/datetimelike_/__init__.pyc 2229${PYSITELIB}/pandas/tests/indexes/datetimelike_/__init__.pyc
2075${PYSITELIB}/pandas/tests/indexes/datetimelike_/__init__.pyo 2230${PYSITELIB}/pandas/tests/indexes/datetimelike_/__init__.pyo
2076${PYSITELIB}/pandas/tests/indexes/datetimelike_/test_drop_duplicates.py 2231${PYSITELIB}/pandas/tests/indexes/datetimelike_/test_drop_duplicates.py
2077${PYSITELIB}/pandas/tests/indexes/datetimelike_/test_drop_duplicates.pyc 2232${PYSITELIB}/pandas/tests/indexes/datetimelike_/test_drop_duplicates.pyc
2078${PYSITELIB}/pandas/tests/indexes/datetimelike_/test_drop_duplicates.pyo 2233${PYSITELIB}/pandas/tests/indexes/datetimelike_/test_drop_duplicates.pyo
2079${PYSITELIB}/pandas/tests/indexes/datetimelike_/test_equals.py 2234${PYSITELIB}/pandas/tests/indexes/datetimelike_/test_equals.py
2080${PYSITELIB}/pandas/tests/indexes/datetimelike_/test_equals.pyc 2235${PYSITELIB}/pandas/tests/indexes/datetimelike_/test_equals.pyc
2081${PYSITELIB}/pandas/tests/indexes/datetimelike_/test_equals.pyo 2236${PYSITELIB}/pandas/tests/indexes/datetimelike_/test_equals.pyo
2082${PYSITELIB}/pandas/tests/indexes/datetimelike_/test_indexing.py 2237${PYSITELIB}/pandas/tests/indexes/datetimelike_/test_indexing.py
2083${PYSITELIB}/pandas/tests/indexes/datetimelike_/test_indexing.pyc 2238${PYSITELIB}/pandas/tests/indexes/datetimelike_/test_indexing.pyc
2084${PYSITELIB}/pandas/tests/indexes/datetimelike_/test_indexing.pyo 2239${PYSITELIB}/pandas/tests/indexes/datetimelike_/test_indexing.pyo
 2240${PYSITELIB}/pandas/tests/indexes/datetimelike_/test_is_monotonic.py
 2241${PYSITELIB}/pandas/tests/indexes/datetimelike_/test_is_monotonic.pyc
 2242${PYSITELIB}/pandas/tests/indexes/datetimelike_/test_is_monotonic.pyo
2085${PYSITELIB}/pandas/tests/indexes/datetimelike_/test_nat.py 2243${PYSITELIB}/pandas/tests/indexes/datetimelike_/test_nat.py
2086${PYSITELIB}/pandas/tests/indexes/datetimelike_/test_nat.pyc 2244${PYSITELIB}/pandas/tests/indexes/datetimelike_/test_nat.pyc
2087${PYSITELIB}/pandas/tests/indexes/datetimelike_/test_nat.pyo 2245${PYSITELIB}/pandas/tests/indexes/datetimelike_/test_nat.pyo
2088${PYSITELIB}/pandas/tests/indexes/datetimelike_/test_sort_values.py 2246${PYSITELIB}/pandas/tests/indexes/datetimelike_/test_sort_values.py
2089${PYSITELIB}/pandas/tests/indexes/datetimelike_/test_sort_values.pyc 2247${PYSITELIB}/pandas/tests/indexes/datetimelike_/test_sort_values.pyc
2090${PYSITELIB}/pandas/tests/indexes/datetimelike_/test_sort_values.pyo 2248${PYSITELIB}/pandas/tests/indexes/datetimelike_/test_sort_values.pyo
2091${PYSITELIB}/pandas/tests/indexes/datetimelike_/test_value_counts.py 2249${PYSITELIB}/pandas/tests/indexes/datetimelike_/test_value_counts.py
2092${PYSITELIB}/pandas/tests/indexes/datetimelike_/test_value_counts.pyc 2250${PYSITELIB}/pandas/tests/indexes/datetimelike_/test_value_counts.pyc
2093${PYSITELIB}/pandas/tests/indexes/datetimelike_/test_value_counts.pyo 2251${PYSITELIB}/pandas/tests/indexes/datetimelike_/test_value_counts.pyo
2094${PYSITELIB}/pandas/tests/indexes/datetimes/__init__.py 2252${PYSITELIB}/pandas/tests/indexes/datetimes/__init__.py
2095${PYSITELIB}/pandas/tests/indexes/datetimes/__init__.pyc 2253${PYSITELIB}/pandas/tests/indexes/datetimes/__init__.pyc
2096${PYSITELIB}/pandas/tests/indexes/datetimes/__init__.pyo 2254${PYSITELIB}/pandas/tests/indexes/datetimes/__init__.pyo
2097${PYSITELIB}/pandas/tests/indexes/datetimes/methods/__init__.py 2255${PYSITELIB}/pandas/tests/indexes/datetimes/methods/__init__.py
@@ -2099,26 +2257,29 @@ ${PYSITELIB}/pandas/tests/indexes/dateti @@ -2099,26 +2257,29 @@ ${PYSITELIB}/pandas/tests/indexes/dateti
2099${PYSITELIB}/pandas/tests/indexes/datetimes/methods/__init__.pyo 2257${PYSITELIB}/pandas/tests/indexes/datetimes/methods/__init__.pyo
2100${PYSITELIB}/pandas/tests/indexes/datetimes/methods/test_astype.py 2258${PYSITELIB}/pandas/tests/indexes/datetimes/methods/test_astype.py
2101${PYSITELIB}/pandas/tests/indexes/datetimes/methods/test_astype.pyc 2259${PYSITELIB}/pandas/tests/indexes/datetimes/methods/test_astype.pyc
2102${PYSITELIB}/pandas/tests/indexes/datetimes/methods/test_astype.pyo 2260${PYSITELIB}/pandas/tests/indexes/datetimes/methods/test_astype.pyo
2103${PYSITELIB}/pandas/tests/indexes/datetimes/methods/test_factorize.py 2261${PYSITELIB}/pandas/tests/indexes/datetimes/methods/test_factorize.py
2104${PYSITELIB}/pandas/tests/indexes/datetimes/methods/test_factorize.pyc 2262${PYSITELIB}/pandas/tests/indexes/datetimes/methods/test_factorize.pyc
2105${PYSITELIB}/pandas/tests/indexes/datetimes/methods/test_factorize.pyo 2263${PYSITELIB}/pandas/tests/indexes/datetimes/methods/test_factorize.pyo
2106${PYSITELIB}/pandas/tests/indexes/datetimes/methods/test_fillna.py 2264${PYSITELIB}/pandas/tests/indexes/datetimes/methods/test_fillna.py
2107${PYSITELIB}/pandas/tests/indexes/datetimes/methods/test_fillna.pyc 2265${PYSITELIB}/pandas/tests/indexes/datetimes/methods/test_fillna.pyc
2108${PYSITELIB}/pandas/tests/indexes/datetimes/methods/test_fillna.pyo 2266${PYSITELIB}/pandas/tests/indexes/datetimes/methods/test_fillna.pyo
2109${PYSITELIB}/pandas/tests/indexes/datetimes/methods/test_insert.py 2267${PYSITELIB}/pandas/tests/indexes/datetimes/methods/test_insert.py
2110${PYSITELIB}/pandas/tests/indexes/datetimes/methods/test_insert.pyc 2268${PYSITELIB}/pandas/tests/indexes/datetimes/methods/test_insert.pyc
2111${PYSITELIB}/pandas/tests/indexes/datetimes/methods/test_insert.pyo 2269${PYSITELIB}/pandas/tests/indexes/datetimes/methods/test_insert.pyo
 2270${PYSITELIB}/pandas/tests/indexes/datetimes/methods/test_isocalendar.py
 2271${PYSITELIB}/pandas/tests/indexes/datetimes/methods/test_isocalendar.pyc
 2272${PYSITELIB}/pandas/tests/indexes/datetimes/methods/test_isocalendar.pyo
2112${PYSITELIB}/pandas/tests/indexes/datetimes/methods/test_repeat.py 2273${PYSITELIB}/pandas/tests/indexes/datetimes/methods/test_repeat.py
2113${PYSITELIB}/pandas/tests/indexes/datetimes/methods/test_repeat.pyc 2274${PYSITELIB}/pandas/tests/indexes/datetimes/methods/test_repeat.pyc
2114${PYSITELIB}/pandas/tests/indexes/datetimes/methods/test_repeat.pyo 2275${PYSITELIB}/pandas/tests/indexes/datetimes/methods/test_repeat.pyo
2115${PYSITELIB}/pandas/tests/indexes/datetimes/methods/test_shift.py 2276${PYSITELIB}/pandas/tests/indexes/datetimes/methods/test_shift.py
2116${PYSITELIB}/pandas/tests/indexes/datetimes/methods/test_shift.pyc 2277${PYSITELIB}/pandas/tests/indexes/datetimes/methods/test_shift.pyc
2117${PYSITELIB}/pandas/tests/indexes/datetimes/methods/test_shift.pyo 2278${PYSITELIB}/pandas/tests/indexes/datetimes/methods/test_shift.pyo
2118${PYSITELIB}/pandas/tests/indexes/datetimes/methods/test_snap.py 2279${PYSITELIB}/pandas/tests/indexes/datetimes/methods/test_snap.py
2119${PYSITELIB}/pandas/tests/indexes/datetimes/methods/test_snap.pyc 2280${PYSITELIB}/pandas/tests/indexes/datetimes/methods/test_snap.pyc
2120${PYSITELIB}/pandas/tests/indexes/datetimes/methods/test_snap.pyo 2281${PYSITELIB}/pandas/tests/indexes/datetimes/methods/test_snap.pyo
2121${PYSITELIB}/pandas/tests/indexes/datetimes/methods/test_to_frame.py 2282${PYSITELIB}/pandas/tests/indexes/datetimes/methods/test_to_frame.py
2122${PYSITELIB}/pandas/tests/indexes/datetimes/methods/test_to_frame.pyc 2283${PYSITELIB}/pandas/tests/indexes/datetimes/methods/test_to_frame.pyc
2123${PYSITELIB}/pandas/tests/indexes/datetimes/methods/test_to_frame.pyo 2284${PYSITELIB}/pandas/tests/indexes/datetimes/methods/test_to_frame.pyo
2124${PYSITELIB}/pandas/tests/indexes/datetimes/methods/test_to_period.py 2285${PYSITELIB}/pandas/tests/indexes/datetimes/methods/test_to_period.py
@@ -2138,26 +2299,29 @@ ${PYSITELIB}/pandas/tests/indexes/dateti @@ -2138,26 +2299,29 @@ ${PYSITELIB}/pandas/tests/indexes/dateti
2138${PYSITELIB}/pandas/tests/indexes/datetimes/test_date_range.pyo 2299${PYSITELIB}/pandas/tests/indexes/datetimes/test_date_range.pyo
2139${PYSITELIB}/pandas/tests/indexes/datetimes/test_datetime.py 2300${PYSITELIB}/pandas/tests/indexes/datetimes/test_datetime.py
2140${PYSITELIB}/pandas/tests/indexes/datetimes/test_datetime.pyc 2301${PYSITELIB}/pandas/tests/indexes/datetimes/test_datetime.pyc
2141${PYSITELIB}/pandas/tests/indexes/datetimes/test_datetime.pyo 2302${PYSITELIB}/pandas/tests/indexes/datetimes/test_datetime.pyo
2142${PYSITELIB}/pandas/tests/indexes/datetimes/test_datetimelike.py 2303${PYSITELIB}/pandas/tests/indexes/datetimes/test_datetimelike.py
2143${PYSITELIB}/pandas/tests/indexes/datetimes/test_datetimelike.pyc 2304${PYSITELIB}/pandas/tests/indexes/datetimes/test_datetimelike.pyc
2144${PYSITELIB}/pandas/tests/indexes/datetimes/test_datetimelike.pyo 2305${PYSITELIB}/pandas/tests/indexes/datetimes/test_datetimelike.pyo
2145${PYSITELIB}/pandas/tests/indexes/datetimes/test_delete.py 2306${PYSITELIB}/pandas/tests/indexes/datetimes/test_delete.py
2146${PYSITELIB}/pandas/tests/indexes/datetimes/test_delete.pyc 2307${PYSITELIB}/pandas/tests/indexes/datetimes/test_delete.pyc
2147${PYSITELIB}/pandas/tests/indexes/datetimes/test_delete.pyo 2308${PYSITELIB}/pandas/tests/indexes/datetimes/test_delete.pyo
2148${PYSITELIB}/pandas/tests/indexes/datetimes/test_formats.py 2309${PYSITELIB}/pandas/tests/indexes/datetimes/test_formats.py
2149${PYSITELIB}/pandas/tests/indexes/datetimes/test_formats.pyc 2310${PYSITELIB}/pandas/tests/indexes/datetimes/test_formats.pyc
2150${PYSITELIB}/pandas/tests/indexes/datetimes/test_formats.pyo 2311${PYSITELIB}/pandas/tests/indexes/datetimes/test_formats.pyo
 2312${PYSITELIB}/pandas/tests/indexes/datetimes/test_freq_attr.py
 2313${PYSITELIB}/pandas/tests/indexes/datetimes/test_freq_attr.pyc
 2314${PYSITELIB}/pandas/tests/indexes/datetimes/test_freq_attr.pyo
2151${PYSITELIB}/pandas/tests/indexes/datetimes/test_indexing.py 2315${PYSITELIB}/pandas/tests/indexes/datetimes/test_indexing.py
2152${PYSITELIB}/pandas/tests/indexes/datetimes/test_indexing.pyc 2316${PYSITELIB}/pandas/tests/indexes/datetimes/test_indexing.pyc
2153${PYSITELIB}/pandas/tests/indexes/datetimes/test_indexing.pyo 2317${PYSITELIB}/pandas/tests/indexes/datetimes/test_indexing.pyo
2154${PYSITELIB}/pandas/tests/indexes/datetimes/test_join.py 2318${PYSITELIB}/pandas/tests/indexes/datetimes/test_join.py
2155${PYSITELIB}/pandas/tests/indexes/datetimes/test_join.pyc 2319${PYSITELIB}/pandas/tests/indexes/datetimes/test_join.pyc
2156${PYSITELIB}/pandas/tests/indexes/datetimes/test_join.pyo 2320${PYSITELIB}/pandas/tests/indexes/datetimes/test_join.pyo
2157${PYSITELIB}/pandas/tests/indexes/datetimes/test_map.py 2321${PYSITELIB}/pandas/tests/indexes/datetimes/test_map.py
2158${PYSITELIB}/pandas/tests/indexes/datetimes/test_map.pyc 2322${PYSITELIB}/pandas/tests/indexes/datetimes/test_map.pyc
2159${PYSITELIB}/pandas/tests/indexes/datetimes/test_map.pyo 2323${PYSITELIB}/pandas/tests/indexes/datetimes/test_map.pyo
2160${PYSITELIB}/pandas/tests/indexes/datetimes/test_misc.py 2324${PYSITELIB}/pandas/tests/indexes/datetimes/test_misc.py
2161${PYSITELIB}/pandas/tests/indexes/datetimes/test_misc.pyc 2325${PYSITELIB}/pandas/tests/indexes/datetimes/test_misc.pyc
2162${PYSITELIB}/pandas/tests/indexes/datetimes/test_misc.pyo 2326${PYSITELIB}/pandas/tests/indexes/datetimes/test_misc.pyo
2163${PYSITELIB}/pandas/tests/indexes/datetimes/test_npfuncs.py 2327${PYSITELIB}/pandas/tests/indexes/datetimes/test_npfuncs.py
@@ -2207,26 +2371,32 @@ ${PYSITELIB}/pandas/tests/indexes/interv @@ -2207,26 +2371,32 @@ ${PYSITELIB}/pandas/tests/indexes/interv
2207${PYSITELIB}/pandas/tests/indexes/interval/test_formats.pyo 2371${PYSITELIB}/pandas/tests/indexes/interval/test_formats.pyo
2208${PYSITELIB}/pandas/tests/indexes/interval/test_indexing.py 2372${PYSITELIB}/pandas/tests/indexes/interval/test_indexing.py
2209${PYSITELIB}/pandas/tests/indexes/interval/test_indexing.pyc 2373${PYSITELIB}/pandas/tests/indexes/interval/test_indexing.pyc
2210${PYSITELIB}/pandas/tests/indexes/interval/test_indexing.pyo 2374${PYSITELIB}/pandas/tests/indexes/interval/test_indexing.pyo
2211${PYSITELIB}/pandas/tests/indexes/interval/test_interval.py 2375${PYSITELIB}/pandas/tests/indexes/interval/test_interval.py
2212${PYSITELIB}/pandas/tests/indexes/interval/test_interval.pyc 2376${PYSITELIB}/pandas/tests/indexes/interval/test_interval.pyc
2213${PYSITELIB}/pandas/tests/indexes/interval/test_interval.pyo 2377${PYSITELIB}/pandas/tests/indexes/interval/test_interval.pyo
2214${PYSITELIB}/pandas/tests/indexes/interval/test_interval_range.py 2378${PYSITELIB}/pandas/tests/indexes/interval/test_interval_range.py
2215${PYSITELIB}/pandas/tests/indexes/interval/test_interval_range.pyc 2379${PYSITELIB}/pandas/tests/indexes/interval/test_interval_range.pyc
2216${PYSITELIB}/pandas/tests/indexes/interval/test_interval_range.pyo 2380${PYSITELIB}/pandas/tests/indexes/interval/test_interval_range.pyo
2217${PYSITELIB}/pandas/tests/indexes/interval/test_interval_tree.py 2381${PYSITELIB}/pandas/tests/indexes/interval/test_interval_tree.py
2218${PYSITELIB}/pandas/tests/indexes/interval/test_interval_tree.pyc 2382${PYSITELIB}/pandas/tests/indexes/interval/test_interval_tree.pyc
2219${PYSITELIB}/pandas/tests/indexes/interval/test_interval_tree.pyo 2383${PYSITELIB}/pandas/tests/indexes/interval/test_interval_tree.pyo
 2384${PYSITELIB}/pandas/tests/indexes/interval/test_join.py
 2385${PYSITELIB}/pandas/tests/indexes/interval/test_join.pyc
 2386${PYSITELIB}/pandas/tests/indexes/interval/test_join.pyo
 2387${PYSITELIB}/pandas/tests/indexes/interval/test_pickle.py
 2388${PYSITELIB}/pandas/tests/indexes/interval/test_pickle.pyc
 2389${PYSITELIB}/pandas/tests/indexes/interval/test_pickle.pyo
2220${PYSITELIB}/pandas/tests/indexes/interval/test_setops.py 2390${PYSITELIB}/pandas/tests/indexes/interval/test_setops.py
2221${PYSITELIB}/pandas/tests/indexes/interval/test_setops.pyc 2391${PYSITELIB}/pandas/tests/indexes/interval/test_setops.pyc
2222${PYSITELIB}/pandas/tests/indexes/interval/test_setops.pyo 2392${PYSITELIB}/pandas/tests/indexes/interval/test_setops.pyo
2223${PYSITELIB}/pandas/tests/indexes/multi/__init__.py 2393${PYSITELIB}/pandas/tests/indexes/multi/__init__.py
2224${PYSITELIB}/pandas/tests/indexes/multi/__init__.pyc 2394${PYSITELIB}/pandas/tests/indexes/multi/__init__.pyc
2225${PYSITELIB}/pandas/tests/indexes/multi/__init__.pyo 2395${PYSITELIB}/pandas/tests/indexes/multi/__init__.pyo
2226${PYSITELIB}/pandas/tests/indexes/multi/conftest.py 2396${PYSITELIB}/pandas/tests/indexes/multi/conftest.py
2227${PYSITELIB}/pandas/tests/indexes/multi/conftest.pyc 2397${PYSITELIB}/pandas/tests/indexes/multi/conftest.pyc
2228${PYSITELIB}/pandas/tests/indexes/multi/conftest.pyo 2398${PYSITELIB}/pandas/tests/indexes/multi/conftest.pyo
2229${PYSITELIB}/pandas/tests/indexes/multi/test_analytics.py 2399${PYSITELIB}/pandas/tests/indexes/multi/test_analytics.py
2230${PYSITELIB}/pandas/tests/indexes/multi/test_analytics.pyc 2400${PYSITELIB}/pandas/tests/indexes/multi/test_analytics.pyc
2231${PYSITELIB}/pandas/tests/indexes/multi/test_analytics.pyo 2401${PYSITELIB}/pandas/tests/indexes/multi/test_analytics.pyo
2232${PYSITELIB}/pandas/tests/indexes/multi/test_astype.py 2402${PYSITELIB}/pandas/tests/indexes/multi/test_astype.py
@@ -2279,26 +2449,29 @@ ${PYSITELIB}/pandas/tests/indexes/multi/ @@ -2279,26 +2449,29 @@ ${PYSITELIB}/pandas/tests/indexes/multi/
2279${PYSITELIB}/pandas/tests/indexes/multi/test_lexsort.pyo 2449${PYSITELIB}/pandas/tests/indexes/multi/test_lexsort.pyo
2280${PYSITELIB}/pandas/tests/indexes/multi/test_missing.py 2450${PYSITELIB}/pandas/tests/indexes/multi/test_missing.py
2281${PYSITELIB}/pandas/tests/indexes/multi/test_missing.pyc 2451${PYSITELIB}/pandas/tests/indexes/multi/test_missing.pyc
2282${PYSITELIB}/pandas/tests/indexes/multi/test_missing.pyo 2452${PYSITELIB}/pandas/tests/indexes/multi/test_missing.pyo
2283${PYSITELIB}/pandas/tests/indexes/multi/test_monotonic.py 2453${PYSITELIB}/pandas/tests/indexes/multi/test_monotonic.py
2284${PYSITELIB}/pandas/tests/indexes/multi/test_monotonic.pyc 2454${PYSITELIB}/pandas/tests/indexes/multi/test_monotonic.pyc
2285${PYSITELIB}/pandas/tests/indexes/multi/test_monotonic.pyo 2455${PYSITELIB}/pandas/tests/indexes/multi/test_monotonic.pyo
2286${PYSITELIB}/pandas/tests/indexes/multi/test_names.py 2456${PYSITELIB}/pandas/tests/indexes/multi/test_names.py
2287${PYSITELIB}/pandas/tests/indexes/multi/test_names.pyc 2457${PYSITELIB}/pandas/tests/indexes/multi/test_names.pyc
2288${PYSITELIB}/pandas/tests/indexes/multi/test_names.pyo 2458${PYSITELIB}/pandas/tests/indexes/multi/test_names.pyo
2289${PYSITELIB}/pandas/tests/indexes/multi/test_partial_indexing.py 2459${PYSITELIB}/pandas/tests/indexes/multi/test_partial_indexing.py
2290${PYSITELIB}/pandas/tests/indexes/multi/test_partial_indexing.pyc 2460${PYSITELIB}/pandas/tests/indexes/multi/test_partial_indexing.pyc
2291${PYSITELIB}/pandas/tests/indexes/multi/test_partial_indexing.pyo 2461${PYSITELIB}/pandas/tests/indexes/multi/test_partial_indexing.pyo
 2462${PYSITELIB}/pandas/tests/indexes/multi/test_pickle.py
 2463${PYSITELIB}/pandas/tests/indexes/multi/test_pickle.pyc
 2464${PYSITELIB}/pandas/tests/indexes/multi/test_pickle.pyo
2292${PYSITELIB}/pandas/tests/indexes/multi/test_reindex.py 2465${PYSITELIB}/pandas/tests/indexes/multi/test_reindex.py
2293${PYSITELIB}/pandas/tests/indexes/multi/test_reindex.pyc 2466${PYSITELIB}/pandas/tests/indexes/multi/test_reindex.pyc
2294${PYSITELIB}/pandas/tests/indexes/multi/test_reindex.pyo 2467${PYSITELIB}/pandas/tests/indexes/multi/test_reindex.pyo
2295${PYSITELIB}/pandas/tests/indexes/multi/test_reshape.py 2468${PYSITELIB}/pandas/tests/indexes/multi/test_reshape.py
2296${PYSITELIB}/pandas/tests/indexes/multi/test_reshape.pyc 2469${PYSITELIB}/pandas/tests/indexes/multi/test_reshape.pyc
2297${PYSITELIB}/pandas/tests/indexes/multi/test_reshape.pyo 2470${PYSITELIB}/pandas/tests/indexes/multi/test_reshape.pyo
2298${PYSITELIB}/pandas/tests/indexes/multi/test_setops.py 2471${PYSITELIB}/pandas/tests/indexes/multi/test_setops.py
2299${PYSITELIB}/pandas/tests/indexes/multi/test_setops.pyc 2472${PYSITELIB}/pandas/tests/indexes/multi/test_setops.pyc
2300${PYSITELIB}/pandas/tests/indexes/multi/test_setops.pyo 2473${PYSITELIB}/pandas/tests/indexes/multi/test_setops.pyo
2301${PYSITELIB}/pandas/tests/indexes/multi/test_sorting.py 2474${PYSITELIB}/pandas/tests/indexes/multi/test_sorting.py
2302${PYSITELIB}/pandas/tests/indexes/multi/test_sorting.pyc 2475${PYSITELIB}/pandas/tests/indexes/multi/test_sorting.pyc
2303${PYSITELIB}/pandas/tests/indexes/multi/test_sorting.pyo 2476${PYSITELIB}/pandas/tests/indexes/multi/test_sorting.pyo
2304${PYSITELIB}/pandas/tests/indexes/multi/test_take.py 2477${PYSITELIB}/pandas/tests/indexes/multi/test_take.py
@@ -2360,47 +2533,53 @@ ${PYSITELIB}/pandas/tests/indexes/period @@ -2360,47 +2533,53 @@ ${PYSITELIB}/pandas/tests/indexes/period
2360${PYSITELIB}/pandas/tests/indexes/period/methods/test_repeat.pyo 2533${PYSITELIB}/pandas/tests/indexes/period/methods/test_repeat.pyo
2361${PYSITELIB}/pandas/tests/indexes/period/methods/test_shift.py 2534${PYSITELIB}/pandas/tests/indexes/period/methods/test_shift.py
2362${PYSITELIB}/pandas/tests/indexes/period/methods/test_shift.pyc 2535${PYSITELIB}/pandas/tests/indexes/period/methods/test_shift.pyc
2363${PYSITELIB}/pandas/tests/indexes/period/methods/test_shift.pyo 2536${PYSITELIB}/pandas/tests/indexes/period/methods/test_shift.pyo
2364${PYSITELIB}/pandas/tests/indexes/period/methods/test_to_timestamp.py 2537${PYSITELIB}/pandas/tests/indexes/period/methods/test_to_timestamp.py
2365${PYSITELIB}/pandas/tests/indexes/period/methods/test_to_timestamp.pyc 2538${PYSITELIB}/pandas/tests/indexes/period/methods/test_to_timestamp.pyc
2366${PYSITELIB}/pandas/tests/indexes/period/methods/test_to_timestamp.pyo 2539${PYSITELIB}/pandas/tests/indexes/period/methods/test_to_timestamp.pyo
2367${PYSITELIB}/pandas/tests/indexes/period/test_constructors.py 2540${PYSITELIB}/pandas/tests/indexes/period/test_constructors.py
2368${PYSITELIB}/pandas/tests/indexes/period/test_constructors.pyc 2541${PYSITELIB}/pandas/tests/indexes/period/test_constructors.pyc
2369${PYSITELIB}/pandas/tests/indexes/period/test_constructors.pyo 2542${PYSITELIB}/pandas/tests/indexes/period/test_constructors.pyo
2370${PYSITELIB}/pandas/tests/indexes/period/test_formats.py 2543${PYSITELIB}/pandas/tests/indexes/period/test_formats.py
2371${PYSITELIB}/pandas/tests/indexes/period/test_formats.pyc 2544${PYSITELIB}/pandas/tests/indexes/period/test_formats.pyc
2372${PYSITELIB}/pandas/tests/indexes/period/test_formats.pyo 2545${PYSITELIB}/pandas/tests/indexes/period/test_formats.pyo
 2546${PYSITELIB}/pandas/tests/indexes/period/test_freq_attr.py
 2547${PYSITELIB}/pandas/tests/indexes/period/test_freq_attr.pyc
 2548${PYSITELIB}/pandas/tests/indexes/period/test_freq_attr.pyo
2373${PYSITELIB}/pandas/tests/indexes/period/test_indexing.py 2549${PYSITELIB}/pandas/tests/indexes/period/test_indexing.py
2374${PYSITELIB}/pandas/tests/indexes/period/test_indexing.pyc 2550${PYSITELIB}/pandas/tests/indexes/period/test_indexing.pyc
2375${PYSITELIB}/pandas/tests/indexes/period/test_indexing.pyo 2551${PYSITELIB}/pandas/tests/indexes/period/test_indexing.pyo
2376${PYSITELIB}/pandas/tests/indexes/period/test_join.py 2552${PYSITELIB}/pandas/tests/indexes/period/test_join.py
2377${PYSITELIB}/pandas/tests/indexes/period/test_join.pyc 2553${PYSITELIB}/pandas/tests/indexes/period/test_join.pyc
2378${PYSITELIB}/pandas/tests/indexes/period/test_join.pyo 2554${PYSITELIB}/pandas/tests/indexes/period/test_join.pyo
2379${PYSITELIB}/pandas/tests/indexes/period/test_monotonic.py 2555${PYSITELIB}/pandas/tests/indexes/period/test_monotonic.py
2380${PYSITELIB}/pandas/tests/indexes/period/test_monotonic.pyc 2556${PYSITELIB}/pandas/tests/indexes/period/test_monotonic.pyc
2381${PYSITELIB}/pandas/tests/indexes/period/test_monotonic.pyo 2557${PYSITELIB}/pandas/tests/indexes/period/test_monotonic.pyo
2382${PYSITELIB}/pandas/tests/indexes/period/test_ops.py 
2383${PYSITELIB}/pandas/tests/indexes/period/test_ops.pyc 
2384${PYSITELIB}/pandas/tests/indexes/period/test_ops.pyo 
2385${PYSITELIB}/pandas/tests/indexes/period/test_partial_slicing.py 2558${PYSITELIB}/pandas/tests/indexes/period/test_partial_slicing.py
2386${PYSITELIB}/pandas/tests/indexes/period/test_partial_slicing.pyc 2559${PYSITELIB}/pandas/tests/indexes/period/test_partial_slicing.pyc
2387${PYSITELIB}/pandas/tests/indexes/period/test_partial_slicing.pyo 2560${PYSITELIB}/pandas/tests/indexes/period/test_partial_slicing.pyo
2388${PYSITELIB}/pandas/tests/indexes/period/test_period.py 2561${PYSITELIB}/pandas/tests/indexes/period/test_period.py
2389${PYSITELIB}/pandas/tests/indexes/period/test_period.pyc 2562${PYSITELIB}/pandas/tests/indexes/period/test_period.pyc
2390${PYSITELIB}/pandas/tests/indexes/period/test_period.pyo 2563${PYSITELIB}/pandas/tests/indexes/period/test_period.pyo
2391${PYSITELIB}/pandas/tests/indexes/period/test_period_range.py 2564${PYSITELIB}/pandas/tests/indexes/period/test_period_range.py
2392${PYSITELIB}/pandas/tests/indexes/period/test_period_range.pyc 2565${PYSITELIB}/pandas/tests/indexes/period/test_period_range.pyc
2393${PYSITELIB}/pandas/tests/indexes/period/test_period_range.pyo 2566${PYSITELIB}/pandas/tests/indexes/period/test_period_range.pyo
 2567${PYSITELIB}/pandas/tests/indexes/period/test_pickle.py
 2568${PYSITELIB}/pandas/tests/indexes/period/test_pickle.pyc
 2569${PYSITELIB}/pandas/tests/indexes/period/test_pickle.pyo
 2570${PYSITELIB}/pandas/tests/indexes/period/test_resolution.py
 2571${PYSITELIB}/pandas/tests/indexes/period/test_resolution.pyc
 2572${PYSITELIB}/pandas/tests/indexes/period/test_resolution.pyo
2394${PYSITELIB}/pandas/tests/indexes/period/test_scalar_compat.py 2573${PYSITELIB}/pandas/tests/indexes/period/test_scalar_compat.py
2395${PYSITELIB}/pandas/tests/indexes/period/test_scalar_compat.pyc 2574${PYSITELIB}/pandas/tests/indexes/period/test_scalar_compat.pyc
2396${PYSITELIB}/pandas/tests/indexes/period/test_scalar_compat.pyo 2575${PYSITELIB}/pandas/tests/indexes/period/test_scalar_compat.pyo
2397${PYSITELIB}/pandas/tests/indexes/period/test_searchsorted.py 2576${PYSITELIB}/pandas/tests/indexes/period/test_searchsorted.py
2398${PYSITELIB}/pandas/tests/indexes/period/test_searchsorted.pyc 2577${PYSITELIB}/pandas/tests/indexes/period/test_searchsorted.pyc
2399${PYSITELIB}/pandas/tests/indexes/period/test_searchsorted.pyo 2578${PYSITELIB}/pandas/tests/indexes/period/test_searchsorted.pyo
2400${PYSITELIB}/pandas/tests/indexes/period/test_setops.py 2579${PYSITELIB}/pandas/tests/indexes/period/test_setops.py
2401${PYSITELIB}/pandas/tests/indexes/period/test_setops.pyc 2580${PYSITELIB}/pandas/tests/indexes/period/test_setops.pyc
2402${PYSITELIB}/pandas/tests/indexes/period/test_setops.pyo 2581${PYSITELIB}/pandas/tests/indexes/period/test_setops.pyo
2403${PYSITELIB}/pandas/tests/indexes/period/test_tools.py 2582${PYSITELIB}/pandas/tests/indexes/period/test_tools.py
2404${PYSITELIB}/pandas/tests/indexes/period/test_tools.pyc 2583${PYSITELIB}/pandas/tests/indexes/period/test_tools.pyc
2405${PYSITELIB}/pandas/tests/indexes/period/test_tools.pyo 2584${PYSITELIB}/pandas/tests/indexes/period/test_tools.pyo
2406${PYSITELIB}/pandas/tests/indexes/ranges/__init__.py 2585${PYSITELIB}/pandas/tests/indexes/ranges/__init__.py
@@ -2438,26 +2617,29 @@ ${PYSITELIB}/pandas/tests/indexes/test_f @@ -2438,26 +2617,29 @@ ${PYSITELIB}/pandas/tests/indexes/test_f
2438${PYSITELIB}/pandas/tests/indexes/test_frozen.pyo 2617${PYSITELIB}/pandas/tests/indexes/test_frozen.pyo
2439${PYSITELIB}/pandas/tests/indexes/test_index_new.py 2618${PYSITELIB}/pandas/tests/indexes/test_index_new.py
2440${PYSITELIB}/pandas/tests/indexes/test_index_new.pyc 2619${PYSITELIB}/pandas/tests/indexes/test_index_new.pyc
2441${PYSITELIB}/pandas/tests/indexes/test_index_new.pyo 2620${PYSITELIB}/pandas/tests/indexes/test_index_new.pyo
2442${PYSITELIB}/pandas/tests/indexes/test_indexing.py 2621${PYSITELIB}/pandas/tests/indexes/test_indexing.py
2443${PYSITELIB}/pandas/tests/indexes/test_indexing.pyc 2622${PYSITELIB}/pandas/tests/indexes/test_indexing.pyc
2444${PYSITELIB}/pandas/tests/indexes/test_indexing.pyo 2623${PYSITELIB}/pandas/tests/indexes/test_indexing.pyo
2445${PYSITELIB}/pandas/tests/indexes/test_numpy_compat.py 2624${PYSITELIB}/pandas/tests/indexes/test_numpy_compat.py
2446${PYSITELIB}/pandas/tests/indexes/test_numpy_compat.pyc 2625${PYSITELIB}/pandas/tests/indexes/test_numpy_compat.pyc
2447${PYSITELIB}/pandas/tests/indexes/test_numpy_compat.pyo 2626${PYSITELIB}/pandas/tests/indexes/test_numpy_compat.pyo
2448${PYSITELIB}/pandas/tests/indexes/test_setops.py 2627${PYSITELIB}/pandas/tests/indexes/test_setops.py
2449${PYSITELIB}/pandas/tests/indexes/test_setops.pyc 2628${PYSITELIB}/pandas/tests/indexes/test_setops.pyc
2450${PYSITELIB}/pandas/tests/indexes/test_setops.pyo 2629${PYSITELIB}/pandas/tests/indexes/test_setops.pyo
 2630${PYSITELIB}/pandas/tests/indexes/test_subclass.py
 2631${PYSITELIB}/pandas/tests/indexes/test_subclass.pyc
 2632${PYSITELIB}/pandas/tests/indexes/test_subclass.pyo
2451${PYSITELIB}/pandas/tests/indexes/timedeltas/__init__.py 2633${PYSITELIB}/pandas/tests/indexes/timedeltas/__init__.py
2452${PYSITELIB}/pandas/tests/indexes/timedeltas/__init__.pyc 2634${PYSITELIB}/pandas/tests/indexes/timedeltas/__init__.pyc
2453${PYSITELIB}/pandas/tests/indexes/timedeltas/__init__.pyo 2635${PYSITELIB}/pandas/tests/indexes/timedeltas/__init__.pyo
2454${PYSITELIB}/pandas/tests/indexes/timedeltas/methods/__init__.py 2636${PYSITELIB}/pandas/tests/indexes/timedeltas/methods/__init__.py
2455${PYSITELIB}/pandas/tests/indexes/timedeltas/methods/__init__.pyc 2637${PYSITELIB}/pandas/tests/indexes/timedeltas/methods/__init__.pyc
2456${PYSITELIB}/pandas/tests/indexes/timedeltas/methods/__init__.pyo 2638${PYSITELIB}/pandas/tests/indexes/timedeltas/methods/__init__.pyo
2457${PYSITELIB}/pandas/tests/indexes/timedeltas/methods/test_astype.py 2639${PYSITELIB}/pandas/tests/indexes/timedeltas/methods/test_astype.py
2458${PYSITELIB}/pandas/tests/indexes/timedeltas/methods/test_astype.pyc 2640${PYSITELIB}/pandas/tests/indexes/timedeltas/methods/test_astype.pyc
2459${PYSITELIB}/pandas/tests/indexes/timedeltas/methods/test_astype.pyo 2641${PYSITELIB}/pandas/tests/indexes/timedeltas/methods/test_astype.pyo
2460${PYSITELIB}/pandas/tests/indexes/timedeltas/methods/test_factorize.py 2642${PYSITELIB}/pandas/tests/indexes/timedeltas/methods/test_factorize.py
2461${PYSITELIB}/pandas/tests/indexes/timedeltas/methods/test_factorize.pyc 2643${PYSITELIB}/pandas/tests/indexes/timedeltas/methods/test_factorize.pyc
2462${PYSITELIB}/pandas/tests/indexes/timedeltas/methods/test_factorize.pyo 2644${PYSITELIB}/pandas/tests/indexes/timedeltas/methods/test_factorize.pyo
2463${PYSITELIB}/pandas/tests/indexes/timedeltas/methods/test_fillna.py 2645${PYSITELIB}/pandas/tests/indexes/timedeltas/methods/test_fillna.py
@@ -2471,35 +2653,41 @@ ${PYSITELIB}/pandas/tests/indexes/timede @@ -2471,35 +2653,41 @@ ${PYSITELIB}/pandas/tests/indexes/timede
2471${PYSITELIB}/pandas/tests/indexes/timedeltas/methods/test_repeat.pyo 2653${PYSITELIB}/pandas/tests/indexes/timedeltas/methods/test_repeat.pyo
2472${PYSITELIB}/pandas/tests/indexes/timedeltas/methods/test_shift.py 2654${PYSITELIB}/pandas/tests/indexes/timedeltas/methods/test_shift.py
2473${PYSITELIB}/pandas/tests/indexes/timedeltas/methods/test_shift.pyc 2655${PYSITELIB}/pandas/tests/indexes/timedeltas/methods/test_shift.pyc
2474${PYSITELIB}/pandas/tests/indexes/timedeltas/methods/test_shift.pyo 2656${PYSITELIB}/pandas/tests/indexes/timedeltas/methods/test_shift.pyo
2475${PYSITELIB}/pandas/tests/indexes/timedeltas/test_constructors.py 2657${PYSITELIB}/pandas/tests/indexes/timedeltas/test_constructors.py
2476${PYSITELIB}/pandas/tests/indexes/timedeltas/test_constructors.pyc 2658${PYSITELIB}/pandas/tests/indexes/timedeltas/test_constructors.pyc
2477${PYSITELIB}/pandas/tests/indexes/timedeltas/test_constructors.pyo 2659${PYSITELIB}/pandas/tests/indexes/timedeltas/test_constructors.pyo
2478${PYSITELIB}/pandas/tests/indexes/timedeltas/test_delete.py 2660${PYSITELIB}/pandas/tests/indexes/timedeltas/test_delete.py
2479${PYSITELIB}/pandas/tests/indexes/timedeltas/test_delete.pyc 2661${PYSITELIB}/pandas/tests/indexes/timedeltas/test_delete.pyc
2480${PYSITELIB}/pandas/tests/indexes/timedeltas/test_delete.pyo 2662${PYSITELIB}/pandas/tests/indexes/timedeltas/test_delete.pyo
2481${PYSITELIB}/pandas/tests/indexes/timedeltas/test_formats.py 2663${PYSITELIB}/pandas/tests/indexes/timedeltas/test_formats.py
2482${PYSITELIB}/pandas/tests/indexes/timedeltas/test_formats.pyc 2664${PYSITELIB}/pandas/tests/indexes/timedeltas/test_formats.pyc
2483${PYSITELIB}/pandas/tests/indexes/timedeltas/test_formats.pyo 2665${PYSITELIB}/pandas/tests/indexes/timedeltas/test_formats.pyo
 2666${PYSITELIB}/pandas/tests/indexes/timedeltas/test_freq_attr.py
 2667${PYSITELIB}/pandas/tests/indexes/timedeltas/test_freq_attr.pyc
 2668${PYSITELIB}/pandas/tests/indexes/timedeltas/test_freq_attr.pyo
2484${PYSITELIB}/pandas/tests/indexes/timedeltas/test_indexing.py 2669${PYSITELIB}/pandas/tests/indexes/timedeltas/test_indexing.py
2485${PYSITELIB}/pandas/tests/indexes/timedeltas/test_indexing.pyc 2670${PYSITELIB}/pandas/tests/indexes/timedeltas/test_indexing.pyc
2486${PYSITELIB}/pandas/tests/indexes/timedeltas/test_indexing.pyo 2671${PYSITELIB}/pandas/tests/indexes/timedeltas/test_indexing.pyo
2487${PYSITELIB}/pandas/tests/indexes/timedeltas/test_join.py 2672${PYSITELIB}/pandas/tests/indexes/timedeltas/test_join.py
2488${PYSITELIB}/pandas/tests/indexes/timedeltas/test_join.pyc 2673${PYSITELIB}/pandas/tests/indexes/timedeltas/test_join.pyc
2489${PYSITELIB}/pandas/tests/indexes/timedeltas/test_join.pyo 2674${PYSITELIB}/pandas/tests/indexes/timedeltas/test_join.pyo
2490${PYSITELIB}/pandas/tests/indexes/timedeltas/test_ops.py 2675${PYSITELIB}/pandas/tests/indexes/timedeltas/test_ops.py
2491${PYSITELIB}/pandas/tests/indexes/timedeltas/test_ops.pyc 2676${PYSITELIB}/pandas/tests/indexes/timedeltas/test_ops.pyc
2492${PYSITELIB}/pandas/tests/indexes/timedeltas/test_ops.pyo 2677${PYSITELIB}/pandas/tests/indexes/timedeltas/test_ops.pyo
 2678${PYSITELIB}/pandas/tests/indexes/timedeltas/test_pickle.py
 2679${PYSITELIB}/pandas/tests/indexes/timedeltas/test_pickle.pyc
 2680${PYSITELIB}/pandas/tests/indexes/timedeltas/test_pickle.pyo
2493${PYSITELIB}/pandas/tests/indexes/timedeltas/test_scalar_compat.py 2681${PYSITELIB}/pandas/tests/indexes/timedeltas/test_scalar_compat.py
2494${PYSITELIB}/pandas/tests/indexes/timedeltas/test_scalar_compat.pyc 2682${PYSITELIB}/pandas/tests/indexes/timedeltas/test_scalar_compat.pyc
2495${PYSITELIB}/pandas/tests/indexes/timedeltas/test_scalar_compat.pyo 2683${PYSITELIB}/pandas/tests/indexes/timedeltas/test_scalar_compat.pyo
2496${PYSITELIB}/pandas/tests/indexes/timedeltas/test_searchsorted.py 2684${PYSITELIB}/pandas/tests/indexes/timedeltas/test_searchsorted.py
2497${PYSITELIB}/pandas/tests/indexes/timedeltas/test_searchsorted.pyc 2685${PYSITELIB}/pandas/tests/indexes/timedeltas/test_searchsorted.pyc
2498${PYSITELIB}/pandas/tests/indexes/timedeltas/test_searchsorted.pyo 2686${PYSITELIB}/pandas/tests/indexes/timedeltas/test_searchsorted.pyo
2499${PYSITELIB}/pandas/tests/indexes/timedeltas/test_setops.py 2687${PYSITELIB}/pandas/tests/indexes/timedeltas/test_setops.py
2500${PYSITELIB}/pandas/tests/indexes/timedeltas/test_setops.pyc 2688${PYSITELIB}/pandas/tests/indexes/timedeltas/test_setops.pyc
2501${PYSITELIB}/pandas/tests/indexes/timedeltas/test_setops.pyo 2689${PYSITELIB}/pandas/tests/indexes/timedeltas/test_setops.pyo
2502${PYSITELIB}/pandas/tests/indexes/timedeltas/test_timedelta.py 2690${PYSITELIB}/pandas/tests/indexes/timedeltas/test_timedelta.py
2503${PYSITELIB}/pandas/tests/indexes/timedeltas/test_timedelta.pyc 2691${PYSITELIB}/pandas/tests/indexes/timedeltas/test_timedelta.pyc
2504${PYSITELIB}/pandas/tests/indexes/timedeltas/test_timedelta.pyo 2692${PYSITELIB}/pandas/tests/indexes/timedeltas/test_timedelta.pyo
2505${PYSITELIB}/pandas/tests/indexes/timedeltas/test_timedelta_range.py 2693${PYSITELIB}/pandas/tests/indexes/timedeltas/test_timedelta_range.py
@@ -2591,26 +2779,41 @@ ${PYSITELIB}/pandas/tests/indexing/test_ @@ -2591,26 +2779,41 @@ ${PYSITELIB}/pandas/tests/indexing/test_
2591${PYSITELIB}/pandas/tests/indexing/test_indexing.pyo 2779${PYSITELIB}/pandas/tests/indexing/test_indexing.pyo
2592${PYSITELIB}/pandas/tests/indexing/test_loc.py 2780${PYSITELIB}/pandas/tests/indexing/test_loc.py
2593${PYSITELIB}/pandas/tests/indexing/test_loc.pyc 2781${PYSITELIB}/pandas/tests/indexing/test_loc.pyc
2594${PYSITELIB}/pandas/tests/indexing/test_loc.pyo 2782${PYSITELIB}/pandas/tests/indexing/test_loc.pyo
2595${PYSITELIB}/pandas/tests/indexing/test_na_indexing.py 2783${PYSITELIB}/pandas/tests/indexing/test_na_indexing.py
2596${PYSITELIB}/pandas/tests/indexing/test_na_indexing.pyc 2784${PYSITELIB}/pandas/tests/indexing/test_na_indexing.pyc
2597${PYSITELIB}/pandas/tests/indexing/test_na_indexing.pyo 2785${PYSITELIB}/pandas/tests/indexing/test_na_indexing.pyo
2598${PYSITELIB}/pandas/tests/indexing/test_partial.py 2786${PYSITELIB}/pandas/tests/indexing/test_partial.py
2599${PYSITELIB}/pandas/tests/indexing/test_partial.pyc 2787${PYSITELIB}/pandas/tests/indexing/test_partial.pyc
2600${PYSITELIB}/pandas/tests/indexing/test_partial.pyo 2788${PYSITELIB}/pandas/tests/indexing/test_partial.pyo
2601${PYSITELIB}/pandas/tests/indexing/test_scalar.py 2789${PYSITELIB}/pandas/tests/indexing/test_scalar.py
2602${PYSITELIB}/pandas/tests/indexing/test_scalar.pyc 2790${PYSITELIB}/pandas/tests/indexing/test_scalar.pyc
2603${PYSITELIB}/pandas/tests/indexing/test_scalar.pyo 2791${PYSITELIB}/pandas/tests/indexing/test_scalar.pyo
 2792${PYSITELIB}/pandas/tests/interchange/__init__.py
 2793${PYSITELIB}/pandas/tests/interchange/__init__.pyc
 2794${PYSITELIB}/pandas/tests/interchange/__init__.pyo
 2795${PYSITELIB}/pandas/tests/interchange/conftest.py
 2796${PYSITELIB}/pandas/tests/interchange/conftest.pyc
 2797${PYSITELIB}/pandas/tests/interchange/conftest.pyo
 2798${PYSITELIB}/pandas/tests/interchange/test_impl.py
 2799${PYSITELIB}/pandas/tests/interchange/test_impl.pyc
 2800${PYSITELIB}/pandas/tests/interchange/test_impl.pyo
 2801${PYSITELIB}/pandas/tests/interchange/test_spec_conformance.py
 2802${PYSITELIB}/pandas/tests/interchange/test_spec_conformance.pyc
 2803${PYSITELIB}/pandas/tests/interchange/test_spec_conformance.pyo
 2804${PYSITELIB}/pandas/tests/interchange/test_utils.py
 2805${PYSITELIB}/pandas/tests/interchange/test_utils.pyc
 2806${PYSITELIB}/pandas/tests/interchange/test_utils.pyo
2604${PYSITELIB}/pandas/tests/internals/__init__.py 2807${PYSITELIB}/pandas/tests/internals/__init__.py
2605${PYSITELIB}/pandas/tests/internals/__init__.pyc 2808${PYSITELIB}/pandas/tests/internals/__init__.pyc
2606${PYSITELIB}/pandas/tests/internals/__init__.pyo 2809${PYSITELIB}/pandas/tests/internals/__init__.pyo
2607${PYSITELIB}/pandas/tests/internals/test_api.py 2810${PYSITELIB}/pandas/tests/internals/test_api.py
2608${PYSITELIB}/pandas/tests/internals/test_api.pyc 2811${PYSITELIB}/pandas/tests/internals/test_api.pyc
2609${PYSITELIB}/pandas/tests/internals/test_api.pyo 2812${PYSITELIB}/pandas/tests/internals/test_api.pyo
2610${PYSITELIB}/pandas/tests/internals/test_internals.py 2813${PYSITELIB}/pandas/tests/internals/test_internals.py
2611${PYSITELIB}/pandas/tests/internals/test_internals.pyc 2814${PYSITELIB}/pandas/tests/internals/test_internals.pyc
2612${PYSITELIB}/pandas/tests/internals/test_internals.pyo 2815${PYSITELIB}/pandas/tests/internals/test_internals.pyo
2613${PYSITELIB}/pandas/tests/internals/test_managers.py 2816${PYSITELIB}/pandas/tests/internals/test_managers.py
2614${PYSITELIB}/pandas/tests/internals/test_managers.pyc 2817${PYSITELIB}/pandas/tests/internals/test_managers.pyc
2615${PYSITELIB}/pandas/tests/internals/test_managers.pyo 2818${PYSITELIB}/pandas/tests/internals/test_managers.pyo
2616${PYSITELIB}/pandas/tests/io/__init__.py 2819${PYSITELIB}/pandas/tests/io/__init__.py
@@ -2618,26 +2821,27 @@ ${PYSITELIB}/pandas/tests/io/__init__.py @@ -2618,26 +2821,27 @@ ${PYSITELIB}/pandas/tests/io/__init__.py
2618${PYSITELIB}/pandas/tests/io/__init__.pyo 2821${PYSITELIB}/pandas/tests/io/__init__.pyo
2619${PYSITELIB}/pandas/tests/io/conftest.py 2822${PYSITELIB}/pandas/tests/io/conftest.py
2620${PYSITELIB}/pandas/tests/io/conftest.pyc 2823${PYSITELIB}/pandas/tests/io/conftest.pyc
2621${PYSITELIB}/pandas/tests/io/conftest.pyo 2824${PYSITELIB}/pandas/tests/io/conftest.pyo
2622${PYSITELIB}/pandas/tests/io/data/fixed_width/fixed_width_format.txt 2825${PYSITELIB}/pandas/tests/io/data/fixed_width/fixed_width_format.txt
2623${PYSITELIB}/pandas/tests/io/data/gbq_fake_job.txt 2826${PYSITELIB}/pandas/tests/io/data/gbq_fake_job.txt
2624${PYSITELIB}/pandas/tests/io/data/legacy_pickle/1.2.4/empty_frame_v1_2_4-GH#42345.pkl 2827${PYSITELIB}/pandas/tests/io/data/legacy_pickle/1.2.4/empty_frame_v1_2_4-GH#42345.pkl
2625${PYSITELIB}/pandas/tests/io/data/parquet/simple.parquet 2828${PYSITELIB}/pandas/tests/io/data/parquet/simple.parquet
2626${PYSITELIB}/pandas/tests/io/data/pickle/test_mi_py27.pkl 2829${PYSITELIB}/pandas/tests/io/data/pickle/test_mi_py27.pkl
2627${PYSITELIB}/pandas/tests/io/data/pickle/test_py27.pkl 2830${PYSITELIB}/pandas/tests/io/data/pickle/test_py27.pkl
2628${PYSITELIB}/pandas/tests/io/data/xml/baby_names.xml 2831${PYSITELIB}/pandas/tests/io/data/xml/baby_names.xml
2629${PYSITELIB}/pandas/tests/io/data/xml/books.xml 2832${PYSITELIB}/pandas/tests/io/data/xml/books.xml
2630${PYSITELIB}/pandas/tests/io/data/xml/cta_rail_lines.kml 2833${PYSITELIB}/pandas/tests/io/data/xml/cta_rail_lines.kml
 2834${PYSITELIB}/pandas/tests/io/data/xml/doc_ch_utf.xml
2631${PYSITELIB}/pandas/tests/io/data/xml/flatten_doc.xsl 2835${PYSITELIB}/pandas/tests/io/data/xml/flatten_doc.xsl
2632${PYSITELIB}/pandas/tests/io/data/xml/row_field_output.xsl 2836${PYSITELIB}/pandas/tests/io/data/xml/row_field_output.xsl
2633${PYSITELIB}/pandas/tests/io/excel/__init__.py 2837${PYSITELIB}/pandas/tests/io/excel/__init__.py
2634${PYSITELIB}/pandas/tests/io/excel/__init__.pyc 2838${PYSITELIB}/pandas/tests/io/excel/__init__.pyc
2635${PYSITELIB}/pandas/tests/io/excel/__init__.pyo 2839${PYSITELIB}/pandas/tests/io/excel/__init__.pyo
2636${PYSITELIB}/pandas/tests/io/excel/conftest.py 2840${PYSITELIB}/pandas/tests/io/excel/conftest.py
2637${PYSITELIB}/pandas/tests/io/excel/conftest.pyc 2841${PYSITELIB}/pandas/tests/io/excel/conftest.pyc
2638${PYSITELIB}/pandas/tests/io/excel/conftest.pyo 2842${PYSITELIB}/pandas/tests/io/excel/conftest.pyo
2639${PYSITELIB}/pandas/tests/io/excel/test_odf.py 2843${PYSITELIB}/pandas/tests/io/excel/test_odf.py
2640${PYSITELIB}/pandas/tests/io/excel/test_odf.pyc 2844${PYSITELIB}/pandas/tests/io/excel/test_odf.pyc
2641${PYSITELIB}/pandas/tests/io/excel/test_odf.pyo 2845${PYSITELIB}/pandas/tests/io/excel/test_odf.pyo
2642${PYSITELIB}/pandas/tests/io/excel/test_odswriter.py 2846${PYSITELIB}/pandas/tests/io/excel/test_odswriter.py
2643${PYSITELIB}/pandas/tests/io/excel/test_odswriter.pyc 2847${PYSITELIB}/pandas/tests/io/excel/test_odswriter.pyc
@@ -2659,71 +2863,83 @@ ${PYSITELIB}/pandas/tests/io/excel/test_ @@ -2659,71 +2863,83 @@ ${PYSITELIB}/pandas/tests/io/excel/test_
2659${PYSITELIB}/pandas/tests/io/excel/test_xlrd.pyo 2863${PYSITELIB}/pandas/tests/io/excel/test_xlrd.pyo
2660${PYSITELIB}/pandas/tests/io/excel/test_xlsxwriter.py 2864${PYSITELIB}/pandas/tests/io/excel/test_xlsxwriter.py
2661${PYSITELIB}/pandas/tests/io/excel/test_xlsxwriter.pyc 2865${PYSITELIB}/pandas/tests/io/excel/test_xlsxwriter.pyc
2662${PYSITELIB}/pandas/tests/io/excel/test_xlsxwriter.pyo 2866${PYSITELIB}/pandas/tests/io/excel/test_xlsxwriter.pyo
2663${PYSITELIB}/pandas/tests/io/excel/test_xlwt.py 2867${PYSITELIB}/pandas/tests/io/excel/test_xlwt.py
2664${PYSITELIB}/pandas/tests/io/excel/test_xlwt.pyc 2868${PYSITELIB}/pandas/tests/io/excel/test_xlwt.pyc
2665${PYSITELIB}/pandas/tests/io/excel/test_xlwt.pyo 2869${PYSITELIB}/pandas/tests/io/excel/test_xlwt.pyo
2666${PYSITELIB}/pandas/tests/io/formats/__init__.py 2870${PYSITELIB}/pandas/tests/io/formats/__init__.py
2667${PYSITELIB}/pandas/tests/io/formats/__init__.pyc 2871${PYSITELIB}/pandas/tests/io/formats/__init__.pyc
2668${PYSITELIB}/pandas/tests/io/formats/__init__.pyo 2872${PYSITELIB}/pandas/tests/io/formats/__init__.pyo
2669${PYSITELIB}/pandas/tests/io/formats/style/__init__.py 2873${PYSITELIB}/pandas/tests/io/formats/style/__init__.py
2670${PYSITELIB}/pandas/tests/io/formats/style/__init__.pyc 2874${PYSITELIB}/pandas/tests/io/formats/style/__init__.pyc
2671${PYSITELIB}/pandas/tests/io/formats/style/__init__.pyo 2875${PYSITELIB}/pandas/tests/io/formats/style/__init__.pyo
2672${PYSITELIB}/pandas/tests/io/formats/style/test_align.py 2876${PYSITELIB}/pandas/tests/io/formats/style/test_bar.py
2673${PYSITELIB}/pandas/tests/io/formats/style/test_align.pyc 2877${PYSITELIB}/pandas/tests/io/formats/style/test_bar.pyc
2674${PYSITELIB}/pandas/tests/io/formats/style/test_align.pyo 2878${PYSITELIB}/pandas/tests/io/formats/style/test_bar.pyo
 2879${PYSITELIB}/pandas/tests/io/formats/style/test_deprecated.py
 2880${PYSITELIB}/pandas/tests/io/formats/style/test_deprecated.pyc
 2881${PYSITELIB}/pandas/tests/io/formats/style/test_deprecated.pyo
 2882${PYSITELIB}/pandas/tests/io/formats/style/test_exceptions.py
 2883${PYSITELIB}/pandas/tests/io/formats/style/test_exceptions.pyc
 2884${PYSITELIB}/pandas/tests/io/formats/style/test_exceptions.pyo
2675${PYSITELIB}/pandas/tests/io/formats/style/test_format.py 2885${PYSITELIB}/pandas/tests/io/formats/style/test_format.py
2676${PYSITELIB}/pandas/tests/io/formats/style/test_format.pyc 2886${PYSITELIB}/pandas/tests/io/formats/style/test_format.pyc
2677${PYSITELIB}/pandas/tests/io/formats/style/test_format.pyo 2887${PYSITELIB}/pandas/tests/io/formats/style/test_format.pyo
2678${PYSITELIB}/pandas/tests/io/formats/style/test_highlight.py 2888${PYSITELIB}/pandas/tests/io/formats/style/test_highlight.py
2679${PYSITELIB}/pandas/tests/io/formats/style/test_highlight.pyc 2889${PYSITELIB}/pandas/tests/io/formats/style/test_highlight.pyc
2680${PYSITELIB}/pandas/tests/io/formats/style/test_highlight.pyo 2890${PYSITELIB}/pandas/tests/io/formats/style/test_highlight.pyo
2681${PYSITELIB}/pandas/tests/io/formats/style/test_html.py 2891${PYSITELIB}/pandas/tests/io/formats/style/test_html.py
2682${PYSITELIB}/pandas/tests/io/formats/style/test_html.pyc 2892${PYSITELIB}/pandas/tests/io/formats/style/test_html.pyc
2683${PYSITELIB}/pandas/tests/io/formats/style/test_html.pyo 2893${PYSITELIB}/pandas/tests/io/formats/style/test_html.pyo
2684${PYSITELIB}/pandas/tests/io/formats/style/test_matplotlib.py 2894${PYSITELIB}/pandas/tests/io/formats/style/test_matplotlib.py
2685${PYSITELIB}/pandas/tests/io/formats/style/test_matplotlib.pyc 2895${PYSITELIB}/pandas/tests/io/formats/style/test_matplotlib.pyc
2686${PYSITELIB}/pandas/tests/io/formats/style/test_matplotlib.pyo 2896${PYSITELIB}/pandas/tests/io/formats/style/test_matplotlib.pyo
2687${PYSITELIB}/pandas/tests/io/formats/style/test_non_unique.py 2897${PYSITELIB}/pandas/tests/io/formats/style/test_non_unique.py
2688${PYSITELIB}/pandas/tests/io/formats/style/test_non_unique.pyc 2898${PYSITELIB}/pandas/tests/io/formats/style/test_non_unique.pyc
2689${PYSITELIB}/pandas/tests/io/formats/style/test_non_unique.pyo 2899${PYSITELIB}/pandas/tests/io/formats/style/test_non_unique.pyo
2690${PYSITELIB}/pandas/tests/io/formats/style/test_style.py 2900${PYSITELIB}/pandas/tests/io/formats/style/test_style.py
2691${PYSITELIB}/pandas/tests/io/formats/style/test_style.pyc 2901${PYSITELIB}/pandas/tests/io/formats/style/test_style.pyc
2692${PYSITELIB}/pandas/tests/io/formats/style/test_style.pyo 2902${PYSITELIB}/pandas/tests/io/formats/style/test_style.pyo
2693${PYSITELIB}/pandas/tests/io/formats/style/test_to_latex.py 2903${PYSITELIB}/pandas/tests/io/formats/style/test_to_latex.py
2694${PYSITELIB}/pandas/tests/io/formats/style/test_to_latex.pyc 2904${PYSITELIB}/pandas/tests/io/formats/style/test_to_latex.pyc
2695${PYSITELIB}/pandas/tests/io/formats/style/test_to_latex.pyo 2905${PYSITELIB}/pandas/tests/io/formats/style/test_to_latex.pyo
 2906${PYSITELIB}/pandas/tests/io/formats/style/test_to_string.py
 2907${PYSITELIB}/pandas/tests/io/formats/style/test_to_string.pyc
 2908${PYSITELIB}/pandas/tests/io/formats/style/test_to_string.pyo
2696${PYSITELIB}/pandas/tests/io/formats/style/test_tooltip.py 2909${PYSITELIB}/pandas/tests/io/formats/style/test_tooltip.py
2697${PYSITELIB}/pandas/tests/io/formats/style/test_tooltip.pyc 2910${PYSITELIB}/pandas/tests/io/formats/style/test_tooltip.pyc
2698${PYSITELIB}/pandas/tests/io/formats/style/test_tooltip.pyo 2911${PYSITELIB}/pandas/tests/io/formats/style/test_tooltip.pyo
2699${PYSITELIB}/pandas/tests/io/formats/test_console.py 2912${PYSITELIB}/pandas/tests/io/formats/test_console.py
2700${PYSITELIB}/pandas/tests/io/formats/test_console.pyc 2913${PYSITELIB}/pandas/tests/io/formats/test_console.pyc
2701${PYSITELIB}/pandas/tests/io/formats/test_console.pyo 2914${PYSITELIB}/pandas/tests/io/formats/test_console.pyo
2702${PYSITELIB}/pandas/tests/io/formats/test_css.py 2915${PYSITELIB}/pandas/tests/io/formats/test_css.py
2703${PYSITELIB}/pandas/tests/io/formats/test_css.pyc 2916${PYSITELIB}/pandas/tests/io/formats/test_css.pyc
2704${PYSITELIB}/pandas/tests/io/formats/test_css.pyo 2917${PYSITELIB}/pandas/tests/io/formats/test_css.pyo
2705${PYSITELIB}/pandas/tests/io/formats/test_eng_formatting.py 2918${PYSITELIB}/pandas/tests/io/formats/test_eng_formatting.py
2706${PYSITELIB}/pandas/tests/io/formats/test_eng_formatting.pyc 2919${PYSITELIB}/pandas/tests/io/formats/test_eng_formatting.pyc
2707${PYSITELIB}/pandas/tests/io/formats/test_eng_formatting.pyo 2920${PYSITELIB}/pandas/tests/io/formats/test_eng_formatting.pyo
2708${PYSITELIB}/pandas/tests/io/formats/test_format.py 2921${PYSITELIB}/pandas/tests/io/formats/test_format.py
2709${PYSITELIB}/pandas/tests/io/formats/test_format.pyc 2922${PYSITELIB}/pandas/tests/io/formats/test_format.pyc
2710${PYSITELIB}/pandas/tests/io/formats/test_format.pyo 2923${PYSITELIB}/pandas/tests/io/formats/test_format.pyo
2711${PYSITELIB}/pandas/tests/io/formats/test_info.py 2924${PYSITELIB}/pandas/tests/io/formats/test_info.py
2712${PYSITELIB}/pandas/tests/io/formats/test_info.pyc 2925${PYSITELIB}/pandas/tests/io/formats/test_info.pyc
2713${PYSITELIB}/pandas/tests/io/formats/test_info.pyo 2926${PYSITELIB}/pandas/tests/io/formats/test_info.pyo
2714${PYSITELIB}/pandas/tests/io/formats/test_printing.py 2927${PYSITELIB}/pandas/tests/io/formats/test_printing.py
2715${PYSITELIB}/pandas/tests/io/formats/test_printing.pyc 2928${PYSITELIB}/pandas/tests/io/formats/test_printing.pyc
2716${PYSITELIB}/pandas/tests/io/formats/test_printing.pyo 2929${PYSITELIB}/pandas/tests/io/formats/test_printing.pyo
 2930${PYSITELIB}/pandas/tests/io/formats/test_series_info.py
 2931${PYSITELIB}/pandas/tests/io/formats/test_series_info.pyc
 2932${PYSITELIB}/pandas/tests/io/formats/test_series_info.pyo
2717${PYSITELIB}/pandas/tests/io/formats/test_to_csv.py 2933${PYSITELIB}/pandas/tests/io/formats/test_to_csv.py
2718${PYSITELIB}/pandas/tests/io/formats/test_to_csv.pyc 2934${PYSITELIB}/pandas/tests/io/formats/test_to_csv.pyc
2719${PYSITELIB}/pandas/tests/io/formats/test_to_csv.pyo 2935${PYSITELIB}/pandas/tests/io/formats/test_to_csv.pyo
2720${PYSITELIB}/pandas/tests/io/formats/test_to_excel.py 2936${PYSITELIB}/pandas/tests/io/formats/test_to_excel.py
2721${PYSITELIB}/pandas/tests/io/formats/test_to_excel.pyc 2937${PYSITELIB}/pandas/tests/io/formats/test_to_excel.pyc
2722${PYSITELIB}/pandas/tests/io/formats/test_to_excel.pyo 2938${PYSITELIB}/pandas/tests/io/formats/test_to_excel.pyo
2723${PYSITELIB}/pandas/tests/io/formats/test_to_html.py 2939${PYSITELIB}/pandas/tests/io/formats/test_to_html.py
2724${PYSITELIB}/pandas/tests/io/formats/test_to_html.pyc 2940${PYSITELIB}/pandas/tests/io/formats/test_to_html.pyc
2725${PYSITELIB}/pandas/tests/io/formats/test_to_html.pyo 2941${PYSITELIB}/pandas/tests/io/formats/test_to_html.pyo
2726${PYSITELIB}/pandas/tests/io/formats/test_to_latex.py 2942${PYSITELIB}/pandas/tests/io/formats/test_to_latex.py
2727${PYSITELIB}/pandas/tests/io/formats/test_to_latex.pyc 2943${PYSITELIB}/pandas/tests/io/formats/test_to_latex.pyc
2728${PYSITELIB}/pandas/tests/io/formats/test_to_latex.pyo 2944${PYSITELIB}/pandas/tests/io/formats/test_to_latex.pyo
2729${PYSITELIB}/pandas/tests/io/formats/test_to_markdown.py 2945${PYSITELIB}/pandas/tests/io/formats/test_to_markdown.py
@@ -2740,26 +2956,29 @@ ${PYSITELIB}/pandas/tests/io/json/__init @@ -2740,26 +2956,29 @@ ${PYSITELIB}/pandas/tests/io/json/__init
2740${PYSITELIB}/pandas/tests/io/json/__init__.pyo 2956${PYSITELIB}/pandas/tests/io/json/__init__.pyo
2741${PYSITELIB}/pandas/tests/io/json/conftest.py 2957${PYSITELIB}/pandas/tests/io/json/conftest.py
2742${PYSITELIB}/pandas/tests/io/json/conftest.pyc 2958${PYSITELIB}/pandas/tests/io/json/conftest.pyc
2743${PYSITELIB}/pandas/tests/io/json/conftest.pyo 2959${PYSITELIB}/pandas/tests/io/json/conftest.pyo
2744${PYSITELIB}/pandas/tests/io/json/test_compression.py 2960${PYSITELIB}/pandas/tests/io/json/test_compression.py
2745${PYSITELIB}/pandas/tests/io/json/test_compression.pyc 2961${PYSITELIB}/pandas/tests/io/json/test_compression.pyc
2746${PYSITELIB}/pandas/tests/io/json/test_compression.pyo 2962${PYSITELIB}/pandas/tests/io/json/test_compression.pyo
2747${PYSITELIB}/pandas/tests/io/json/test_deprecated_kwargs.py 2963${PYSITELIB}/pandas/tests/io/json/test_deprecated_kwargs.py
2748${PYSITELIB}/pandas/tests/io/json/test_deprecated_kwargs.pyc 2964${PYSITELIB}/pandas/tests/io/json/test_deprecated_kwargs.pyc
2749${PYSITELIB}/pandas/tests/io/json/test_deprecated_kwargs.pyo 2965${PYSITELIB}/pandas/tests/io/json/test_deprecated_kwargs.pyo
2750${PYSITELIB}/pandas/tests/io/json/test_json_table_schema.py 2966${PYSITELIB}/pandas/tests/io/json/test_json_table_schema.py
2751${PYSITELIB}/pandas/tests/io/json/test_json_table_schema.pyc 2967${PYSITELIB}/pandas/tests/io/json/test_json_table_schema.pyc
2752${PYSITELIB}/pandas/tests/io/json/test_json_table_schema.pyo 2968${PYSITELIB}/pandas/tests/io/json/test_json_table_schema.pyo
 2969${PYSITELIB}/pandas/tests/io/json/test_json_table_schema_ext_dtype.py
 2970${PYSITELIB}/pandas/tests/io/json/test_json_table_schema_ext_dtype.pyc
 2971${PYSITELIB}/pandas/tests/io/json/test_json_table_schema_ext_dtype.pyo
2753${PYSITELIB}/pandas/tests/io/json/test_normalize.py 2972${PYSITELIB}/pandas/tests/io/json/test_normalize.py
2754${PYSITELIB}/pandas/tests/io/json/test_normalize.pyc 2973${PYSITELIB}/pandas/tests/io/json/test_normalize.pyc
2755${PYSITELIB}/pandas/tests/io/json/test_normalize.pyo 2974${PYSITELIB}/pandas/tests/io/json/test_normalize.pyo
2756${PYSITELIB}/pandas/tests/io/json/test_pandas.py 2975${PYSITELIB}/pandas/tests/io/json/test_pandas.py
2757${PYSITELIB}/pandas/tests/io/json/test_pandas.pyc 2976${PYSITELIB}/pandas/tests/io/json/test_pandas.pyc
2758${PYSITELIB}/pandas/tests/io/json/test_pandas.pyo 2977${PYSITELIB}/pandas/tests/io/json/test_pandas.pyo
2759${PYSITELIB}/pandas/tests/io/json/test_readlines.py 2978${PYSITELIB}/pandas/tests/io/json/test_readlines.py
2760${PYSITELIB}/pandas/tests/io/json/test_readlines.pyc 2979${PYSITELIB}/pandas/tests/io/json/test_readlines.pyc
2761${PYSITELIB}/pandas/tests/io/json/test_readlines.pyo 2980${PYSITELIB}/pandas/tests/io/json/test_readlines.pyo
2762${PYSITELIB}/pandas/tests/io/json/test_ujson.py 2981${PYSITELIB}/pandas/tests/io/json/test_ujson.py
2763${PYSITELIB}/pandas/tests/io/json/test_ujson.pyc 2982${PYSITELIB}/pandas/tests/io/json/test_ujson.pyc
2764${PYSITELIB}/pandas/tests/io/json/test_ujson.pyo 2983${PYSITELIB}/pandas/tests/io/json/test_ujson.pyo
2765${PYSITELIB}/pandas/tests/io/parser/__init__.py 2984${PYSITELIB}/pandas/tests/io/parser/__init__.py
@@ -2968,29 +3187,26 @@ ${PYSITELIB}/pandas/tests/io/test_common @@ -2968,29 +3187,26 @@ ${PYSITELIB}/pandas/tests/io/test_common
2968${PYSITELIB}/pandas/tests/io/test_common.pyo 3187${PYSITELIB}/pandas/tests/io/test_common.pyo
2969${PYSITELIB}/pandas/tests/io/test_compression.py 3188${PYSITELIB}/pandas/tests/io/test_compression.py
2970${PYSITELIB}/pandas/tests/io/test_compression.pyc 3189${PYSITELIB}/pandas/tests/io/test_compression.pyc
2971${PYSITELIB}/pandas/tests/io/test_compression.pyo 3190${PYSITELIB}/pandas/tests/io/test_compression.pyo
2972${PYSITELIB}/pandas/tests/io/test_date_converters.py 3191${PYSITELIB}/pandas/tests/io/test_date_converters.py
2973${PYSITELIB}/pandas/tests/io/test_date_converters.pyc 3192${PYSITELIB}/pandas/tests/io/test_date_converters.pyc
2974${PYSITELIB}/pandas/tests/io/test_date_converters.pyo 3193${PYSITELIB}/pandas/tests/io/test_date_converters.pyo
2975${PYSITELIB}/pandas/tests/io/test_feather.py 3194${PYSITELIB}/pandas/tests/io/test_feather.py
2976${PYSITELIB}/pandas/tests/io/test_feather.pyc 3195${PYSITELIB}/pandas/tests/io/test_feather.pyc
2977${PYSITELIB}/pandas/tests/io/test_feather.pyo 3196${PYSITELIB}/pandas/tests/io/test_feather.pyo
2978${PYSITELIB}/pandas/tests/io/test_fsspec.py 3197${PYSITELIB}/pandas/tests/io/test_fsspec.py
2979${PYSITELIB}/pandas/tests/io/test_fsspec.pyc 3198${PYSITELIB}/pandas/tests/io/test_fsspec.pyc
2980${PYSITELIB}/pandas/tests/io/test_fsspec.pyo 3199${PYSITELIB}/pandas/tests/io/test_fsspec.pyo
2981${PYSITELIB}/pandas/tests/io/test_gbq.py 
2982${PYSITELIB}/pandas/tests/io/test_gbq.pyc 
2983${PYSITELIB}/pandas/tests/io/test_gbq.pyo 
2984${PYSITELIB}/pandas/tests/io/test_gcs.py 3200${PYSITELIB}/pandas/tests/io/test_gcs.py
2985${PYSITELIB}/pandas/tests/io/test_gcs.pyc 3201${PYSITELIB}/pandas/tests/io/test_gcs.pyc
2986${PYSITELIB}/pandas/tests/io/test_gcs.pyo 3202${PYSITELIB}/pandas/tests/io/test_gcs.pyo
2987${PYSITELIB}/pandas/tests/io/test_html.py 3203${PYSITELIB}/pandas/tests/io/test_html.py
2988${PYSITELIB}/pandas/tests/io/test_html.pyc 3204${PYSITELIB}/pandas/tests/io/test_html.pyc
2989${PYSITELIB}/pandas/tests/io/test_html.pyo 3205${PYSITELIB}/pandas/tests/io/test_html.pyo
2990${PYSITELIB}/pandas/tests/io/test_orc.py 3206${PYSITELIB}/pandas/tests/io/test_orc.py
2991${PYSITELIB}/pandas/tests/io/test_orc.pyc 3207${PYSITELIB}/pandas/tests/io/test_orc.pyc
2992${PYSITELIB}/pandas/tests/io/test_orc.pyo 3208${PYSITELIB}/pandas/tests/io/test_orc.pyo
2993${PYSITELIB}/pandas/tests/io/test_parquet.py 3209${PYSITELIB}/pandas/tests/io/test_parquet.py
2994${PYSITELIB}/pandas/tests/io/test_parquet.pyc 3210${PYSITELIB}/pandas/tests/io/test_parquet.pyc
2995${PYSITELIB}/pandas/tests/io/test_parquet.pyo 3211${PYSITELIB}/pandas/tests/io/test_parquet.pyo
2996${PYSITELIB}/pandas/tests/io/test_pickle.py 3212${PYSITELIB}/pandas/tests/io/test_pickle.py
@@ -3001,68 +3217,80 @@ ${PYSITELIB}/pandas/tests/io/test_s3.pyc @@ -3001,68 +3217,80 @@ ${PYSITELIB}/pandas/tests/io/test_s3.pyc
3001${PYSITELIB}/pandas/tests/io/test_s3.pyo 3217${PYSITELIB}/pandas/tests/io/test_s3.pyo
3002${PYSITELIB}/pandas/tests/io/test_spss.py 3218${PYSITELIB}/pandas/tests/io/test_spss.py
3003${PYSITELIB}/pandas/tests/io/test_spss.pyc 3219${PYSITELIB}/pandas/tests/io/test_spss.pyc
3004${PYSITELIB}/pandas/tests/io/test_spss.pyo 3220${PYSITELIB}/pandas/tests/io/test_spss.pyo
3005${PYSITELIB}/pandas/tests/io/test_sql.py 3221${PYSITELIB}/pandas/tests/io/test_sql.py
3006${PYSITELIB}/pandas/tests/io/test_sql.pyc 3222${PYSITELIB}/pandas/tests/io/test_sql.pyc
3007${PYSITELIB}/pandas/tests/io/test_sql.pyo 3223${PYSITELIB}/pandas/tests/io/test_sql.pyo
3008${PYSITELIB}/pandas/tests/io/test_stata.py 3224${PYSITELIB}/pandas/tests/io/test_stata.py
3009${PYSITELIB}/pandas/tests/io/test_stata.pyc 3225${PYSITELIB}/pandas/tests/io/test_stata.pyc
3010${PYSITELIB}/pandas/tests/io/test_stata.pyo 3226${PYSITELIB}/pandas/tests/io/test_stata.pyo
3011${PYSITELIB}/pandas/tests/io/test_user_agent.py 3227${PYSITELIB}/pandas/tests/io/test_user_agent.py
3012${PYSITELIB}/pandas/tests/io/test_user_agent.pyc 3228${PYSITELIB}/pandas/tests/io/test_user_agent.pyc
3013${PYSITELIB}/pandas/tests/io/test_user_agent.pyo 3229${PYSITELIB}/pandas/tests/io/test_user_agent.pyo
 3230${PYSITELIB}/pandas/tests/io/xml/__init__.py
 3231${PYSITELIB}/pandas/tests/io/xml/__init__.pyc
 3232${PYSITELIB}/pandas/tests/io/xml/__init__.pyo
3014${PYSITELIB}/pandas/tests/io/xml/test_to_xml.py 3233${PYSITELIB}/pandas/tests/io/xml/test_to_xml.py
3015${PYSITELIB}/pandas/tests/io/xml/test_to_xml.pyc 3234${PYSITELIB}/pandas/tests/io/xml/test_to_xml.pyc
3016${PYSITELIB}/pandas/tests/io/xml/test_to_xml.pyo 3235${PYSITELIB}/pandas/tests/io/xml/test_to_xml.pyo
3017${PYSITELIB}/pandas/tests/io/xml/test_xml.py 3236${PYSITELIB}/pandas/tests/io/xml/test_xml.py
3018${PYSITELIB}/pandas/tests/io/xml/test_xml.pyc 3237${PYSITELIB}/pandas/tests/io/xml/test_xml.pyc
3019${PYSITELIB}/pandas/tests/io/xml/test_xml.pyo 3238${PYSITELIB}/pandas/tests/io/xml/test_xml.pyo
 3239${PYSITELIB}/pandas/tests/io/xml/test_xml_dtypes.py
 3240${PYSITELIB}/pandas/tests/io/xml/test_xml_dtypes.pyc
 3241${PYSITELIB}/pandas/tests/io/xml/test_xml_dtypes.pyo
3020${PYSITELIB}/pandas/tests/libs/__init__.py 3242${PYSITELIB}/pandas/tests/libs/__init__.py
3021${PYSITELIB}/pandas/tests/libs/__init__.pyc 3243${PYSITELIB}/pandas/tests/libs/__init__.pyc
3022${PYSITELIB}/pandas/tests/libs/__init__.pyo 3244${PYSITELIB}/pandas/tests/libs/__init__.pyo
3023${PYSITELIB}/pandas/tests/libs/test_hashtable.py 3245${PYSITELIB}/pandas/tests/libs/test_hashtable.py
3024${PYSITELIB}/pandas/tests/libs/test_hashtable.pyc 3246${PYSITELIB}/pandas/tests/libs/test_hashtable.pyc
3025${PYSITELIB}/pandas/tests/libs/test_hashtable.pyo 3247${PYSITELIB}/pandas/tests/libs/test_hashtable.pyo
3026${PYSITELIB}/pandas/tests/libs/test_join.py 3248${PYSITELIB}/pandas/tests/libs/test_join.py
3027${PYSITELIB}/pandas/tests/libs/test_join.pyc 3249${PYSITELIB}/pandas/tests/libs/test_join.pyc
3028${PYSITELIB}/pandas/tests/libs/test_join.pyo 3250${PYSITELIB}/pandas/tests/libs/test_join.pyo
3029${PYSITELIB}/pandas/tests/libs/test_lib.py 3251${PYSITELIB}/pandas/tests/libs/test_lib.py
3030${PYSITELIB}/pandas/tests/libs/test_lib.pyc 3252${PYSITELIB}/pandas/tests/libs/test_lib.pyc
3031${PYSITELIB}/pandas/tests/libs/test_lib.pyo 3253${PYSITELIB}/pandas/tests/libs/test_lib.pyo
3032${PYSITELIB}/pandas/tests/plotting/__init__.py 3254${PYSITELIB}/pandas/tests/plotting/__init__.py
3033${PYSITELIB}/pandas/tests/plotting/__init__.pyc 3255${PYSITELIB}/pandas/tests/plotting/__init__.pyc
3034${PYSITELIB}/pandas/tests/plotting/__init__.pyo 3256${PYSITELIB}/pandas/tests/plotting/__init__.pyo
3035${PYSITELIB}/pandas/tests/plotting/common.py 3257${PYSITELIB}/pandas/tests/plotting/common.py
3036${PYSITELIB}/pandas/tests/plotting/common.pyc 3258${PYSITELIB}/pandas/tests/plotting/common.pyc
3037${PYSITELIB}/pandas/tests/plotting/common.pyo 3259${PYSITELIB}/pandas/tests/plotting/common.pyo
 3260${PYSITELIB}/pandas/tests/plotting/conftest.py
 3261${PYSITELIB}/pandas/tests/plotting/conftest.pyc
 3262${PYSITELIB}/pandas/tests/plotting/conftest.pyo
3038${PYSITELIB}/pandas/tests/plotting/frame/__init__.py 3263${PYSITELIB}/pandas/tests/plotting/frame/__init__.py
3039${PYSITELIB}/pandas/tests/plotting/frame/__init__.pyc 3264${PYSITELIB}/pandas/tests/plotting/frame/__init__.pyc
3040${PYSITELIB}/pandas/tests/plotting/frame/__init__.pyo 3265${PYSITELIB}/pandas/tests/plotting/frame/__init__.pyo
3041${PYSITELIB}/pandas/tests/plotting/frame/test_frame.py 3266${PYSITELIB}/pandas/tests/plotting/frame/test_frame.py
3042${PYSITELIB}/pandas/tests/plotting/frame/test_frame.pyc 3267${PYSITELIB}/pandas/tests/plotting/frame/test_frame.pyc
3043${PYSITELIB}/pandas/tests/plotting/frame/test_frame.pyo 3268${PYSITELIB}/pandas/tests/plotting/frame/test_frame.pyo
3044${PYSITELIB}/pandas/tests/plotting/frame/test_frame_color.py 3269${PYSITELIB}/pandas/tests/plotting/frame/test_frame_color.py
3045${PYSITELIB}/pandas/tests/plotting/frame/test_frame_color.pyc 3270${PYSITELIB}/pandas/tests/plotting/frame/test_frame_color.pyc
3046${PYSITELIB}/pandas/tests/plotting/frame/test_frame_color.pyo 3271${PYSITELIB}/pandas/tests/plotting/frame/test_frame_color.pyo
3047${PYSITELIB}/pandas/tests/plotting/frame/test_frame_groupby.py 3272${PYSITELIB}/pandas/tests/plotting/frame/test_frame_groupby.py
3048${PYSITELIB}/pandas/tests/plotting/frame/test_frame_groupby.pyc 3273${PYSITELIB}/pandas/tests/plotting/frame/test_frame_groupby.pyc
3049${PYSITELIB}/pandas/tests/plotting/frame/test_frame_groupby.pyo 3274${PYSITELIB}/pandas/tests/plotting/frame/test_frame_groupby.pyo
3050${PYSITELIB}/pandas/tests/plotting/frame/test_frame_legend.py 3275${PYSITELIB}/pandas/tests/plotting/frame/test_frame_legend.py
3051${PYSITELIB}/pandas/tests/plotting/frame/test_frame_legend.pyc 3276${PYSITELIB}/pandas/tests/plotting/frame/test_frame_legend.pyc
3052${PYSITELIB}/pandas/tests/plotting/frame/test_frame_legend.pyo 3277${PYSITELIB}/pandas/tests/plotting/frame/test_frame_legend.pyo
3053${PYSITELIB}/pandas/tests/plotting/frame/test_frame_subplots.py 3278${PYSITELIB}/pandas/tests/plotting/frame/test_frame_subplots.py
3054${PYSITELIB}/pandas/tests/plotting/frame/test_frame_subplots.pyc 3279${PYSITELIB}/pandas/tests/plotting/frame/test_frame_subplots.pyc
3055${PYSITELIB}/pandas/tests/plotting/frame/test_frame_subplots.pyo 3280${PYSITELIB}/pandas/tests/plotting/frame/test_frame_subplots.pyo
 3281${PYSITELIB}/pandas/tests/plotting/frame/test_hist_box_by.py
 3282${PYSITELIB}/pandas/tests/plotting/frame/test_hist_box_by.pyc
 3283${PYSITELIB}/pandas/tests/plotting/frame/test_hist_box_by.pyo
3056${PYSITELIB}/pandas/tests/plotting/test_backend.py 3284${PYSITELIB}/pandas/tests/plotting/test_backend.py
3057${PYSITELIB}/pandas/tests/plotting/test_backend.pyc 3285${PYSITELIB}/pandas/tests/plotting/test_backend.pyc
3058${PYSITELIB}/pandas/tests/plotting/test_backend.pyo 3286${PYSITELIB}/pandas/tests/plotting/test_backend.pyo
3059${PYSITELIB}/pandas/tests/plotting/test_boxplot_method.py 3287${PYSITELIB}/pandas/tests/plotting/test_boxplot_method.py
3060${PYSITELIB}/pandas/tests/plotting/test_boxplot_method.pyc 3288${PYSITELIB}/pandas/tests/plotting/test_boxplot_method.pyc
3061${PYSITELIB}/pandas/tests/plotting/test_boxplot_method.pyo 3289${PYSITELIB}/pandas/tests/plotting/test_boxplot_method.pyo
3062${PYSITELIB}/pandas/tests/plotting/test_common.py 3290${PYSITELIB}/pandas/tests/plotting/test_common.py
3063${PYSITELIB}/pandas/tests/plotting/test_common.pyc 3291${PYSITELIB}/pandas/tests/plotting/test_common.pyc
3064${PYSITELIB}/pandas/tests/plotting/test_common.pyo 3292${PYSITELIB}/pandas/tests/plotting/test_common.pyo
3065${PYSITELIB}/pandas/tests/plotting/test_converter.py 3293${PYSITELIB}/pandas/tests/plotting/test_converter.py
3066${PYSITELIB}/pandas/tests/plotting/test_converter.pyc 3294${PYSITELIB}/pandas/tests/plotting/test_converter.pyc
3067${PYSITELIB}/pandas/tests/plotting/test_converter.pyo 3295${PYSITELIB}/pandas/tests/plotting/test_converter.pyo
3068${PYSITELIB}/pandas/tests/plotting/test_datetimelike.py 3296${PYSITELIB}/pandas/tests/plotting/test_datetimelike.py
@@ -3184,26 +3412,29 @@ ${PYSITELIB}/pandas/tests/reshape/merge/ @@ -3184,26 +3412,29 @@ ${PYSITELIB}/pandas/tests/reshape/merge/
3184${PYSITELIB}/pandas/tests/reshape/merge/test_merge_index_as_string.pyo 3412${PYSITELIB}/pandas/tests/reshape/merge/test_merge_index_as_string.pyo
3185${PYSITELIB}/pandas/tests/reshape/merge/test_merge_ordered.py 3413${PYSITELIB}/pandas/tests/reshape/merge/test_merge_ordered.py
3186${PYSITELIB}/pandas/tests/reshape/merge/test_merge_ordered.pyc 3414${PYSITELIB}/pandas/tests/reshape/merge/test_merge_ordered.pyc
3187${PYSITELIB}/pandas/tests/reshape/merge/test_merge_ordered.pyo 3415${PYSITELIB}/pandas/tests/reshape/merge/test_merge_ordered.pyo
3188${PYSITELIB}/pandas/tests/reshape/merge/test_multi.py 3416${PYSITELIB}/pandas/tests/reshape/merge/test_multi.py
3189${PYSITELIB}/pandas/tests/reshape/merge/test_multi.pyc 3417${PYSITELIB}/pandas/tests/reshape/merge/test_multi.pyc
3190${PYSITELIB}/pandas/tests/reshape/merge/test_multi.pyo 3418${PYSITELIB}/pandas/tests/reshape/merge/test_multi.pyo
3191${PYSITELIB}/pandas/tests/reshape/test_crosstab.py 3419${PYSITELIB}/pandas/tests/reshape/test_crosstab.py
3192${PYSITELIB}/pandas/tests/reshape/test_crosstab.pyc 3420${PYSITELIB}/pandas/tests/reshape/test_crosstab.pyc
3193${PYSITELIB}/pandas/tests/reshape/test_crosstab.pyo 3421${PYSITELIB}/pandas/tests/reshape/test_crosstab.pyo
3194${PYSITELIB}/pandas/tests/reshape/test_cut.py 3422${PYSITELIB}/pandas/tests/reshape/test_cut.py
3195${PYSITELIB}/pandas/tests/reshape/test_cut.pyc 3423${PYSITELIB}/pandas/tests/reshape/test_cut.pyc
3196${PYSITELIB}/pandas/tests/reshape/test_cut.pyo 3424${PYSITELIB}/pandas/tests/reshape/test_cut.pyo
 3425${PYSITELIB}/pandas/tests/reshape/test_from_dummies.py
 3426${PYSITELIB}/pandas/tests/reshape/test_from_dummies.pyc
 3427${PYSITELIB}/pandas/tests/reshape/test_from_dummies.pyo
3197${PYSITELIB}/pandas/tests/reshape/test_get_dummies.py 3428${PYSITELIB}/pandas/tests/reshape/test_get_dummies.py
3198${PYSITELIB}/pandas/tests/reshape/test_get_dummies.pyc 3429${PYSITELIB}/pandas/tests/reshape/test_get_dummies.pyc
3199${PYSITELIB}/pandas/tests/reshape/test_get_dummies.pyo 3430${PYSITELIB}/pandas/tests/reshape/test_get_dummies.pyo
3200${PYSITELIB}/pandas/tests/reshape/test_melt.py 3431${PYSITELIB}/pandas/tests/reshape/test_melt.py
3201${PYSITELIB}/pandas/tests/reshape/test_melt.pyc 3432${PYSITELIB}/pandas/tests/reshape/test_melt.pyc
3202${PYSITELIB}/pandas/tests/reshape/test_melt.pyo 3433${PYSITELIB}/pandas/tests/reshape/test_melt.pyo
3203${PYSITELIB}/pandas/tests/reshape/test_pivot.py 3434${PYSITELIB}/pandas/tests/reshape/test_pivot.py
3204${PYSITELIB}/pandas/tests/reshape/test_pivot.pyc 3435${PYSITELIB}/pandas/tests/reshape/test_pivot.pyc
3205${PYSITELIB}/pandas/tests/reshape/test_pivot.pyo 3436${PYSITELIB}/pandas/tests/reshape/test_pivot.pyo
3206${PYSITELIB}/pandas/tests/reshape/test_pivot_multilevel.py 3437${PYSITELIB}/pandas/tests/reshape/test_pivot_multilevel.py
3207${PYSITELIB}/pandas/tests/reshape/test_pivot_multilevel.pyc 3438${PYSITELIB}/pandas/tests/reshape/test_pivot_multilevel.pyc
3208${PYSITELIB}/pandas/tests/reshape/test_pivot_multilevel.pyo 3439${PYSITELIB}/pandas/tests/reshape/test_pivot_multilevel.pyo
3209${PYSITELIB}/pandas/tests/reshape/test_qcut.py 3440${PYSITELIB}/pandas/tests/reshape/test_qcut.py
@@ -3262,26 +3493,29 @@ ${PYSITELIB}/pandas/tests/scalar/timedel @@ -3262,26 +3493,29 @@ ${PYSITELIB}/pandas/tests/scalar/timedel
3262${PYSITELIB}/pandas/tests/scalar/timedelta/test_timedelta.pyo 3493${PYSITELIB}/pandas/tests/scalar/timedelta/test_timedelta.pyo
3263${PYSITELIB}/pandas/tests/scalar/timestamp/__init__.py 3494${PYSITELIB}/pandas/tests/scalar/timestamp/__init__.py
3264${PYSITELIB}/pandas/tests/scalar/timestamp/__init__.pyc 3495${PYSITELIB}/pandas/tests/scalar/timestamp/__init__.pyc
3265${PYSITELIB}/pandas/tests/scalar/timestamp/__init__.pyo 3496${PYSITELIB}/pandas/tests/scalar/timestamp/__init__.pyo
3266${PYSITELIB}/pandas/tests/scalar/timestamp/test_arithmetic.py 3497${PYSITELIB}/pandas/tests/scalar/timestamp/test_arithmetic.py
3267${PYSITELIB}/pandas/tests/scalar/timestamp/test_arithmetic.pyc 3498${PYSITELIB}/pandas/tests/scalar/timestamp/test_arithmetic.pyc
3268${PYSITELIB}/pandas/tests/scalar/timestamp/test_arithmetic.pyo 3499${PYSITELIB}/pandas/tests/scalar/timestamp/test_arithmetic.pyo
3269${PYSITELIB}/pandas/tests/scalar/timestamp/test_comparisons.py 3500${PYSITELIB}/pandas/tests/scalar/timestamp/test_comparisons.py
3270${PYSITELIB}/pandas/tests/scalar/timestamp/test_comparisons.pyc 3501${PYSITELIB}/pandas/tests/scalar/timestamp/test_comparisons.pyc
3271${PYSITELIB}/pandas/tests/scalar/timestamp/test_comparisons.pyo 3502${PYSITELIB}/pandas/tests/scalar/timestamp/test_comparisons.pyo
3272${PYSITELIB}/pandas/tests/scalar/timestamp/test_constructors.py 3503${PYSITELIB}/pandas/tests/scalar/timestamp/test_constructors.py
3273${PYSITELIB}/pandas/tests/scalar/timestamp/test_constructors.pyc 3504${PYSITELIB}/pandas/tests/scalar/timestamp/test_constructors.pyc
3274${PYSITELIB}/pandas/tests/scalar/timestamp/test_constructors.pyo 3505${PYSITELIB}/pandas/tests/scalar/timestamp/test_constructors.pyo
 3506${PYSITELIB}/pandas/tests/scalar/timestamp/test_formats.py
 3507${PYSITELIB}/pandas/tests/scalar/timestamp/test_formats.pyc
 3508${PYSITELIB}/pandas/tests/scalar/timestamp/test_formats.pyo
3275${PYSITELIB}/pandas/tests/scalar/timestamp/test_rendering.py 3509${PYSITELIB}/pandas/tests/scalar/timestamp/test_rendering.py
3276${PYSITELIB}/pandas/tests/scalar/timestamp/test_rendering.pyc 3510${PYSITELIB}/pandas/tests/scalar/timestamp/test_rendering.pyc
3277${PYSITELIB}/pandas/tests/scalar/timestamp/test_rendering.pyo 3511${PYSITELIB}/pandas/tests/scalar/timestamp/test_rendering.pyo
3278${PYSITELIB}/pandas/tests/scalar/timestamp/test_timestamp.py 3512${PYSITELIB}/pandas/tests/scalar/timestamp/test_timestamp.py
3279${PYSITELIB}/pandas/tests/scalar/timestamp/test_timestamp.pyc 3513${PYSITELIB}/pandas/tests/scalar/timestamp/test_timestamp.pyc
3280${PYSITELIB}/pandas/tests/scalar/timestamp/test_timestamp.pyo 3514${PYSITELIB}/pandas/tests/scalar/timestamp/test_timestamp.pyo
3281${PYSITELIB}/pandas/tests/scalar/timestamp/test_timezones.py 3515${PYSITELIB}/pandas/tests/scalar/timestamp/test_timezones.py
3282${PYSITELIB}/pandas/tests/scalar/timestamp/test_timezones.pyc 3516${PYSITELIB}/pandas/tests/scalar/timestamp/test_timezones.pyc
3283${PYSITELIB}/pandas/tests/scalar/timestamp/test_timezones.pyo 3517${PYSITELIB}/pandas/tests/scalar/timestamp/test_timezones.pyo
3284${PYSITELIB}/pandas/tests/scalar/timestamp/test_unary_ops.py 3518${PYSITELIB}/pandas/tests/scalar/timestamp/test_unary_ops.py
3285${PYSITELIB}/pandas/tests/scalar/timestamp/test_unary_ops.pyc 3519${PYSITELIB}/pandas/tests/scalar/timestamp/test_unary_ops.pyc
3286${PYSITELIB}/pandas/tests/scalar/timestamp/test_unary_ops.pyo 3520${PYSITELIB}/pandas/tests/scalar/timestamp/test_unary_ops.pyo
3287${PYSITELIB}/pandas/tests/series/__init__.py 3521${PYSITELIB}/pandas/tests/series/__init__.py
@@ -3340,29 +3574,26 @@ ${PYSITELIB}/pandas/tests/series/indexin @@ -3340,29 +3574,26 @@ ${PYSITELIB}/pandas/tests/series/indexin
3340${PYSITELIB}/pandas/tests/series/indexing/test_xs.pyo 3574${PYSITELIB}/pandas/tests/series/indexing/test_xs.pyo
3341${PYSITELIB}/pandas/tests/series/methods/__init__.py 3575${PYSITELIB}/pandas/tests/series/methods/__init__.py
3342${PYSITELIB}/pandas/tests/series/methods/__init__.pyc 3576${PYSITELIB}/pandas/tests/series/methods/__init__.pyc
3343${PYSITELIB}/pandas/tests/series/methods/__init__.pyo 3577${PYSITELIB}/pandas/tests/series/methods/__init__.pyo
3344${PYSITELIB}/pandas/tests/series/methods/test_align.py 3578${PYSITELIB}/pandas/tests/series/methods/test_align.py
3345${PYSITELIB}/pandas/tests/series/methods/test_align.pyc 3579${PYSITELIB}/pandas/tests/series/methods/test_align.pyc
3346${PYSITELIB}/pandas/tests/series/methods/test_align.pyo 3580${PYSITELIB}/pandas/tests/series/methods/test_align.pyo
3347${PYSITELIB}/pandas/tests/series/methods/test_append.py 3581${PYSITELIB}/pandas/tests/series/methods/test_append.py
3348${PYSITELIB}/pandas/tests/series/methods/test_append.pyc 3582${PYSITELIB}/pandas/tests/series/methods/test_append.pyc
3349${PYSITELIB}/pandas/tests/series/methods/test_append.pyo 3583${PYSITELIB}/pandas/tests/series/methods/test_append.pyo
3350${PYSITELIB}/pandas/tests/series/methods/test_argsort.py 3584${PYSITELIB}/pandas/tests/series/methods/test_argsort.py
3351${PYSITELIB}/pandas/tests/series/methods/test_argsort.pyc 3585${PYSITELIB}/pandas/tests/series/methods/test_argsort.pyc
3352${PYSITELIB}/pandas/tests/series/methods/test_argsort.pyo 3586${PYSITELIB}/pandas/tests/series/methods/test_argsort.pyo
3353${PYSITELIB}/pandas/tests/series/methods/test_asfreq.py 
3354${PYSITELIB}/pandas/tests/series/methods/test_asfreq.pyc 
3355${PYSITELIB}/pandas/tests/series/methods/test_asfreq.pyo 
3356${PYSITELIB}/pandas/tests/series/methods/test_asof.py 3587${PYSITELIB}/pandas/tests/series/methods/test_asof.py
3357${PYSITELIB}/pandas/tests/series/methods/test_asof.pyc 3588${PYSITELIB}/pandas/tests/series/methods/test_asof.pyc
3358${PYSITELIB}/pandas/tests/series/methods/test_asof.pyo 3589${PYSITELIB}/pandas/tests/series/methods/test_asof.pyo
3359${PYSITELIB}/pandas/tests/series/methods/test_astype.py 3590${PYSITELIB}/pandas/tests/series/methods/test_astype.py
3360${PYSITELIB}/pandas/tests/series/methods/test_astype.pyc 3591${PYSITELIB}/pandas/tests/series/methods/test_astype.pyc
3361${PYSITELIB}/pandas/tests/series/methods/test_astype.pyo 3592${PYSITELIB}/pandas/tests/series/methods/test_astype.pyo
3362${PYSITELIB}/pandas/tests/series/methods/test_autocorr.py 3593${PYSITELIB}/pandas/tests/series/methods/test_autocorr.py
3363${PYSITELIB}/pandas/tests/series/methods/test_autocorr.pyc 3594${PYSITELIB}/pandas/tests/series/methods/test_autocorr.pyc
3364${PYSITELIB}/pandas/tests/series/methods/test_autocorr.pyo 3595${PYSITELIB}/pandas/tests/series/methods/test_autocorr.pyo
3365${PYSITELIB}/pandas/tests/series/methods/test_between.py 3596${PYSITELIB}/pandas/tests/series/methods/test_between.py
3366${PYSITELIB}/pandas/tests/series/methods/test_between.pyc 3597${PYSITELIB}/pandas/tests/series/methods/test_between.pyc
3367${PYSITELIB}/pandas/tests/series/methods/test_between.pyo 3598${PYSITELIB}/pandas/tests/series/methods/test_between.pyo
3368${PYSITELIB}/pandas/tests/series/methods/test_clip.py 3599${PYSITELIB}/pandas/tests/series/methods/test_clip.py
@@ -3490,50 +3721,44 @@ ${PYSITELIB}/pandas/tests/series/methods @@ -3490,50 +3721,44 @@ ${PYSITELIB}/pandas/tests/series/methods
3490${PYSITELIB}/pandas/tests/series/methods/test_replace.pyo 3721${PYSITELIB}/pandas/tests/series/methods/test_replace.pyo
3491${PYSITELIB}/pandas/tests/series/methods/test_reset_index.py 3722${PYSITELIB}/pandas/tests/series/methods/test_reset_index.py
3492${PYSITELIB}/pandas/tests/series/methods/test_reset_index.pyc 3723${PYSITELIB}/pandas/tests/series/methods/test_reset_index.pyc
3493${PYSITELIB}/pandas/tests/series/methods/test_reset_index.pyo 3724${PYSITELIB}/pandas/tests/series/methods/test_reset_index.pyo
3494${PYSITELIB}/pandas/tests/series/methods/test_round.py 3725${PYSITELIB}/pandas/tests/series/methods/test_round.py
3495${PYSITELIB}/pandas/tests/series/methods/test_round.pyc 3726${PYSITELIB}/pandas/tests/series/methods/test_round.pyc
3496${PYSITELIB}/pandas/tests/series/methods/test_round.pyo 3727${PYSITELIB}/pandas/tests/series/methods/test_round.pyo
3497${PYSITELIB}/pandas/tests/series/methods/test_searchsorted.py 3728${PYSITELIB}/pandas/tests/series/methods/test_searchsorted.py
3498${PYSITELIB}/pandas/tests/series/methods/test_searchsorted.pyc 3729${PYSITELIB}/pandas/tests/series/methods/test_searchsorted.pyc
3499${PYSITELIB}/pandas/tests/series/methods/test_searchsorted.pyo 3730${PYSITELIB}/pandas/tests/series/methods/test_searchsorted.pyo
3500${PYSITELIB}/pandas/tests/series/methods/test_set_name.py 3731${PYSITELIB}/pandas/tests/series/methods/test_set_name.py
3501${PYSITELIB}/pandas/tests/series/methods/test_set_name.pyc 3732${PYSITELIB}/pandas/tests/series/methods/test_set_name.pyc
3502${PYSITELIB}/pandas/tests/series/methods/test_set_name.pyo 3733${PYSITELIB}/pandas/tests/series/methods/test_set_name.pyo
3503${PYSITELIB}/pandas/tests/series/methods/test_shift.py 
3504${PYSITELIB}/pandas/tests/series/methods/test_shift.pyc 
3505${PYSITELIB}/pandas/tests/series/methods/test_shift.pyo 
3506${PYSITELIB}/pandas/tests/series/methods/test_sort_index.py 3734${PYSITELIB}/pandas/tests/series/methods/test_sort_index.py
3507${PYSITELIB}/pandas/tests/series/methods/test_sort_index.pyc 3735${PYSITELIB}/pandas/tests/series/methods/test_sort_index.pyc
3508${PYSITELIB}/pandas/tests/series/methods/test_sort_index.pyo 3736${PYSITELIB}/pandas/tests/series/methods/test_sort_index.pyo
3509${PYSITELIB}/pandas/tests/series/methods/test_sort_values.py 3737${PYSITELIB}/pandas/tests/series/methods/test_sort_values.py
3510${PYSITELIB}/pandas/tests/series/methods/test_sort_values.pyc 3738${PYSITELIB}/pandas/tests/series/methods/test_sort_values.pyc
3511${PYSITELIB}/pandas/tests/series/methods/test_sort_values.pyo 3739${PYSITELIB}/pandas/tests/series/methods/test_sort_values.pyo
3512${PYSITELIB}/pandas/tests/series/methods/test_to_csv.py 3740${PYSITELIB}/pandas/tests/series/methods/test_to_csv.py
3513${PYSITELIB}/pandas/tests/series/methods/test_to_csv.pyc 3741${PYSITELIB}/pandas/tests/series/methods/test_to_csv.pyc
3514${PYSITELIB}/pandas/tests/series/methods/test_to_csv.pyo 3742${PYSITELIB}/pandas/tests/series/methods/test_to_csv.pyo
3515${PYSITELIB}/pandas/tests/series/methods/test_to_dict.py 3743${PYSITELIB}/pandas/tests/series/methods/test_to_dict.py
3516${PYSITELIB}/pandas/tests/series/methods/test_to_dict.pyc 3744${PYSITELIB}/pandas/tests/series/methods/test_to_dict.pyc
3517${PYSITELIB}/pandas/tests/series/methods/test_to_dict.pyo 3745${PYSITELIB}/pandas/tests/series/methods/test_to_dict.pyo
3518${PYSITELIB}/pandas/tests/series/methods/test_to_frame.py 3746${PYSITELIB}/pandas/tests/series/methods/test_to_frame.py
3519${PYSITELIB}/pandas/tests/series/methods/test_to_frame.pyc 3747${PYSITELIB}/pandas/tests/series/methods/test_to_frame.pyc
3520${PYSITELIB}/pandas/tests/series/methods/test_to_frame.pyo 3748${PYSITELIB}/pandas/tests/series/methods/test_to_frame.pyo
3521${PYSITELIB}/pandas/tests/series/methods/test_truncate.py 3749${PYSITELIB}/pandas/tests/series/methods/test_truncate.py
3522${PYSITELIB}/pandas/tests/series/methods/test_truncate.pyc 3750${PYSITELIB}/pandas/tests/series/methods/test_truncate.pyc
3523${PYSITELIB}/pandas/tests/series/methods/test_truncate.pyo 3751${PYSITELIB}/pandas/tests/series/methods/test_truncate.pyo
3524${PYSITELIB}/pandas/tests/series/methods/test_tz_convert.py 
3525${PYSITELIB}/pandas/tests/series/methods/test_tz_convert.pyc 
3526${PYSITELIB}/pandas/tests/series/methods/test_tz_convert.pyo 
3527${PYSITELIB}/pandas/tests/series/methods/test_tz_localize.py 3752${PYSITELIB}/pandas/tests/series/methods/test_tz_localize.py
3528${PYSITELIB}/pandas/tests/series/methods/test_tz_localize.pyc 3753${PYSITELIB}/pandas/tests/series/methods/test_tz_localize.pyc
3529${PYSITELIB}/pandas/tests/series/methods/test_tz_localize.pyo 3754${PYSITELIB}/pandas/tests/series/methods/test_tz_localize.pyo
3530${PYSITELIB}/pandas/tests/series/methods/test_unique.py 3755${PYSITELIB}/pandas/tests/series/methods/test_unique.py
3531${PYSITELIB}/pandas/tests/series/methods/test_unique.pyc 3756${PYSITELIB}/pandas/tests/series/methods/test_unique.pyc
3532${PYSITELIB}/pandas/tests/series/methods/test_unique.pyo 3757${PYSITELIB}/pandas/tests/series/methods/test_unique.pyo
3533${PYSITELIB}/pandas/tests/series/methods/test_unstack.py 3758${PYSITELIB}/pandas/tests/series/methods/test_unstack.py
3534${PYSITELIB}/pandas/tests/series/methods/test_unstack.pyc 3759${PYSITELIB}/pandas/tests/series/methods/test_unstack.pyc
3535${PYSITELIB}/pandas/tests/series/methods/test_unstack.pyo 3760${PYSITELIB}/pandas/tests/series/methods/test_unstack.pyo
3536${PYSITELIB}/pandas/tests/series/methods/test_update.py 3761${PYSITELIB}/pandas/tests/series/methods/test_update.py
3537${PYSITELIB}/pandas/tests/series/methods/test_update.pyc 3762${PYSITELIB}/pandas/tests/series/methods/test_update.pyc
3538${PYSITELIB}/pandas/tests/series/methods/test_update.pyo 3763${PYSITELIB}/pandas/tests/series/methods/test_update.pyo
3539${PYSITELIB}/pandas/tests/series/methods/test_value_counts.py 3764${PYSITELIB}/pandas/tests/series/methods/test_value_counts.py
@@ -3709,98 +3934,128 @@ ${PYSITELIB}/pandas/tests/tseries/offset @@ -3709,98 +3934,128 @@ ${PYSITELIB}/pandas/tests/tseries/offset
3709${PYSITELIB}/pandas/tests/tseries/offsets/__init__.pyo 3934${PYSITELIB}/pandas/tests/tseries/offsets/__init__.pyo
3710${PYSITELIB}/pandas/tests/tseries/offsets/common.py 3935${PYSITELIB}/pandas/tests/tseries/offsets/common.py
3711${PYSITELIB}/pandas/tests/tseries/offsets/common.pyc 3936${PYSITELIB}/pandas/tests/tseries/offsets/common.pyc
3712${PYSITELIB}/pandas/tests/tseries/offsets/common.pyo 3937${PYSITELIB}/pandas/tests/tseries/offsets/common.pyo
3713${PYSITELIB}/pandas/tests/tseries/offsets/conftest.py 3938${PYSITELIB}/pandas/tests/tseries/offsets/conftest.py
3714${PYSITELIB}/pandas/tests/tseries/offsets/conftest.pyc 3939${PYSITELIB}/pandas/tests/tseries/offsets/conftest.pyc
3715${PYSITELIB}/pandas/tests/tseries/offsets/conftest.pyo 3940${PYSITELIB}/pandas/tests/tseries/offsets/conftest.pyo
3716${PYSITELIB}/pandas/tests/tseries/offsets/test_business_day.py 3941${PYSITELIB}/pandas/tests/tseries/offsets/test_business_day.py
3717${PYSITELIB}/pandas/tests/tseries/offsets/test_business_day.pyc 3942${PYSITELIB}/pandas/tests/tseries/offsets/test_business_day.pyc
3718${PYSITELIB}/pandas/tests/tseries/offsets/test_business_day.pyo 3943${PYSITELIB}/pandas/tests/tseries/offsets/test_business_day.pyo
3719${PYSITELIB}/pandas/tests/tseries/offsets/test_business_hour.py 3944${PYSITELIB}/pandas/tests/tseries/offsets/test_business_hour.py
3720${PYSITELIB}/pandas/tests/tseries/offsets/test_business_hour.pyc 3945${PYSITELIB}/pandas/tests/tseries/offsets/test_business_hour.pyc
3721${PYSITELIB}/pandas/tests/tseries/offsets/test_business_hour.pyo 3946${PYSITELIB}/pandas/tests/tseries/offsets/test_business_hour.pyo
 3947${PYSITELIB}/pandas/tests/tseries/offsets/test_business_month.py
 3948${PYSITELIB}/pandas/tests/tseries/offsets/test_business_month.pyc
 3949${PYSITELIB}/pandas/tests/tseries/offsets/test_business_month.pyo
 3950${PYSITELIB}/pandas/tests/tseries/offsets/test_business_quarter.py
 3951${PYSITELIB}/pandas/tests/tseries/offsets/test_business_quarter.pyc
 3952${PYSITELIB}/pandas/tests/tseries/offsets/test_business_quarter.pyo
 3953${PYSITELIB}/pandas/tests/tseries/offsets/test_business_year.py
 3954${PYSITELIB}/pandas/tests/tseries/offsets/test_business_year.pyc
 3955${PYSITELIB}/pandas/tests/tseries/offsets/test_business_year.pyo
 3956${PYSITELIB}/pandas/tests/tseries/offsets/test_custom_business_day.py
 3957${PYSITELIB}/pandas/tests/tseries/offsets/test_custom_business_day.pyc
 3958${PYSITELIB}/pandas/tests/tseries/offsets/test_custom_business_day.pyo
3722${PYSITELIB}/pandas/tests/tseries/offsets/test_custom_business_hour.py 3959${PYSITELIB}/pandas/tests/tseries/offsets/test_custom_business_hour.py
3723${PYSITELIB}/pandas/tests/tseries/offsets/test_custom_business_hour.pyc 3960${PYSITELIB}/pandas/tests/tseries/offsets/test_custom_business_hour.pyc
3724${PYSITELIB}/pandas/tests/tseries/offsets/test_custom_business_hour.pyo 3961${PYSITELIB}/pandas/tests/tseries/offsets/test_custom_business_hour.pyo
 3962${PYSITELIB}/pandas/tests/tseries/offsets/test_custom_business_month.py
 3963${PYSITELIB}/pandas/tests/tseries/offsets/test_custom_business_month.pyc
 3964${PYSITELIB}/pandas/tests/tseries/offsets/test_custom_business_month.pyo
3725${PYSITELIB}/pandas/tests/tseries/offsets/test_dst.py 3965${PYSITELIB}/pandas/tests/tseries/offsets/test_dst.py
3726${PYSITELIB}/pandas/tests/tseries/offsets/test_dst.pyc 3966${PYSITELIB}/pandas/tests/tseries/offsets/test_dst.pyc
3727${PYSITELIB}/pandas/tests/tseries/offsets/test_dst.pyo 3967${PYSITELIB}/pandas/tests/tseries/offsets/test_dst.pyo
 3968${PYSITELIB}/pandas/tests/tseries/offsets/test_easter.py
 3969${PYSITELIB}/pandas/tests/tseries/offsets/test_easter.pyc
 3970${PYSITELIB}/pandas/tests/tseries/offsets/test_easter.pyo
3728${PYSITELIB}/pandas/tests/tseries/offsets/test_fiscal.py 3971${PYSITELIB}/pandas/tests/tseries/offsets/test_fiscal.py
3729${PYSITELIB}/pandas/tests/tseries/offsets/test_fiscal.pyc 3972${PYSITELIB}/pandas/tests/tseries/offsets/test_fiscal.pyc
3730${PYSITELIB}/pandas/tests/tseries/offsets/test_fiscal.pyo 3973${PYSITELIB}/pandas/tests/tseries/offsets/test_fiscal.pyo
 3974${PYSITELIB}/pandas/tests/tseries/offsets/test_index.py
 3975${PYSITELIB}/pandas/tests/tseries/offsets/test_index.pyc
 3976${PYSITELIB}/pandas/tests/tseries/offsets/test_index.pyo
3731${PYSITELIB}/pandas/tests/tseries/offsets/test_month.py 3977${PYSITELIB}/pandas/tests/tseries/offsets/test_month.py
3732${PYSITELIB}/pandas/tests/tseries/offsets/test_month.pyc 3978${PYSITELIB}/pandas/tests/tseries/offsets/test_month.pyc
3733${PYSITELIB}/pandas/tests/tseries/offsets/test_month.pyo 3979${PYSITELIB}/pandas/tests/tseries/offsets/test_month.pyo
3734${PYSITELIB}/pandas/tests/tseries/offsets/test_offsets.py 3980${PYSITELIB}/pandas/tests/tseries/offsets/test_offsets.py
3735${PYSITELIB}/pandas/tests/tseries/offsets/test_offsets.pyc 3981${PYSITELIB}/pandas/tests/tseries/offsets/test_offsets.pyc
3736${PYSITELIB}/pandas/tests/tseries/offsets/test_offsets.pyo 3982${PYSITELIB}/pandas/tests/tseries/offsets/test_offsets.pyo
3737${PYSITELIB}/pandas/tests/tseries/offsets/test_offsets_properties.py 3983${PYSITELIB}/pandas/tests/tseries/offsets/test_offsets_properties.py
3738${PYSITELIB}/pandas/tests/tseries/offsets/test_offsets_properties.pyc 3984${PYSITELIB}/pandas/tests/tseries/offsets/test_offsets_properties.pyc
3739${PYSITELIB}/pandas/tests/tseries/offsets/test_offsets_properties.pyo 3985${PYSITELIB}/pandas/tests/tseries/offsets/test_offsets_properties.pyo
3740${PYSITELIB}/pandas/tests/tseries/offsets/test_opening_times.py 3986${PYSITELIB}/pandas/tests/tseries/offsets/test_quarter.py
3741${PYSITELIB}/pandas/tests/tseries/offsets/test_opening_times.pyc 3987${PYSITELIB}/pandas/tests/tseries/offsets/test_quarter.pyc
3742${PYSITELIB}/pandas/tests/tseries/offsets/test_opening_times.pyo 3988${PYSITELIB}/pandas/tests/tseries/offsets/test_quarter.pyo
3743${PYSITELIB}/pandas/tests/tseries/offsets/test_ticks.py 3989${PYSITELIB}/pandas/tests/tseries/offsets/test_ticks.py
3744${PYSITELIB}/pandas/tests/tseries/offsets/test_ticks.pyc 3990${PYSITELIB}/pandas/tests/tseries/offsets/test_ticks.pyc
3745${PYSITELIB}/pandas/tests/tseries/offsets/test_ticks.pyo 3991${PYSITELIB}/pandas/tests/tseries/offsets/test_ticks.pyo
3746${PYSITELIB}/pandas/tests/tseries/offsets/test_week.py 3992${PYSITELIB}/pandas/tests/tseries/offsets/test_week.py
3747${PYSITELIB}/pandas/tests/tseries/offsets/test_week.pyc 3993${PYSITELIB}/pandas/tests/tseries/offsets/test_week.pyc
3748${PYSITELIB}/pandas/tests/tseries/offsets/test_week.pyo 3994${PYSITELIB}/pandas/tests/tseries/offsets/test_week.pyo
3749${PYSITELIB}/pandas/tests/tseries/offsets/test_yqm_offsets.py 3995${PYSITELIB}/pandas/tests/tseries/offsets/test_year.py
3750${PYSITELIB}/pandas/tests/tseries/offsets/test_yqm_offsets.pyc 3996${PYSITELIB}/pandas/tests/tseries/offsets/test_year.pyc
3751${PYSITELIB}/pandas/tests/tseries/offsets/test_yqm_offsets.pyo 3997${PYSITELIB}/pandas/tests/tseries/offsets/test_year.pyo
3752${PYSITELIB}/pandas/tests/tslibs/__init__.py 3998${PYSITELIB}/pandas/tests/tslibs/__init__.py
3753${PYSITELIB}/pandas/tests/tslibs/__init__.pyc 3999${PYSITELIB}/pandas/tests/tslibs/__init__.pyc
3754${PYSITELIB}/pandas/tests/tslibs/__init__.pyo 4000${PYSITELIB}/pandas/tests/tslibs/__init__.pyo
3755${PYSITELIB}/pandas/tests/tslibs/test_api.py 4001${PYSITELIB}/pandas/tests/tslibs/test_api.py
3756${PYSITELIB}/pandas/tests/tslibs/test_api.pyc 4002${PYSITELIB}/pandas/tests/tslibs/test_api.pyc
3757${PYSITELIB}/pandas/tests/tslibs/test_api.pyo 4003${PYSITELIB}/pandas/tests/tslibs/test_api.pyo
3758${PYSITELIB}/pandas/tests/tslibs/test_array_to_datetime.py 4004${PYSITELIB}/pandas/tests/tslibs/test_array_to_datetime.py
3759${PYSITELIB}/pandas/tests/tslibs/test_array_to_datetime.pyc 4005${PYSITELIB}/pandas/tests/tslibs/test_array_to_datetime.pyc
3760${PYSITELIB}/pandas/tests/tslibs/test_array_to_datetime.pyo 4006${PYSITELIB}/pandas/tests/tslibs/test_array_to_datetime.pyo
3761${PYSITELIB}/pandas/tests/tslibs/test_ccalendar.py 4007${PYSITELIB}/pandas/tests/tslibs/test_ccalendar.py
3762${PYSITELIB}/pandas/tests/tslibs/test_ccalendar.pyc 4008${PYSITELIB}/pandas/tests/tslibs/test_ccalendar.pyc
3763${PYSITELIB}/pandas/tests/tslibs/test_ccalendar.pyo 4009${PYSITELIB}/pandas/tests/tslibs/test_ccalendar.pyo
3764${PYSITELIB}/pandas/tests/tslibs/test_conversion.py 4010${PYSITELIB}/pandas/tests/tslibs/test_conversion.py
3765${PYSITELIB}/pandas/tests/tslibs/test_conversion.pyc 4011${PYSITELIB}/pandas/tests/tslibs/test_conversion.pyc
3766${PYSITELIB}/pandas/tests/tslibs/test_conversion.pyo 4012${PYSITELIB}/pandas/tests/tslibs/test_conversion.pyo
3767${PYSITELIB}/pandas/tests/tslibs/test_fields.py 4013${PYSITELIB}/pandas/tests/tslibs/test_fields.py
3768${PYSITELIB}/pandas/tests/tslibs/test_fields.pyc 4014${PYSITELIB}/pandas/tests/tslibs/test_fields.pyc
3769${PYSITELIB}/pandas/tests/tslibs/test_fields.pyo 4015${PYSITELIB}/pandas/tests/tslibs/test_fields.pyo
3770${PYSITELIB}/pandas/tests/tslibs/test_libfrequencies.py 4016${PYSITELIB}/pandas/tests/tslibs/test_libfrequencies.py
3771${PYSITELIB}/pandas/tests/tslibs/test_libfrequencies.pyc 4017${PYSITELIB}/pandas/tests/tslibs/test_libfrequencies.pyc
3772${PYSITELIB}/pandas/tests/tslibs/test_libfrequencies.pyo 4018${PYSITELIB}/pandas/tests/tslibs/test_libfrequencies.pyo
3773${PYSITELIB}/pandas/tests/tslibs/test_liboffsets.py 4019${PYSITELIB}/pandas/tests/tslibs/test_liboffsets.py
3774${PYSITELIB}/pandas/tests/tslibs/test_liboffsets.pyc 4020${PYSITELIB}/pandas/tests/tslibs/test_liboffsets.pyc
3775${PYSITELIB}/pandas/tests/tslibs/test_liboffsets.pyo 4021${PYSITELIB}/pandas/tests/tslibs/test_liboffsets.pyo
 4022${PYSITELIB}/pandas/tests/tslibs/test_np_datetime.py
 4023${PYSITELIB}/pandas/tests/tslibs/test_np_datetime.pyc
 4024${PYSITELIB}/pandas/tests/tslibs/test_np_datetime.pyo
3776${PYSITELIB}/pandas/tests/tslibs/test_parse_iso8601.py 4025${PYSITELIB}/pandas/tests/tslibs/test_parse_iso8601.py
3777${PYSITELIB}/pandas/tests/tslibs/test_parse_iso8601.pyc 4026${PYSITELIB}/pandas/tests/tslibs/test_parse_iso8601.pyc
3778${PYSITELIB}/pandas/tests/tslibs/test_parse_iso8601.pyo 4027${PYSITELIB}/pandas/tests/tslibs/test_parse_iso8601.pyo
3779${PYSITELIB}/pandas/tests/tslibs/test_parsing.py 4028${PYSITELIB}/pandas/tests/tslibs/test_parsing.py
3780${PYSITELIB}/pandas/tests/tslibs/test_parsing.pyc 4029${PYSITELIB}/pandas/tests/tslibs/test_parsing.pyc
3781${PYSITELIB}/pandas/tests/tslibs/test_parsing.pyo 4030${PYSITELIB}/pandas/tests/tslibs/test_parsing.pyo
3782${PYSITELIB}/pandas/tests/tslibs/test_period_asfreq.py 4031${PYSITELIB}/pandas/tests/tslibs/test_period_asfreq.py
3783${PYSITELIB}/pandas/tests/tslibs/test_period_asfreq.pyc 4032${PYSITELIB}/pandas/tests/tslibs/test_period_asfreq.pyc
3784${PYSITELIB}/pandas/tests/tslibs/test_period_asfreq.pyo 4033${PYSITELIB}/pandas/tests/tslibs/test_period_asfreq.pyo
 4034${PYSITELIB}/pandas/tests/tslibs/test_resolution.py
 4035${PYSITELIB}/pandas/tests/tslibs/test_resolution.pyc
 4036${PYSITELIB}/pandas/tests/tslibs/test_resolution.pyo
3785${PYSITELIB}/pandas/tests/tslibs/test_timedeltas.py 4037${PYSITELIB}/pandas/tests/tslibs/test_timedeltas.py
3786${PYSITELIB}/pandas/tests/tslibs/test_timedeltas.pyc 4038${PYSITELIB}/pandas/tests/tslibs/test_timedeltas.pyc
3787${PYSITELIB}/pandas/tests/tslibs/test_timedeltas.pyo 4039${PYSITELIB}/pandas/tests/tslibs/test_timedeltas.pyo
3788${PYSITELIB}/pandas/tests/tslibs/test_timezones.py 4040${PYSITELIB}/pandas/tests/tslibs/test_timezones.py
3789${PYSITELIB}/pandas/tests/tslibs/test_timezones.pyc 4041${PYSITELIB}/pandas/tests/tslibs/test_timezones.pyc
3790${PYSITELIB}/pandas/tests/tslibs/test_timezones.pyo 4042${PYSITELIB}/pandas/tests/tslibs/test_timezones.pyo
3791${PYSITELIB}/pandas/tests/tslibs/test_to_offset.py 4043${PYSITELIB}/pandas/tests/tslibs/test_to_offset.py
3792${PYSITELIB}/pandas/tests/tslibs/test_to_offset.pyc 4044${PYSITELIB}/pandas/tests/tslibs/test_to_offset.pyc
3793${PYSITELIB}/pandas/tests/tslibs/test_to_offset.pyo 4045${PYSITELIB}/pandas/tests/tslibs/test_to_offset.pyo
 4046${PYSITELIB}/pandas/tests/tslibs/test_tzconversion.py
 4047${PYSITELIB}/pandas/tests/tslibs/test_tzconversion.pyc
 4048${PYSITELIB}/pandas/tests/tslibs/test_tzconversion.pyo
3794${PYSITELIB}/pandas/tests/util/__init__.py 4049${PYSITELIB}/pandas/tests/util/__init__.py
3795${PYSITELIB}/pandas/tests/util/__init__.pyc 4050${PYSITELIB}/pandas/tests/util/__init__.pyc
3796${PYSITELIB}/pandas/tests/util/__init__.pyo 4051${PYSITELIB}/pandas/tests/util/__init__.pyo
3797${PYSITELIB}/pandas/tests/util/conftest.py 4052${PYSITELIB}/pandas/tests/util/conftest.py
3798${PYSITELIB}/pandas/tests/util/conftest.pyc 4053${PYSITELIB}/pandas/tests/util/conftest.pyc
3799${PYSITELIB}/pandas/tests/util/conftest.pyo 4054${PYSITELIB}/pandas/tests/util/conftest.pyo
3800${PYSITELIB}/pandas/tests/util/test_assert_almost_equal.py 4055${PYSITELIB}/pandas/tests/util/test_assert_almost_equal.py
3801${PYSITELIB}/pandas/tests/util/test_assert_almost_equal.pyc 4056${PYSITELIB}/pandas/tests/util/test_assert_almost_equal.pyc
3802${PYSITELIB}/pandas/tests/util/test_assert_almost_equal.pyo 4057${PYSITELIB}/pandas/tests/util/test_assert_almost_equal.pyo
3803${PYSITELIB}/pandas/tests/util/test_assert_attr_equal.py 4058${PYSITELIB}/pandas/tests/util/test_assert_attr_equal.py
3804${PYSITELIB}/pandas/tests/util/test_assert_attr_equal.pyc 4059${PYSITELIB}/pandas/tests/util/test_assert_attr_equal.pyc
3805${PYSITELIB}/pandas/tests/util/test_assert_attr_equal.pyo 4060${PYSITELIB}/pandas/tests/util/test_assert_attr_equal.pyo
3806${PYSITELIB}/pandas/tests/util/test_assert_categorical_equal.py 4061${PYSITELIB}/pandas/tests/util/test_assert_categorical_equal.py
@@ -3832,119 +4087,125 @@ ${PYSITELIB}/pandas/tests/util/test_depr @@ -3832,119 +4087,125 @@ ${PYSITELIB}/pandas/tests/util/test_depr
3832${PYSITELIB}/pandas/tests/util/test_deprecate.pyo 4087${PYSITELIB}/pandas/tests/util/test_deprecate.pyo
3833${PYSITELIB}/pandas/tests/util/test_deprecate_kwarg.py 4088${PYSITELIB}/pandas/tests/util/test_deprecate_kwarg.py
3834${PYSITELIB}/pandas/tests/util/test_deprecate_kwarg.pyc 4089${PYSITELIB}/pandas/tests/util/test_deprecate_kwarg.pyc
3835${PYSITELIB}/pandas/tests/util/test_deprecate_kwarg.pyo 4090${PYSITELIB}/pandas/tests/util/test_deprecate_kwarg.pyo
3836${PYSITELIB}/pandas/tests/util/test_deprecate_nonkeyword_arguments.py 4091${PYSITELIB}/pandas/tests/util/test_deprecate_nonkeyword_arguments.py
3837${PYSITELIB}/pandas/tests/util/test_deprecate_nonkeyword_arguments.pyc 4092${PYSITELIB}/pandas/tests/util/test_deprecate_nonkeyword_arguments.pyc
3838${PYSITELIB}/pandas/tests/util/test_deprecate_nonkeyword_arguments.pyo 4093${PYSITELIB}/pandas/tests/util/test_deprecate_nonkeyword_arguments.pyo
3839${PYSITELIB}/pandas/tests/util/test_doc.py 4094${PYSITELIB}/pandas/tests/util/test_doc.py
3840${PYSITELIB}/pandas/tests/util/test_doc.pyc 4095${PYSITELIB}/pandas/tests/util/test_doc.pyc
3841${PYSITELIB}/pandas/tests/util/test_doc.pyo 4096${PYSITELIB}/pandas/tests/util/test_doc.pyo
3842${PYSITELIB}/pandas/tests/util/test_hashing.py 4097${PYSITELIB}/pandas/tests/util/test_hashing.py
3843${PYSITELIB}/pandas/tests/util/test_hashing.pyc 4098${PYSITELIB}/pandas/tests/util/test_hashing.pyc
3844${PYSITELIB}/pandas/tests/util/test_hashing.pyo 4099${PYSITELIB}/pandas/tests/util/test_hashing.pyo
 4100${PYSITELIB}/pandas/tests/util/test_make_objects.py
 4101${PYSITELIB}/pandas/tests/util/test_make_objects.pyc
 4102${PYSITELIB}/pandas/tests/util/test_make_objects.pyo
3845${PYSITELIB}/pandas/tests/util/test_numba.py 4103${PYSITELIB}/pandas/tests/util/test_numba.py
3846${PYSITELIB}/pandas/tests/util/test_numba.pyc 4104${PYSITELIB}/pandas/tests/util/test_numba.pyc
3847${PYSITELIB}/pandas/tests/util/test_numba.pyo 4105${PYSITELIB}/pandas/tests/util/test_numba.pyo
 4106${PYSITELIB}/pandas/tests/util/test_rewrite_warning.py
 4107${PYSITELIB}/pandas/tests/util/test_rewrite_warning.pyc
 4108${PYSITELIB}/pandas/tests/util/test_rewrite_warning.pyo
3848${PYSITELIB}/pandas/tests/util/test_safe_import.py 4109${PYSITELIB}/pandas/tests/util/test_safe_import.py
3849${PYSITELIB}/pandas/tests/util/test_safe_import.pyc 4110${PYSITELIB}/pandas/tests/util/test_safe_import.pyc
3850${PYSITELIB}/pandas/tests/util/test_safe_import.pyo 4111${PYSITELIB}/pandas/tests/util/test_safe_import.pyo
 4112${PYSITELIB}/pandas/tests/util/test_shares_memory.py
 4113${PYSITELIB}/pandas/tests/util/test_shares_memory.pyc
 4114${PYSITELIB}/pandas/tests/util/test_shares_memory.pyo
3851${PYSITELIB}/pandas/tests/util/test_show_versions.py 4115${PYSITELIB}/pandas/tests/util/test_show_versions.py
3852${PYSITELIB}/pandas/tests/util/test_show_versions.pyc 4116${PYSITELIB}/pandas/tests/util/test_show_versions.pyc
3853${PYSITELIB}/pandas/tests/util/test_show_versions.pyo 4117${PYSITELIB}/pandas/tests/util/test_show_versions.pyo
3854${PYSITELIB}/pandas/tests/util/test_util.py 4118${PYSITELIB}/pandas/tests/util/test_util.py
3855${PYSITELIB}/pandas/tests/util/test_util.pyc 4119${PYSITELIB}/pandas/tests/util/test_util.pyc
3856${PYSITELIB}/pandas/tests/util/test_util.pyo 4120${PYSITELIB}/pandas/tests/util/test_util.pyo
3857${PYSITELIB}/pandas/tests/util/test_validate_args.py 4121${PYSITELIB}/pandas/tests/util/test_validate_args.py
3858${PYSITELIB}/pandas/tests/util/test_validate_args.pyc 4122${PYSITELIB}/pandas/tests/util/test_validate_args.pyc
3859${PYSITELIB}/pandas/tests/util/test_validate_args.pyo 4123${PYSITELIB}/pandas/tests/util/test_validate_args.pyo
3860${PYSITELIB}/pandas/tests/util/test_validate_args_and_kwargs.py 4124${PYSITELIB}/pandas/tests/util/test_validate_args_and_kwargs.py
3861${PYSITELIB}/pandas/tests/util/test_validate_args_and_kwargs.pyc 4125${PYSITELIB}/pandas/tests/util/test_validate_args_and_kwargs.pyc
3862${PYSITELIB}/pandas/tests/util/test_validate_args_and_kwargs.pyo 4126${PYSITELIB}/pandas/tests/util/test_validate_args_and_kwargs.pyo
 4127${PYSITELIB}/pandas/tests/util/test_validate_inclusive.py
 4128${PYSITELIB}/pandas/tests/util/test_validate_inclusive.pyc
 4129${PYSITELIB}/pandas/tests/util/test_validate_inclusive.pyo
3863${PYSITELIB}/pandas/tests/util/test_validate_kwargs.py 4130${PYSITELIB}/pandas/tests/util/test_validate_kwargs.py
3864${PYSITELIB}/pandas/tests/util/test_validate_kwargs.pyc 4131${PYSITELIB}/pandas/tests/util/test_validate_kwargs.pyc
3865${PYSITELIB}/pandas/tests/util/test_validate_kwargs.pyo 4132${PYSITELIB}/pandas/tests/util/test_validate_kwargs.pyo
3866${PYSITELIB}/pandas/tests/window/__init__.py 4133${PYSITELIB}/pandas/tests/window/__init__.py
3867${PYSITELIB}/pandas/tests/window/__init__.pyc 4134${PYSITELIB}/pandas/tests/window/__init__.pyc
3868${PYSITELIB}/pandas/tests/window/__init__.pyo 4135${PYSITELIB}/pandas/tests/window/__init__.pyo
3869${PYSITELIB}/pandas/tests/window/conftest.py 4136${PYSITELIB}/pandas/tests/window/conftest.py
3870${PYSITELIB}/pandas/tests/window/conftest.pyc 4137${PYSITELIB}/pandas/tests/window/conftest.pyc
3871${PYSITELIB}/pandas/tests/window/conftest.pyo 4138${PYSITELIB}/pandas/tests/window/conftest.pyo
3872${PYSITELIB}/pandas/tests/window/moments/__init__.py 4139${PYSITELIB}/pandas/tests/window/moments/__init__.py
3873${PYSITELIB}/pandas/tests/window/moments/__init__.pyc 4140${PYSITELIB}/pandas/tests/window/moments/__init__.pyc
3874${PYSITELIB}/pandas/tests/window/moments/__init__.pyo 4141${PYSITELIB}/pandas/tests/window/moments/__init__.pyo
3875${PYSITELIB}/pandas/tests/window/moments/conftest.py 4142${PYSITELIB}/pandas/tests/window/moments/conftest.py
3876${PYSITELIB}/pandas/tests/window/moments/conftest.pyc 4143${PYSITELIB}/pandas/tests/window/moments/conftest.pyc
3877${PYSITELIB}/pandas/tests/window/moments/conftest.pyo 4144${PYSITELIB}/pandas/tests/window/moments/conftest.pyo
3878${PYSITELIB}/pandas/tests/window/moments/test_moments_consistency_ewm.py 4145${PYSITELIB}/pandas/tests/window/moments/test_moments_consistency_ewm.py
3879${PYSITELIB}/pandas/tests/window/moments/test_moments_consistency_ewm.pyc 4146${PYSITELIB}/pandas/tests/window/moments/test_moments_consistency_ewm.pyc
3880${PYSITELIB}/pandas/tests/window/moments/test_moments_consistency_ewm.pyo 4147${PYSITELIB}/pandas/tests/window/moments/test_moments_consistency_ewm.pyo
3881${PYSITELIB}/pandas/tests/window/moments/test_moments_consistency_expanding.py 4148${PYSITELIB}/pandas/tests/window/moments/test_moments_consistency_expanding.py
3882${PYSITELIB}/pandas/tests/window/moments/test_moments_consistency_expanding.pyc 4149${PYSITELIB}/pandas/tests/window/moments/test_moments_consistency_expanding.pyc
3883${PYSITELIB}/pandas/tests/window/moments/test_moments_consistency_expanding.pyo 4150${PYSITELIB}/pandas/tests/window/moments/test_moments_consistency_expanding.pyo
3884${PYSITELIB}/pandas/tests/window/moments/test_moments_consistency_rolling.py 4151${PYSITELIB}/pandas/tests/window/moments/test_moments_consistency_rolling.py
3885${PYSITELIB}/pandas/tests/window/moments/test_moments_consistency_rolling.pyc 4152${PYSITELIB}/pandas/tests/window/moments/test_moments_consistency_rolling.pyc
3886${PYSITELIB}/pandas/tests/window/moments/test_moments_consistency_rolling.pyo 4153${PYSITELIB}/pandas/tests/window/moments/test_moments_consistency_rolling.pyo
3887${PYSITELIB}/pandas/tests/window/moments/test_moments_ewm.py 
3888${PYSITELIB}/pandas/tests/window/moments/test_moments_ewm.pyc 
3889${PYSITELIB}/pandas/tests/window/moments/test_moments_ewm.pyo 
3890${PYSITELIB}/pandas/tests/window/moments/test_moments_rolling.py 
3891${PYSITELIB}/pandas/tests/window/moments/test_moments_rolling.pyc 
3892${PYSITELIB}/pandas/tests/window/moments/test_moments_rolling.pyo 
3893${PYSITELIB}/pandas/tests/window/moments/test_moments_rolling_apply.py 
3894${PYSITELIB}/pandas/tests/window/moments/test_moments_rolling_apply.pyc 
3895${PYSITELIB}/pandas/tests/window/moments/test_moments_rolling_apply.pyo 
3896${PYSITELIB}/pandas/tests/window/moments/test_moments_rolling_functions.py 
3897${PYSITELIB}/pandas/tests/window/moments/test_moments_rolling_functions.pyc 
3898${PYSITELIB}/pandas/tests/window/moments/test_moments_rolling_functions.pyo 
3899${PYSITELIB}/pandas/tests/window/moments/test_moments_rolling_quantile.py 
3900${PYSITELIB}/pandas/tests/window/moments/test_moments_rolling_quantile.pyc 
3901${PYSITELIB}/pandas/tests/window/moments/test_moments_rolling_quantile.pyo 
3902${PYSITELIB}/pandas/tests/window/moments/test_moments_rolling_skew_kurt.py 
3903${PYSITELIB}/pandas/tests/window/moments/test_moments_rolling_skew_kurt.pyc 
3904${PYSITELIB}/pandas/tests/window/moments/test_moments_rolling_skew_kurt.pyo 
3905${PYSITELIB}/pandas/tests/window/test_api.py 4154${PYSITELIB}/pandas/tests/window/test_api.py
3906${PYSITELIB}/pandas/tests/window/test_api.pyc 4155${PYSITELIB}/pandas/tests/window/test_api.pyc
3907${PYSITELIB}/pandas/tests/window/test_api.pyo 4156${PYSITELIB}/pandas/tests/window/test_api.pyo
3908${PYSITELIB}/pandas/tests/window/test_apply.py 4157${PYSITELIB}/pandas/tests/window/test_apply.py
3909${PYSITELIB}/pandas/tests/window/test_apply.pyc 4158${PYSITELIB}/pandas/tests/window/test_apply.pyc
3910${PYSITELIB}/pandas/tests/window/test_apply.pyo 4159${PYSITELIB}/pandas/tests/window/test_apply.pyo
3911${PYSITELIB}/pandas/tests/window/test_base_indexer.py 4160${PYSITELIB}/pandas/tests/window/test_base_indexer.py
3912${PYSITELIB}/pandas/tests/window/test_base_indexer.pyc 4161${PYSITELIB}/pandas/tests/window/test_base_indexer.pyc
3913${PYSITELIB}/pandas/tests/window/test_base_indexer.pyo 4162${PYSITELIB}/pandas/tests/window/test_base_indexer.pyo
 4163${PYSITELIB}/pandas/tests/window/test_cython_aggregations.py
 4164${PYSITELIB}/pandas/tests/window/test_cython_aggregations.pyc
 4165${PYSITELIB}/pandas/tests/window/test_cython_aggregations.pyo
3914${PYSITELIB}/pandas/tests/window/test_dtypes.py 4166${PYSITELIB}/pandas/tests/window/test_dtypes.py
3915${PYSITELIB}/pandas/tests/window/test_dtypes.pyc 4167${PYSITELIB}/pandas/tests/window/test_dtypes.pyc
3916${PYSITELIB}/pandas/tests/window/test_dtypes.pyo 4168${PYSITELIB}/pandas/tests/window/test_dtypes.pyo
3917${PYSITELIB}/pandas/tests/window/test_ewm.py 4169${PYSITELIB}/pandas/tests/window/test_ewm.py
3918${PYSITELIB}/pandas/tests/window/test_ewm.pyc 4170${PYSITELIB}/pandas/tests/window/test_ewm.pyc
3919${PYSITELIB}/pandas/tests/window/test_ewm.pyo 4171${PYSITELIB}/pandas/tests/window/test_ewm.pyo
3920${PYSITELIB}/pandas/tests/window/test_expanding.py 4172${PYSITELIB}/pandas/tests/window/test_expanding.py
3921${PYSITELIB}/pandas/tests/window/test_expanding.pyc 4173${PYSITELIB}/pandas/tests/window/test_expanding.pyc
3922${PYSITELIB}/pandas/tests/window/test_expanding.pyo 4174${PYSITELIB}/pandas/tests/window/test_expanding.pyo
3923${PYSITELIB}/pandas/tests/window/test_groupby.py 4175${PYSITELIB}/pandas/tests/window/test_groupby.py
3924${PYSITELIB}/pandas/tests/window/test_groupby.pyc 4176${PYSITELIB}/pandas/tests/window/test_groupby.pyc
3925${PYSITELIB}/pandas/tests/window/test_groupby.pyo 4177${PYSITELIB}/pandas/tests/window/test_groupby.pyo
3926${PYSITELIB}/pandas/tests/window/test_numba.py 4178${PYSITELIB}/pandas/tests/window/test_numba.py
3927${PYSITELIB}/pandas/tests/window/test_numba.pyc 4179${PYSITELIB}/pandas/tests/window/test_numba.pyc
3928${PYSITELIB}/pandas/tests/window/test_numba.pyo 4180${PYSITELIB}/pandas/tests/window/test_numba.pyo
3929${PYSITELIB}/pandas/tests/window/test_online.py 4181${PYSITELIB}/pandas/tests/window/test_online.py
3930${PYSITELIB}/pandas/tests/window/test_online.pyc 4182${PYSITELIB}/pandas/tests/window/test_online.pyc
3931${PYSITELIB}/pandas/tests/window/test_online.pyo 4183${PYSITELIB}/pandas/tests/window/test_online.pyo
3932${PYSITELIB}/pandas/tests/window/test_pairwise.py 4184${PYSITELIB}/pandas/tests/window/test_pairwise.py
3933${PYSITELIB}/pandas/tests/window/test_pairwise.pyc 4185${PYSITELIB}/pandas/tests/window/test_pairwise.pyc
3934${PYSITELIB}/pandas/tests/window/test_pairwise.pyo 4186${PYSITELIB}/pandas/tests/window/test_pairwise.pyo
3935${PYSITELIB}/pandas/tests/window/test_rolling.py 4187${PYSITELIB}/pandas/tests/window/test_rolling.py
3936${PYSITELIB}/pandas/tests/window/test_rolling.pyc 4188${PYSITELIB}/pandas/tests/window/test_rolling.pyc
3937${PYSITELIB}/pandas/tests/window/test_rolling.pyo 4189${PYSITELIB}/pandas/tests/window/test_rolling.pyo
 4190${PYSITELIB}/pandas/tests/window/test_rolling_functions.py
 4191${PYSITELIB}/pandas/tests/window/test_rolling_functions.pyc
 4192${PYSITELIB}/pandas/tests/window/test_rolling_functions.pyo
 4193${PYSITELIB}/pandas/tests/window/test_rolling_quantile.py
 4194${PYSITELIB}/pandas/tests/window/test_rolling_quantile.pyc
 4195${PYSITELIB}/pandas/tests/window/test_rolling_quantile.pyo
 4196${PYSITELIB}/pandas/tests/window/test_rolling_skew_kurt.py
 4197${PYSITELIB}/pandas/tests/window/test_rolling_skew_kurt.pyc
 4198${PYSITELIB}/pandas/tests/window/test_rolling_skew_kurt.pyo
3938${PYSITELIB}/pandas/tests/window/test_timeseries_window.py 4199${PYSITELIB}/pandas/tests/window/test_timeseries_window.py
3939${PYSITELIB}/pandas/tests/window/test_timeseries_window.pyc 4200${PYSITELIB}/pandas/tests/window/test_timeseries_window.pyc
3940${PYSITELIB}/pandas/tests/window/test_timeseries_window.pyo 4201${PYSITELIB}/pandas/tests/window/test_timeseries_window.pyo
3941${PYSITELIB}/pandas/tests/window/test_win_type.py 4202${PYSITELIB}/pandas/tests/window/test_win_type.py
3942${PYSITELIB}/pandas/tests/window/test_win_type.pyc 4203${PYSITELIB}/pandas/tests/window/test_win_type.pyc
3943${PYSITELIB}/pandas/tests/window/test_win_type.pyo 4204${PYSITELIB}/pandas/tests/window/test_win_type.pyo
3944${PYSITELIB}/pandas/tseries/__init__.py 4205${PYSITELIB}/pandas/tseries/__init__.py
3945${PYSITELIB}/pandas/tseries/__init__.pyc 4206${PYSITELIB}/pandas/tseries/__init__.pyc
3946${PYSITELIB}/pandas/tseries/__init__.pyo 4207${PYSITELIB}/pandas/tseries/__init__.pyo
3947${PYSITELIB}/pandas/tseries/api.py 4208${PYSITELIB}/pandas/tseries/api.py
3948${PYSITELIB}/pandas/tseries/api.pyc 4209${PYSITELIB}/pandas/tseries/api.pyc
3949${PYSITELIB}/pandas/tseries/api.pyo 4210${PYSITELIB}/pandas/tseries/api.pyo
3950${PYSITELIB}/pandas/tseries/frequencies.py 4211${PYSITELIB}/pandas/tseries/frequencies.py
@@ -3952,29 +4213,26 @@ ${PYSITELIB}/pandas/tseries/frequencies. @@ -3952,29 +4213,26 @@ ${PYSITELIB}/pandas/tseries/frequencies.
3952${PYSITELIB}/pandas/tseries/frequencies.pyo 4213${PYSITELIB}/pandas/tseries/frequencies.pyo
3953${PYSITELIB}/pandas/tseries/holiday.py 4214${PYSITELIB}/pandas/tseries/holiday.py
3954${PYSITELIB}/pandas/tseries/holiday.pyc 4215${PYSITELIB}/pandas/tseries/holiday.pyc
3955${PYSITELIB}/pandas/tseries/holiday.pyo 4216${PYSITELIB}/pandas/tseries/holiday.pyo
3956${PYSITELIB}/pandas/tseries/offsets.py 4217${PYSITELIB}/pandas/tseries/offsets.py
3957${PYSITELIB}/pandas/tseries/offsets.pyc 4218${PYSITELIB}/pandas/tseries/offsets.pyc
3958${PYSITELIB}/pandas/tseries/offsets.pyo 4219${PYSITELIB}/pandas/tseries/offsets.pyo
3959${PYSITELIB}/pandas/util/__init__.py 4220${PYSITELIB}/pandas/util/__init__.py
3960${PYSITELIB}/pandas/util/__init__.pyc 4221${PYSITELIB}/pandas/util/__init__.pyc
3961${PYSITELIB}/pandas/util/__init__.pyo 4222${PYSITELIB}/pandas/util/__init__.pyo
3962${PYSITELIB}/pandas/util/_decorators.py 4223${PYSITELIB}/pandas/util/_decorators.py
3963${PYSITELIB}/pandas/util/_decorators.pyc 4224${PYSITELIB}/pandas/util/_decorators.pyc
3964${PYSITELIB}/pandas/util/_decorators.pyo 4225${PYSITELIB}/pandas/util/_decorators.pyo
3965${PYSITELIB}/pandas/util/_depr_module.py 
3966${PYSITELIB}/pandas/util/_depr_module.pyc 
3967${PYSITELIB}/pandas/util/_depr_module.pyo 
3968${PYSITELIB}/pandas/util/_doctools.py 4226${PYSITELIB}/pandas/util/_doctools.py
3969${PYSITELIB}/pandas/util/_doctools.pyc 4227${PYSITELIB}/pandas/util/_doctools.pyc
3970${PYSITELIB}/pandas/util/_doctools.pyo 4228${PYSITELIB}/pandas/util/_doctools.pyo
3971${PYSITELIB}/pandas/util/_exceptions.py 4229${PYSITELIB}/pandas/util/_exceptions.py
3972${PYSITELIB}/pandas/util/_exceptions.pyc 4230${PYSITELIB}/pandas/util/_exceptions.pyc
3973${PYSITELIB}/pandas/util/_exceptions.pyo 4231${PYSITELIB}/pandas/util/_exceptions.pyo
3974${PYSITELIB}/pandas/util/_print_versions.py 4232${PYSITELIB}/pandas/util/_print_versions.py
3975${PYSITELIB}/pandas/util/_print_versions.pyc 4233${PYSITELIB}/pandas/util/_print_versions.pyc
3976${PYSITELIB}/pandas/util/_print_versions.pyo 4234${PYSITELIB}/pandas/util/_print_versions.pyo
3977${PYSITELIB}/pandas/util/_test_decorators.py 4235${PYSITELIB}/pandas/util/_test_decorators.py
3978${PYSITELIB}/pandas/util/_test_decorators.pyc 4236${PYSITELIB}/pandas/util/_test_decorators.pyc
3979${PYSITELIB}/pandas/util/_test_decorators.pyo 4237${PYSITELIB}/pandas/util/_test_decorators.pyo
3980${PYSITELIB}/pandas/util/_tester.py 4238${PYSITELIB}/pandas/util/_tester.py

cvs diff -r1.28 -r1.29 pkgsrc/math/py-pandas/distinfo (expand / switch to unified diff)

--- pkgsrc/math/py-pandas/distinfo 2021/12/12 20:30:49 1.28
+++ pkgsrc/math/py-pandas/distinfo 2022/11/28 21:46:51 1.29
@@ -1,5 +1,5 @@ @@ -1,5 +1,5 @@
1$NetBSD: distinfo,v 1.28 2021/12/12 20:30:49 adam Exp $ 1$NetBSD: distinfo,v 1.29 2022/11/28 21:46:51 adam Exp $
2 2
3BLAKE2s (pandas-1.3.5.tar.gz) = b49f313a6213116ef5577f9110e1560186337fff9e2d663c6788b2e91d1e86d6 3BLAKE2s (pandas-1.5.2.tar.gz) = 5ee5120f9fc4dd00099ee31f6c3db250366704dba6f9982f4607a51731a485ea
4SHA512 (pandas-1.3.5.tar.gz) = cf3f76894cae19784af6393d4a575d114b55621a3d594edd7e95ac6d5c8588a580135789c859c618acfeceeb710d2a1fdd94188a839a90be6b58af929e00a726 4SHA512 (pandas-1.5.2.tar.gz) = 1e6b653ff418c839895946123f90fffcfafd57f24dfbd6bae4e9988893b7d57d6276ed101112c8f9730af53f600d006fe3a53bbed597c0376856f2cfc90c1f05
5Size (pandas-1.3.5.tar.gz) = 4736591 bytes 5Size (pandas-1.5.2.tar.gz) = 5201551 bytes