Sun Nov 21 16:31:26 2021 UTC ()
py-pandas: Update to 1.3.4

Changelog:
What's new in 1.3.4 (October 17, 2021)

These are the changes in pandas 1.3.4. See Release notes for a full changelog
including other versions of pandas.

-------------------------------------------------------------------------------

Fixed regressions

  * Fixed regression in DataFrame.convert_dtypes() incorrectly converts byte
    strings to strings (GH43183)

  * Fixed regression in GroupBy.agg() where it was failing silently with mixed
    data types along axis=1 and MultiIndex (GH43209)

  * Fixed regression in merge() with integer and NaN keys failing with outer
    merge (GH43550)

  * Fixed regression in DataFrame.corr() raising ValueError with method=
    "spearman" on 32-bit platforms (GH43588)

  * Fixed performance regression in MultiIndex.equals() (GH43549)

  * Fixed performance regression in GroupBy.first() and GroupBy.last() with
    StringDtype (GH41596)

  * Fixed regression in Series.cat.reorder_categories() failing to update the
    categories on the Series (GH43232)

  * Fixed regression in Series.cat.categories() setter failing to update the
    categories on the Series (GH43334)

  * Fixed regression in read_csv() raising UnicodeDecodeError exception when
    memory_map=True (GH43540)

  * Fixed regression in DataFrame.explode() raising AssertionError when column
    is any scalar which is not a string (GH43314)

  * Fixed regression in Series.aggregate() attempting to pass args and kwargs
    multiple times to the user supplied func in certain cases (GH43357)

  * Fixed regression when iterating over a DataFrame.groupby.rolling object
    causing the resulting DataFrames to have an incorrect index if the input
    groupings were not sorted (GH43386)

  * Fixed regression in DataFrame.groupby.rolling.cov() and
    DataFrame.groupby.rolling.corr() computing incorrect results if the input
    groupings were not sorted (GH43386)

-------------------------------------------------------------------------------

Bug fixes

  * Fixed bug in pandas.DataFrame.groupby.rolling() and
    pandas.api.indexers.FixedForwardWindowIndexer leading to segfaults and
    window endpoints being mixed across groups (GH43267)

  * Fixed bug in GroupBy.mean() with datetimelike values including NaT values
    returning incorrect results (GH43132)

  * Fixed bug in Series.aggregate() not passing the first args to the user
    supplied func in certain cases (GH43357)

  * Fixed memory leaks in Series.rolling.quantile() and Series.rolling.median()
    (GH43339)

-------------------------------------------------------------------------------

Other

  * The minimum version of Cython needed to compile pandas is now 0.29.24 (
    GH43729)

What's new in 1.3.3 (September 12, 2021)

These are the changes in pandas 1.3.3. See Release notes for a full changelog
including other versions of pandas.

-------------------------------------------------------------------------------

Fixed regressions

  * Fixed regression in DataFrame constructor failing to broadcast for defined
    Index and len one list of Timestamp (GH42810)

  * Fixed regression in GroupBy.agg() incorrectly raising in some cases (
    GH42390)

  * Fixed regression in GroupBy.apply() where nan values were dropped even with
    dropna=False (GH43205)

  * Fixed regression in GroupBy.quantile() which was failing with pandas.NA (
    GH42849)

  * Fixed regression in merge() where on columns with ExtensionDtype or bool
    data types were cast to object in right and outer merge (GH40073)

  * Fixed regression in RangeIndex.where() and RangeIndex.putmask() raising
    AssertionError when result did not represent a RangeIndex (GH43240)

  * Fixed regression in read_parquet() where the fastparquet engine would not
    work properly with fastparquet 0.7.0 (GH43075)

  * Fixed regression in DataFrame.loc.__setitem__() raising ValueError when
    setting array as cell value (GH43422)

  * Fixed regression in is_list_like() where objects with __iter__ set to None
    would be identified as iterable (GH43373)

  * Fixed regression in DataFrame.__getitem__() raising error for slice of
    DatetimeIndex when index is non monotonic (GH43223)

  * Fixed regression in Resampler.aggregate() when used after column selection
    would raise if func is a list of aggregation functions (GH42905)

  * Fixed regression in DataFrame.corr() where Kendall correlation would
    produce incorrect results for columns with repeated values (GH43401)

  * Fixed regression in DataFrame.groupby() where aggregation on columns with
    object types dropped results on those columns (GH42395, GH43108)

  * Fixed regression in Series.fillna() raising TypeError when filling float
    Series with list-like fill value having a dtype which couldn't cast
    lostlessly (like float32 filled with float64) (GH43424)

  * Fixed regression in read_csv() raising AttributeError when the file handle
    is an tempfile.SpooledTemporaryFile object (GH43439)

  * Fixed performance regression in
    core.window.ewm.ExponentialMovingWindow.mean() (GH42333)

-------------------------------------------------------------------------------

Performance improvements

  * Performance improvement for DataFrame.__setitem__() when the key or value
    is not a DataFrame, or key is not list-like (GH43274)

-------------------------------------------------------------------------------

Bug fixes

  * Fixed bug in DataFrameGroupBy.agg() and DataFrameGroupBy.transform() with
    engine="numba" where index data was not being correctly passed into func (
    GH43133)

What's new in 1.3.2 (August 15, 2021)

These are the changes in pandas 1.3.2. See Release notes for a full changelog
including other versions of pandas.

-------------------------------------------------------------------------------

Fixed regressions

  * Performance regression in DataFrame.isin() and Series.isin() for nullable
    data types (GH42714)

  * Regression in updating values of Series using boolean index, created by
    using DataFrame.pop() (GH42530)

  * Regression in DataFrame.from_records() with empty records (GH42456)

  * Fixed regression in DataFrame.shift() where TypeError occurred when
    shifting DataFrame created by concatenation of slices and fills with values
    (GH42719)

  * Regression in DataFrame.agg() when the func argument returned lists and
    axis=1 (GH42727)

  * Regression in DataFrame.drop() does nothing if MultiIndex has duplicates
    and indexer is a tuple or list of tuples (GH42771)

  * Fixed regression where read_csv() raised a ValueError when parameters names
    and prefix were both set to None (GH42387)

  * Fixed regression in comparisons between Timestamp object and datetime64
    objects outside the implementation bounds for nanosecond datetime64 (
    GH42794)

  * Fixed regression in Styler.highlight_min() and Styler.highlight_max() where
    pandas.NA was not successfully ignored (GH42650)

  * Fixed regression in concat() where copy=False was not honored in axis=1
    Series concatenation (GH42501)

  * Regression in Series.nlargest() and Series.nsmallest() with nullable
    integer or float dtype (GH42816)

  * Fixed regression in Series.quantile() with Int64Dtype (GH42626)

  * Fixed regression in Series.groupby() and DataFrame.groupby() where
    supplying the by argument with a Series named with a tuple would
    incorrectly raise (GH42731)

-------------------------------------------------------------------------------

Bug fixes

  * Bug in read_excel() modifies the dtypes dictionary when reading a file with
    duplicate columns (GH42462)

  * 1D slices over extension types turn into N-dimensional slices over
    ExtensionArrays (GH42430)

  * Fixed bug in Series.rolling() and DataFrame.rolling() not calculating
    window bounds correctly for the first row when center=True and window is an
    offset that covers all the rows (GH42753)

  * Styler.hide_columns() now hides the index name header row as well as column
    headers (GH42101)

  * Styler.set_sticky() has amended CSS to control the column/index names and
    ensure the correct sticky positions (GH42537)

  * Bug in de-serializing datetime indexes in PYTHONOPTIMIZED mode (GH42866)

What's new in 1.3.1 (July 25, 2021)

These are the changes in pandas 1.3.1. See Release notes for a full changelog
including other versions of pandas.

-------------------------------------------------------------------------------

Fixed regressions

  * Pandas could not be built on PyPy (GH42355)

  * DataFrame constructed with an older version of pandas could not be
    unpickled (GH42345)

  * Performance regression in constructing a DataFrame from a dictionary of
    dictionaries (GH42248)

  * Fixed regression in DataFrame.agg() dropping values when the DataFrame had
    an Extension Array dtype, a duplicate index, and axis=1 (GH42380)

  * Fixed regression in DataFrame.astype() changing the order of noncontiguous
    data (GH42396)

  * Performance regression in DataFrame in reduction operations requiring
    casting such as DataFrame.mean() on integer data (GH38592)

  * Performance regression in DataFrame.to_dict() and Series.to_dict() when
    orient argument one of 'records', 'dict', or 'split' (GH42352)

  * Fixed regression in indexing with a list subclass incorrectly raising
    TypeError (GH42433, GH42461)

  * Fixed regression in DataFrame.isin() and Series.isin() raising TypeError
    with nullable data containing at least one missing value (GH42405)

  * Regression in concat() between objects with bool dtype and integer dtype
    casting to object instead of to integer (GH42092)

  * Bug in Series constructor not accepting a dask.Array (GH38645)

  * Fixed regression for SettingWithCopyWarning displaying incorrect stacklevel
    (GH42570)

  * Fixed regression for merge_asof() raising KeyError when one of the by
    columns is in the index (GH34488)

  * Fixed regression in to_datetime() returning pd.NaT for inputs that produce
    duplicated values, when cache=True (GH42259)

  * Fixed regression in SeriesGroupBy.value_counts() that resulted in an
    IndexError when called on a Series with one row (GH42618)

-------------------------------------------------------------------------------

Bug fixes

  * Fixed bug in DataFrame.transpose() dropping values when the DataFrame had
    an Extension Array dtype and a duplicate index (GH42380)

  * Fixed bug in DataFrame.to_xml() raising KeyError when called with index=
    False and an offset index (GH42458)

  * Fixed bug in Styler.set_sticky() not handling index names correctly for
    single index columns case (GH42537)

  * Fixed bug in DataFrame.copy() failing to consolidate blocks in the result (
    GH42579)

What's new in 1.3.0 (July 2, 2021)

These are the changes in pandas 1.3.0. See Release notes for a full changelog
including other versions of pandas.

Warning

When reading new Excel 2007+ (.xlsx) files, the default argument engine=None to
read_excel() will now result in using the openpyxl engine in all cases when the
option io.excel.xlsx.reader is set to "auto". Previously, some cases would use
the xlrd engine instead. See What's new 1.2.0 for background on this change.

-------------------------------------------------------------------------------

Enhancements

-------------------------------------------------------------------------------

Custom HTTP(s) headers when reading csv or json files

When reading from a remote URL that is not handled by fsspec (e.g. HTTP and
HTTPS) the dictionary passed to storage_options will be used to create the
headers included in the request. This can be used to control the User-Agent
header or send other custom headers (GH36688). For example:

In [1]: headers = {"User-Agent": "pandas"}

In [2]: df = pd.read_csv(
   ...:     "https://download.bls.gov/pub/time.series/cu/cu.item",
   ...:     sep="\t",
   ...:     storage_options=headers
   ...: )
   ...:

-------------------------------------------------------------------------------

Read and write XML documents

We added I/O support to read and render shallow versions of XML documents with
read_xml() and DataFrame.to_xml(). Using lxml as parser, both XPath 1.0 and
XSLT 1.0 are available. (GH27554)

In [1]: xml = """<?xml version='1.0' encoding='utf-8'?>
   ...: <data>
   ...:  <row>
   ...:     <shape>square</shape>
   ...:     <degrees>360</degrees>
   ...:     <sides>4.0</sides>
   ...:  </row>
   ...:  <row>
   ...:     <shape>circle</shape>
   ...:     <degrees>360</degrees>
   ...:     <sides/>
   ...:  </row>
   ...:  <row>
   ...:     <shape>triangle</shape>
   ...:     <degrees>180</degrees>
   ...:     <sides>3.0</sides>
   ...:  </row>
   ...:  </data>"""

In [2]: df = pd.read_xml(xml)
In [3]: df
Out[3]:
      shape  degrees  sides
0    square      360    4.0
1    circle      360    NaN
2  triangle      180    3.0

In [4]: df.to_xml()
Out[4]:
<?xml version='1.0' encoding='utf-8'?>
<data>
  <row>
    <index>0</index>
    <shape>square</shape>
    <degrees>360</degrees>
    <sides>4.0</sides>
  </row>
  <row>
    <index>1</index>
    <shape>circle</shape>
    <degrees>360</degrees>
    <sides/>
  </row>
  <row>
    <index>2</index>
    <shape>triangle</shape>
    <degrees>180</degrees>
    <sides>3.0</sides>
  </row>
</data>

For more, see Writing XML in the user guide on IO tools.

-------------------------------------------------------------------------------

Styler enhancements

We provided some focused development on Styler. See also the Styler
documentation which has been revised and improved (GH39720, GH39317, GH40493).

      + The method Styler.set_table_styles() can now accept more natural CSS
        language for arguments, such as 'color:red;' instead of [('color',
        'red')] (GH39563)

      + The methods Styler.highlight_null(), Styler.highlight_min(), and
        Styler.highlight_max() now allow custom CSS highlighting instead of the
        default background coloring (GH40242)

      + Styler.apply() now accepts functions that return an ndarray when axis=
        None, making it now consistent with the axis=0 and axis=1 behavior (
        GH39359)

      + When incorrectly formatted CSS is given via Styler.apply() or
        Styler.applymap(), an error is now raised upon rendering (GH39660)

      + Styler.format() now accepts the keyword argument escape for optional
        HTML and LaTeX escaping (GH40388, GH41619)

      + Styler.background_gradient() has gained the argument gmap to supply a
        specific gradient map for shading (GH22727)

      + Styler.clear() now clears Styler.hidden_index and Styler.hidden_columns
        as well (GH40484)

      + Added the method Styler.highlight_between() (GH39821)

      + Added the method Styler.highlight_quantile() (GH40926)

      + Added the method Styler.text_gradient() (GH41098)

      + Added the method Styler.set_tooltips() to allow hover tooltips; this
        can be used enhance interactive displays (GH21266, GH40284)

      + Added the parameter precision to the method Styler.format() to control
        the display of floating point numbers (GH40134)

      + Styler rendered HTML output now follows the w3 HTML Style Guide (
        GH39626)

      + Many features of the Styler class are now either partially or fully
        usable on a DataFrame with a non-unique indexes or columns (GH41143)

      + One has greater control of the display through separate sparsification
        of the index or columns using the new styler options, which are also
        usable via option_context() (GH41142)

      + Added the option styler.render.max_elements to avoid browser overload
        when styling large DataFrames (GH40712)

      + Added the method Styler.to_latex() (GH21673, GH42320), which also
        allows some limited CSS conversion (GH40731)

      + Added the method Styler.to_html() (GH13379)

      + Added the method Styler.set_sticky() to make index and column headers
        permanently visible in scrolling HTML frames (GH29072)

-------------------------------------------------------------------------------

DataFrame constructor honors copy=False with dict

When passing a dictionary to DataFrame with copy=False, a copy will no longer
be made (GH32960).

In [3]: arr = np.array([1, 2, 3])

In [4]: df = pd.DataFrame({"A": arr, "B": arr.copy()}, copy=False)

In [5]: df
Out[5]:
   A  B
0  1  1
1  2  2
2  3  3

df["A"] remains a view on arr:

In [6]: arr[0] = 0

In [7]: assert df.iloc[0, 0] == 0

The default behavior when not passing copy will remain unchanged, i.e. a copy
will be made.

-------------------------------------------------------------------------------

PyArrow backed string data type

We've enhanced the StringDtype, an extension type dedicated to string data. (
GH39908)

It is now possible to specify a storage keyword option to StringDtype. Use
pandas options or specify the dtype using dtype='string[pyarrow]' to allow the
StringArray to be backed by a PyArrow array instead of a NumPy array of Python
objects.

The PyArrow backed StringArray requires pyarrow 1.0.0 or greater to be
installed.

Warning

string[pyarrow] is currently considered experimental. The implementation and
parts of the API may change without warning.

In [8]: pd.Series(['abc', None, 'def'], dtype=pd.StringDtype(storage="pyarrow"))
Out[8]:
0     abc
1    <NA>
2     def
dtype: string

You can use the alias "string[pyarrow]" as well.

In [9]: s = pd.Series(['abc', None, 'def'], dtype="string[pyarrow]")

In [10]: s
Out[10]:
0     abc
1    <NA>
2     def
dtype: string

You can also create a PyArrow backed string array using pandas options.

In [11]: with pd.option_context("string_storage", "pyarrow"):
   ....:     s = pd.Series(['abc', None, 'def'], dtype="string")
   ....:

In [12]: s
Out[12]:
0     abc
1    <NA>
2     def
dtype: string

The usual string accessor methods work. Where appropriate, the return type of
the Series or columns of a DataFrame will also have string dtype.

In [13]: s.str.upper()
Out[13]:
0     ABC
1    <NA>
2     DEF
dtype: string

In [14]: s.str.split('b', expand=True).dtypes
Out[14]:
0    string
1    string
dtype: object

String accessor methods returning integers will return a value with Int64Dtype

In [15]: s.str.count("a")
Out[15]:
0       1
1    <NA>
2       0
dtype: Int64

-------------------------------------------------------------------------------

Centered datetime-like rolling windows

When performing rolling calculations on DataFrame and Series objects with a
datetime-like index, a centered datetime-like window can now be used (GH38780).
For example:

In [16]: df = pd.DataFrame(
   ....:     {"A": [0, 1, 2, 3, 4]}, index=pd.date_range("2020", periods=5, freq="1D")
   ....: )
   ....:

In [17]: df
Out[17]:
            A
2020-01-01  0
2020-01-02  1
2020-01-03  2
2020-01-04  3
2020-01-05  4

In [18]: df.rolling("2D", center=True).mean()
Out[18]:
              A
2020-01-01  0.5
2020-01-02  1.5
2020-01-03  2.5
2020-01-04  3.5
2020-01-05  4.0

-------------------------------------------------------------------------------

Other enhancements

  * DataFrame.rolling(), Series.rolling(), DataFrame.expanding(), and
    Series.expanding() now support a method argument with a 'table' option that
    performs the windowing operation over an entire DataFrame. See Window
    Overview for performance and functional benefits (GH15095, GH38995)

  * ExponentialMovingWindow now support a online method that can perform mean
    calculations in an online fashion. See Window Overview (GH41673)

  * Added MultiIndex.dtypes() (GH37062)

  * Added end and end_day options for the origin argument in DataFrame.resample
    () (GH37804)

  * Improved error message when usecols and names do not match for read_csv()
    and engine="c" (GH29042)

  * Improved consistency of error messages when passing an invalid win_type
    argument in Window methods (GH15969)

  * read_sql_query() now accepts a dtype argument to cast the columnar data
    from the SQL database based on user input (GH10285)

  * read_csv() now raising ParserWarning if length of header or given names
    does not match length of data when usecols is not specified (GH21768)

  * Improved integer type mapping from pandas to SQLAlchemy when using
    DataFrame.to_sql() (GH35076)

  * to_numeric() now supports downcasting of nullable ExtensionDtype objects (
    GH33013)

  * Added support for dict-like names in MultiIndex.set_names and
    MultiIndex.rename (GH20421)

  * read_excel() can now auto-detect .xlsb files and older .xls files (GH35416,
    GH41225)

  * ExcelWriter now accepts an if_sheet_exists parameter to control the
    behavior of append mode when writing to existing sheets (GH40230)

  * Rolling.sum(), Expanding.sum(), Rolling.mean(), Expanding.mean(),
    ExponentialMovingWindow.mean(), Rolling.median(), Expanding.median(),
    Rolling.max(), Expanding.max(), Rolling.min(), and Expanding.min() now
    support Numba execution with the engine keyword (GH38895, GH41267)

  * DataFrame.apply() can now accept NumPy unary operators as strings, e.g.
    df.apply("sqrt"), which was already the case for Series.apply() (GH39116)

  * DataFrame.apply() can now accept non-callable DataFrame properties as
    strings, e.g. df.apply("size"), which was already the case for Series.apply
    () (GH39116)

  * DataFrame.applymap() can now accept kwargs to pass on to the user-provided
    func (GH39987)

  * Passing a DataFrame indexer to iloc is now disallowed for
    Series.__getitem__() and DataFrame.__getitem__() (GH39004)

  * Series.apply() can now accept list-like or dictionary-like arguments that
    aren't lists or dictionaries, e.g. ser.apply(np.array(["sum", "mean"])),
    which was already the case for DataFrame.apply() (GH39140)

  * DataFrame.plot.scatter() can now accept a categorical column for the
    argument c (GH12380, GH31357)

  * Series.loc() now raises a helpful error message when the Series has a
    MultiIndex and the indexer has too many dimensions (GH35349)

  * read_stata() now supports reading data from compressed files (GH26599)

  * Added support for parsing ISO 8601-like timestamps with negative signs to
    Timedelta (GH37172)

  * Added support for unary operators in FloatingArray (GH38749)

  * RangeIndex can now be constructed by passing a range object directly e.g.
    pd.RangeIndex(range(3)) (GH12067)

  * Series.round() and DataFrame.round() now work with nullable integer and
    floating dtypes (GH38844)

  * read_csv() and read_json() expose the argument encoding_errors to control
    how encoding errors are handled (GH39450)

  * GroupBy.any() and GroupBy.all() use Kleene logic with nullable data types (
    GH37506)

  * GroupBy.any() and GroupBy.all() return a BooleanDtype for columns with
    nullable data types (GH33449)

  * GroupBy.any() and GroupBy.all() raising with object data containing pd.NA
    even when skipna=True (GH37501)

  * GroupBy.rank() now supports object-dtype data (GH38278)

  * Constructing a DataFrame or Series with the data argument being a Python
    iterable that is not a NumPy ndarray consisting of NumPy scalars will now
    result in a dtype with a precision the maximum of the NumPy scalars; this
    was already the case when data is a NumPy ndarray (GH40908)

  * Add keyword sort to pivot_table() to allow non-sorting of the result (
    GH39143)

  * Add keyword dropna to DataFrame.value_counts() to allow counting rows that
    include NA values (GH41325)

  * Series.replace() will now cast results to PeriodDtype where possible
    instead of object dtype (GH41526)

  * Improved error message in corr and cov methods on Rolling, Expanding, and
    ExponentialMovingWindow when other is not a DataFrame or Series (GH41741)

  * Series.between() can now accept left or right as arguments to inclusive to
    include only the left or right boundary (GH40245)

  * DataFrame.explode() now supports exploding multiple columns. Its column
    argument now also accepts a list of str or tuples for exploding on multiple
    columns at the same time (GH39240)

  * DataFrame.sample() now accepts the ignore_index argument to reset the index
    after sampling, similar to DataFrame.drop_duplicates() and
    DataFrame.sort_values() (GH38581)

-------------------------------------------------------------------------------

Notable bug fixes

These are bug fixes that might have notable behavior changes.

-------------------------------------------------------------------------------

Categorical.unique now always maintains same dtype as original

Previously, when calling Categorical.unique() with categorical data, unused
categories in the new array would be removed, making the dtype of the new array
different than the original (GH18291)

As an example of this, given:

In [19]: dtype = pd.CategoricalDtype(['bad', 'neutral', 'good'], ordered=True)

In [20]: cat = pd.Categorical(['good', 'good', 'bad', 'bad'], dtype=dtype)

In [21]: original = pd.Series(cat)

In [22]: unique = original.unique()

Previous behavior:

In [1]: unique
['good', 'bad']
Categories (2, object): ['bad' < 'good']
In [2]: original.dtype == unique.dtype
False

New behavior:

In [23]: unique
Out[23]:
['good', 'bad']
Categories (3, object): ['bad' < 'neutral' < 'good']

In [24]: original.dtype == unique.dtype
Out[24]: True

-------------------------------------------------------------------------------

Preserve dtypes in DataFrame.combine_first()

DataFrame.combine_first() will now preserve dtypes (GH7509)

In [25]: df1 = pd.DataFrame({"A": [1, 2, 3], "B": [1, 2, 3]}, index=[0, 1, 2])

In [26]: df1
Out[26]:
   A  B
0  1  1
1  2  2
2  3  3

In [27]: df2 = pd.DataFrame({"B": [4, 5, 6], "C": [1, 2, 3]}, index=[2, 3, 4])

In [28]: df2
Out[28]:
   B  C
2  4  1
3  5  2
4  6  3

In [29]: combined = df1.combine_first(df2)

Previous behavior:

In [1]: combined.dtypes
Out[2]:
A    float64
B    float64
C    float64
dtype: object

New behavior:

In [30]: combined.dtypes
Out[30]:
A    float64
B      int64
C    float64
dtype: object

-------------------------------------------------------------------------------

Groupby methods agg and transform no longer changes return dtype for callables

Previously the methods DataFrameGroupBy.aggregate(), SeriesGroupBy.aggregate(),
DataFrameGroupBy.transform(), and SeriesGroupBy.transform() might cast the
result dtype when the argument func is callable, possibly leading to
undesirable results (GH21240). The cast would occur if the result is numeric
and casting back to the input dtype does not change any values as measured by
np.allclose. Now no such casting occurs.

In [31]: df = pd.DataFrame({'key': [1, 1], 'a': [True, False], 'b': [True, True]})

In [32]: df
Out[32]:
   key      a     b
0    1   True  True
1    1  False  True

Previous behavior:

In [5]: df.groupby('key').agg(lambda x: x.sum())
Out[5]:
        a  b
key
1    True  2

New behavior:

In [33]: df.groupby('key').agg(lambda x: x.sum())
Out[33]:
     a  b
key
1    1  2

-------------------------------------------------------------------------------

float result for GroupBy.mean(), GroupBy.median(), and GroupBy.var()

Previously, these methods could result in different dtypes depending on the
input values. Now, these methods will always return a float dtype. (GH41137)

In [34]: df = pd.DataFrame({'a': [True], 'b': [1], 'c': [1.0]})

Previous behavior:

In [5]: df.groupby(df.index).mean()
Out[5]:
        a  b    c
0    True  1  1.0

New behavior:

In [35]: df.groupby(df.index).mean()
Out[35]:
     a    b    c
0  1.0  1.0  1.0

-------------------------------------------------------------------------------

Try operating inplace when setting values with loc and iloc

When setting an entire column using loc or iloc, pandas will try to insert the
values into the existing data rather than create an entirely new array.

In [36]: df = pd.DataFrame(range(3), columns=["A"], dtype="float64")

In [37]: values = df.values

In [38]: new = np.array([5, 6, 7], dtype="int64")

In [39]: df.loc[[0, 1, 2], "A"] = new

In both the new and old behavior, the data in values is overwritten, but in the
old behavior the dtype of df["A"] changed to int64.

Previous behavior:

In [1]: df.dtypes
Out[1]:
A    int64
dtype: object
In [2]: np.shares_memory(df["A"].values, new)
Out[2]: False
In [3]: np.shares_memory(df["A"].values, values)
Out[3]: False

In pandas 1.3.0, df continues to share data with values

New behavior:

In [40]: df.dtypes
Out[40]:
A    float64
dtype: object

In [41]: np.shares_memory(df["A"], new)
Out[41]: False

In [42]: np.shares_memory(df["A"], values)
Out[42]: True

-------------------------------------------------------------------------------

Never operate inplace when setting frame[keys] = values

When setting multiple columns using frame[keys] = values new arrays will
replace pre-existing arrays for these keys, which will not be over-written (
GH39510). As a result, the columns will retain the dtype(s) of values, never
casting to the dtypes of the existing arrays.

In [43]: df = pd.DataFrame(range(3), columns=["A"], dtype="float64")

In [44]: df[["A"]] = 5

In the old behavior, 5 was cast to float64 and inserted into the existing array
backing df:

Previous behavior:

In [1]: df.dtypes
Out[1]:
A    float64

In the new behavior, we get a new array, and retain an integer-dtyped 5:

New behavior:

In [45]: df.dtypes
Out[45]:
A    int64
dtype: object

-------------------------------------------------------------------------------

Consistent casting with setting into Boolean Series

Setting non-boolean values into a Series with dtype=bool now consistently casts
to dtype=object (GH38709)

In [46]: orig = pd.Series([True, False])

In [47]: ser = orig.copy()

In [48]: ser.iloc[1] = np.nan

In [49]: ser2 = orig.copy()

In [50]: ser2.iloc[1] = 2.0

Previous behavior:

In [1]: ser
Out [1]:
0    1.0
1    NaN
dtype: float64

In [2]:ser2
Out [2]:
0    True
1     2.0
dtype: object

New behavior:

In [51]: ser
Out[51]:
0    True
1     NaN
dtype: object

In [52]: ser2
Out[52]:
0    True
1     2.0
dtype: object

-------------------------------------------------------------------------------

GroupBy.rolling no longer returns grouped-by column in values

The group-by column will now be dropped from the result of a groupby.rolling
operation (GH32262)

In [53]: df = pd.DataFrame({"A": [1, 1, 2, 3], "B": [0, 1, 2, 3]})

In [54]: df
Out[54]:
   A  B
0  1  0
1  1  1
2  2  2
3  3  3

Previous behavior:

In [1]: df.groupby("A").rolling(2).sum()
Out[1]:
       A    B
A
1 0  NaN  NaN
1    2.0  1.0
2 2  NaN  NaN
3 3  NaN  NaN

New behavior:

In [55]: df.groupby("A").rolling(2).sum()
Out[55]:
       B
A
1 0  NaN
  1  1.0
2 2  NaN
3 3  NaN

-------------------------------------------------------------------------------

Removed artificial truncation in rolling variance and standard deviation

Rolling.std() and Rolling.var() will no longer artificially truncate results
that are less than ~1e-8 and ~1e-15 respectively to zero (GH37051, GH40448,
GH39872).

However, floating point artifacts may now exist in the results when rolling
over larger values.

In [56]: s = pd.Series([7, 5, 5, 5])

In [57]: s.rolling(3).var()
Out[57]:
0             NaN
1             NaN
2    1.333333e+00
3    4.440892e-16
dtype: float64

-------------------------------------------------------------------------------

GroupBy.rolling with MultiIndex no longer drops levels in the result

GroupBy.rolling() will no longer drop levels of a DataFrame with a MultiIndex
in the result. This can lead to a perceived duplication of levels in the
resulting MultiIndex, but this change restores the behavior that was present in
version 1.1.3 (GH38787, GH38523).

In [58]: index = pd.MultiIndex.from_tuples([('idx1', 'idx2')], names=['label1', 'label2'])

In [59]: df = pd.DataFrame({'a': [1], 'b': [2]}, index=index)

In [60]: df
Out[60]:
               a  b
label1 label2
idx1   idx2    1  2

Previous behavior:

In [1]: df.groupby('label1').rolling(1).sum()
Out[1]:
          a    b
label1
idx1    1.0  2.0

New behavior:

In [61]: df.groupby('label1').rolling(1).sum()
Out[61]:
                        a    b
label1 label1 label2
idx1   idx1   idx2    1.0  2.0

-------------------------------------------------------------------------------

Backwards incompatible API changes

-------------------------------------------------------------------------------

Increased minimum versions for dependencies

Some minimum supported versions of dependencies were updated. If installed, we
now require:

    Package     Minimum Version Required Changed

numpy           1.17.3          X        X

pytz            2017.3          X

python-dateutil 2.7.3           X

bottleneck      1.2.1

numexpr         2.7.0                    X

pytest (dev)    6.0                      X

mypy (dev)      0.812                    X

setuptools      38.6.0                   X

For optional libraries the general recommendation is to use the latest version.
The following table lists the lowest version per library that is currently
being tested throughout the development of pandas. Optional libraries below the
lowest tested version may still work, but are not considered supported.

   Package     Minimum Version Changed

beautifulsoup4 4.6.0

fastparquet    0.4.0           X

fsspec         0.7.4

gcsfs          0.6.0

lxml           4.3.0

matplotlib     2.2.3

numba          0.46.0

openpyxl       3.0.0           X

pyarrow        0.17.0          X

pymysql        0.8.1           X

pytables       3.5.1

s3fs           0.4.0

scipy          1.2.0

sqlalchemy     1.3.0           X

tabulate       0.8.7           X

xarray         0.12.0

xlrd           1.2.0

xlsxwriter     1.0.2

xlwt           1.3.0

pandas-gbq     0.12.0

See Dependencies and Optional dependencies for more.

-------------------------------------------------------------------------------

Other API changes

  * Partially initialized CategoricalDtype objects (i.e. those with categories=
    None) will no longer compare as equal to fully initialized dtype objects (
    GH38516)

  * Accessing _constructor_expanddim on a DataFrame and _constructor_sliced on
    a Series now raise an AttributeError. Previously a NotImplementedError was
    raised (GH38782)

  * Added new engine and **engine_kwargs parameters to DataFrame.to_sql() to
    support other future 'SQL engines'. Currently we still only use
    SQLAlchemy under the hood, but more engines are planned to be supported
    such as turbodbc (GH36893)

  * Removed redundant freq from PeriodIndex string representation (GH41653)

  * ExtensionDtype.construct_array_type() is now a required method instead of
    an optional one for ExtensionDtype subclasses (GH24860)

  * Calling hash on non-hashable pandas objects will now raise TypeError with
    the built-in error message (e.g. unhashable type: 'Series'). Previously it
    would raise a custom message such as 'Series' objects are mutable, thus
    they cannot be hashed. Furthermore, isinstance(<Series>,
    abc.collections.Hashable) will now return False (GH40013)

  * Styler.from_custom_template() now has two new arguments for template names,
    and removed the old name, due to template inheritance having been
    introducing for better parsing (GH42053). Subclassing modifications to
    Styler attributes are also needed.

-------------------------------------------------------------------------------

Build

  * Documentation in .pptx and .pdf formats are no longer included in wheels or
    source distributions. (GH30741)

-------------------------------------------------------------------------------

Deprecations

-------------------------------------------------------------------------------

Deprecated dropping nuisance columns in DataFrame reductions and
DataFrameGroupBy operations

Calling a reduction (e.g. .min, .max, .sum) on a DataFrame with numeric_only=
None (the default), columns where the reduction raises a TypeError are silently
ignored and dropped from the result.

This behavior is deprecated. In a future version, the TypeError will be raised,
and users will need to select only valid columns before calling the function.

For example:

In [62]: df = pd.DataFrame({"A": [1, 2, 3, 4], "B": pd.date_range("2016-01-01", periods=4)})

In [63]: df
Out[63]:
   A          B
0  1 2016-01-01
1  2 2016-01-02
2  3 2016-01-03
3  4 2016-01-04

Old behavior:

In [3]: df.prod()
Out[3]:
Out[3]:
A    24
dtype: int64

Future behavior:

In [4]: df.prod()
...
TypeError: 'DatetimeArray' does not implement reduction 'prod'

In [5]: df[["A"]].prod()
Out[5]:
A    24
dtype: int64

Similarly, when applying a function to DataFrameGroupBy, columns on which the
function raises TypeError are currently silently ignored and dropped from the
result.

This behavior is deprecated. In a future version, the TypeError will be raised,
and users will need to select only valid columns before calling the function.

For example:

In [64]: df = pd.DataFrame({"A": [1, 2, 3, 4], "B": pd.date_range("2016-01-01", periods=4)})

In [65]: gb = df.groupby([1, 1, 2, 2])

Old behavior:

In [4]: gb.prod(numeric_only=False)
Out[4]:
A
1   2
2  12

Future behavior:

In [5]: gb.prod(numeric_only=False)
...
TypeError: datetime64 type does not support prod operations

In [6]: gb[["A"]].prod(numeric_only=False)
Out[6]:
    A
1   2
2  12

-------------------------------------------------------------------------------

Other Deprecations

  * Deprecated allowing scalars to be passed to the Categorical constructor (
    GH38433)

  * Deprecated constructing CategoricalIndex without passing list-like data (
    GH38944)

  * Deprecated allowing subclass-specific keyword arguments in the Index
    constructor, use the specific subclass directly instead (GH14093, GH21311,
    GH22315, GH26974)

  * Deprecated the astype() method of datetimelike (timedelta64[ns], datetime64
    [ns], Datetime64TZDtype, PeriodDtype) to convert to integer dtypes, use
    values.view(...) instead (GH38544)

  * Deprecated MultiIndex.is_lexsorted() and MultiIndex.lexsort_depth(), use
    MultiIndex.is_monotonic_increasing() instead (GH32259)

  * Deprecated keyword try_cast in Series.where(), Series.mask(),
    DataFrame.where(), DataFrame.mask(); cast results manually if desired (
    GH38836)

  * Deprecated comparison of Timestamp objects with datetime.date objects.
    Instead of e.g. ts <= mydate use ts <= pd.Timestamp(mydate) or ts.date() <=
    mydate (GH36131)

  * Deprecated Rolling.win_type returning "freq" (GH38963)

  * Deprecated Rolling.is_datetimelike (GH38963)

  * Deprecated DataFrame indexer for Series.__setitem__() and
    DataFrame.__setitem__() (GH39004)

  * Deprecated ExponentialMovingWindow.vol() (GH39220)

  * Using .astype to convert between datetime64[ns] dtype and DatetimeTZDtype
    is deprecated and will raise in a future version, use obj.tz_localize or
    obj.dt.tz_localize instead (GH38622)

  * Deprecated casting datetime.date objects to datetime64 when used as
    fill_value in DataFrame.unstack(), DataFrame.shift(), Series.shift(), and
    DataFrame.reindex(), pass pd.Timestamp(dateobj) instead (GH39767)

  * Deprecated Styler.set_na_rep() and Styler.set_precision() in favor of
    Styler.format() with na_rep and precision as existing and new input
    arguments respectively (GH40134, GH40425)

  * Deprecated Styler.where() in favor of using an alternative formulation with
    Styler.applymap() (GH40821)

  * Deprecated allowing partial failure in Series.transform() and
    DataFrame.transform() when func is list-like or dict-like and raises
    anything but TypeError; func raising anything but a TypeError will raise in
    a future version (GH40211)

  * Deprecated arguments error_bad_lines and warn_bad_lines in read_csv() and
    read_table() in favor of argument on_bad_lines (GH15122)

  * Deprecated support for np.ma.mrecords.MaskedRecords in the DataFrame
    constructor, pass {name: data[name] for name in data.dtype.names} instead (
    GH40363)

  * Deprecated using merge(), DataFrame.merge(), and DataFrame.join() on a
    different number of levels (GH34862)

  * Deprecated the use of **kwargs in ExcelWriter; use the keyword argument
    engine_kwargs instead (GH40430)

  * Deprecated the level keyword for DataFrame and Series aggregations; use
    groupby instead (GH39983)

  * Deprecated the inplace parameter of Categorical.remove_categories(),
    Categorical.add_categories(), Categorical.reorder_categories(),
    Categorical.rename_categories(), Categorical.set_categories() and will be
    removed in a future version (GH37643)

  * Deprecated merge() producing duplicated columns through the suffixes
    keyword and already existing columns (GH22818)

  * Deprecated setting Categorical._codes, create a new Categorical with the
    desired codes instead (GH40606)

  * Deprecated the convert_float optional argument in read_excel() and
    ExcelFile.parse() (GH41127)

  * Deprecated behavior of DatetimeIndex.union() with mixed timezones; in a
    future version both will be cast to UTC instead of object dtype (GH39328)

  * Deprecated using usecols with out of bounds indices for read_csv() with
    engine="c" (GH25623)

  * Deprecated special treatment of lists with first element a Categorical in
    the DataFrame constructor; pass as pd.DataFrame({col: categorical, ...})
    instead (GH38845)

  * Deprecated behavior of DataFrame constructor when a dtype is passed and the
    data cannot be cast to that dtype. In a future version, this will raise
    instead of being silently ignored (GH24435)

  * Deprecated the Timestamp.freq attribute. For the properties that use it (
    is_month_start, is_month_end, is_quarter_start, is_quarter_end,
    is_year_start, is_year_end), when you have a freq, use e.g.
    freq.is_month_start(ts) (GH15146)

  * Deprecated construction of Series or DataFrame with DatetimeTZDtype data
    and datetime64[ns] dtype. Use Series(data).dt.tz_localize(None) instead (
    GH41555, GH33401)

  * Deprecated behavior of Series construction with large-integer values and
    small-integer dtype silently overflowing; use Series(data).astype(dtype)
    instead (GH41734)

  * Deprecated behavior of DataFrame construction with floating data and
    integer dtype casting even when lossy; in a future version this will remain
    floating, matching Series behavior (GH41770)

  * Deprecated inference of timedelta64[ns], datetime64[ns], or DatetimeTZDtype
    dtypes in Series construction when data containing strings is passed and no
    dtype is passed (GH33558)

  * In a future version, constructing Series or DataFrame with datetime64[ns]
    data and DatetimeTZDtype will treat the data as wall-times instead of as
    UTC times (matching DatetimeIndex behavior). To treat the data as UTC
    times, use pd.Series(data).dt.tz_localize("UTC").dt.tz_convert(dtype.tz) or
    pd.Series(data.view("int64"), dtype=dtype) (GH33401)

  * Deprecated passing lists as key to DataFrame.xs() and Series.xs() (GH41760)

  * Deprecated boolean arguments of inclusive in Series.between() to have
    {"left", "right", "neither", "both"} as standard argument values (GH40628)

  * Deprecated passing arguments as positional for all of the following, with
    exceptions noted (GH41485):

      + concat() (other than objs)

      + read_csv() (other than filepath_or_buffer)

      + read_table() (other than filepath_or_buffer)

      + DataFrame.clip() and Series.clip() (other than upper and lower)

      + DataFrame.drop_duplicates() (except for subset), Series.drop_duplicates
        (), Index.drop_duplicates() and MultiIndex.drop_duplicates()

      + DataFrame.drop() (other than labels) and Series.drop()

      + DataFrame.dropna() and Series.dropna()

      + DataFrame.ffill(), Series.ffill(), DataFrame.bfill(), and Series.bfill
        ()

      + DataFrame.fillna() and Series.fillna() (apart from value)

      + DataFrame.interpolate() and Series.interpolate() (other than method)

      + DataFrame.mask() and Series.mask() (other than cond and other)

      + DataFrame.reset_index() (other than level) and Series.reset_index()

      + DataFrame.set_axis() and Series.set_axis() (other than labels)

      + DataFrame.set_index() (other than keys)

      + DataFrame.sort_index() and Series.sort_index()

      + DataFrame.sort_values() (other than by) and Series.sort_values()

      + DataFrame.where() and Series.where() (other than cond and other)

      + Index.set_names() and MultiIndex.set_names() (except for names)

      + MultiIndex.codes() (except for codes)

      + MultiIndex.set_levels() (except for levels)

      + Resampler.interpolate() (other than method)

-------------------------------------------------------------------------------

Performance improvements

  * Performance improvement in IntervalIndex.isin() (GH38353)

  * Performance improvement in Series.mean() for nullable data types (GH34814)

  * Performance improvement in Series.isin() for nullable data types (GH38340)

  * Performance improvement in DataFrame.fillna() with method="pad" or method=
    "backfill" for nullable floating and nullable integer dtypes (GH39953)

  * Performance improvement in DataFrame.corr() for method=kendall (GH28329)

  * Performance improvement in DataFrame.corr() for method=spearman (GH40956,
    GH41885)

  * Performance improvement in Rolling.corr() and Rolling.cov() (GH39388)

  * Performance improvement in RollingGroupby.corr(), ExpandingGroupby.corr(),
    ExpandingGroupby.corr() and ExpandingGroupby.cov() (GH39591)

  * Performance improvement in unique() for object data type (GH37615)

  * Performance improvement in json_normalize() for basic cases (including
    separators) (GH40035 GH15621)

  * Performance improvement in ExpandingGroupby aggregation methods (GH39664)

  * Performance improvement in Styler where render times are more than 50%
    reduced and now matches DataFrame.to_html() (GH39972 GH39952, GH40425)

  * The method Styler.set_td_classes() is now as performant as Styler.apply()
    and Styler.applymap(), and even more so in some cases (GH40453)

  * Performance improvement in ExponentialMovingWindow.mean() with times (
    GH39784)

  * Performance improvement in GroupBy.apply() when requiring the Python
    fallback implementation (GH40176)

  * Performance improvement in the conversion of a PyArrow Boolean array to a
    pandas nullable Boolean array (GH41051)

  * Performance improvement for concatenation of data with type
    CategoricalDtype (GH40193)

  * Performance improvement in GroupBy.cummin() and GroupBy.cummax() with
    nullable data types (GH37493)

  * Performance improvement in Series.nunique() with nan values (GH40865)

  * Performance improvement in DataFrame.transpose(), Series.unstack() with
    DatetimeTZDtype (GH40149)

  * Performance improvement in Series.plot() and DataFrame.plot() with entry
    point lazy loading (GH41492)

-------------------------------------------------------------------------------

Bug fixes

-------------------------------------------------------------------------------

Categorical

  * Bug in CategoricalIndex incorrectly failing to raise TypeError when scalar
    data is passed (GH38614)

  * Bug in CategoricalIndex.reindex failed when the Index passed was not
    categorical but whose values were all labels in the category (GH28690)

  * Bug where constructing a Categorical from an object-dtype array of date
    objects did not round-trip correctly with astype (GH38552)

  * Bug in constructing a DataFrame from an ndarray and a CategoricalDtype (
    GH38857)

  * Bug in setting categorical values into an object-dtype column in a
    DataFrame (GH39136)

  * Bug in DataFrame.reindex() was raising an IndexError when the new index
    contained duplicates and the old index was a CategoricalIndex (GH38906)

  * Bug in Categorical.fillna() with a tuple-like category raising
    NotImplementedError instead of ValueError when filling with a non-category
    tuple (GH41914)

-------------------------------------------------------------------------------

Datetimelike

  * Bug in DataFrame and Series constructors sometimes dropping nanoseconds
    from Timestamp (resp. Timedelta) data, with dtype=datetime64[ns] (resp.
    timedelta64[ns]) (GH38032)

  * Bug in DataFrame.first() and Series.first() with an offset of one month
    returning an incorrect result when the first day is the last day of a month
    (GH29623)

  * Bug in constructing a DataFrame or Series with mismatched datetime64 data
    and timedelta64 dtype, or vice-versa, failing to raise a TypeError (GH38575
    , GH38764, GH38792)

  * Bug in constructing a Series or DataFrame with a datetime object out of
    bounds for datetime64[ns] dtype or a timedelta object out of bounds for
    timedelta64[ns] dtype (GH38792, GH38965)

  * Bug in DatetimeIndex.intersection(), DatetimeIndex.symmetric_difference(),
    PeriodIndex.intersection(), PeriodIndex.symmetric_difference() always
    returning object-dtype when operating with CategoricalIndex (GH38741)

  * Bug in DatetimeIndex.intersection() giving incorrect results with non-Tick
    frequencies with n != 1 (GH42104)

  * Bug in Series.where() incorrectly casting datetime64 values to int64 (
    GH37682)

  * Bug in Categorical incorrectly typecasting datetime object to Timestamp (
    GH38878)

  * Bug in comparisons between Timestamp object and datetime64 objects just
    outside the implementation bounds for nanosecond datetime64 (GH39221)

  * Bug in Timestamp.round(), Timestamp.floor(), Timestamp.ceil() for values
    near the implementation bounds of Timestamp (GH39244)

  * Bug in Timedelta.round(), Timedelta.floor(), Timedelta.ceil() for values
    near the implementation bounds of Timedelta (GH38964)

  * Bug in date_range() incorrectly creating DatetimeIndex containing NaT
    instead of raising OutOfBoundsDatetime in corner cases (GH24124)

  * Bug in infer_freq() incorrectly fails to infer 'H' frequency of
    DatetimeIndex if the latter has a timezone and crosses DST boundaries (
    GH39556)

  * Bug in Series backed by DatetimeArray or TimedeltaArray sometimes failing
    to set the array's freq to None (GH41425)

-------------------------------------------------------------------------------

Timedelta

  * Bug in constructing Timedelta from np.timedelta64 objects with
    non-nanosecond units that are out of bounds for timedelta64[ns] (GH38965)

  * Bug in constructing a TimedeltaIndex incorrectly accepting np.datetime64
    ("NaT") objects (GH39462)

  * Bug in constructing Timedelta from an input string with only symbols and no
    digits failed to raise an error (GH39710)

  * Bug in TimedeltaIndex and to_timedelta() failing to raise when passed
    non-nanosecond timedelta64 arrays that overflow when converting to
    timedelta64[ns] (GH40008)

-------------------------------------------------------------------------------

Timezones

  * Bug in different tzinfo objects representing UTC not being treated as
    equivalent (GH39216)

  * Bug in dateutil.tz.gettz("UTC") not being recognized as equivalent to other
    UTC-representing tzinfos (GH39276)

-------------------------------------------------------------------------------

Numeric

  * Bug in DataFrame.quantile(), DataFrame.sort_values() causing incorrect
    subsequent indexing behavior (GH38351)

  * Bug in DataFrame.sort_values() raising an IndexError for empty by (GH40258)

  * Bug in DataFrame.select_dtypes() with include=np.number would drop numeric
    ExtensionDtype columns (GH35340)

  * Bug in DataFrame.mode() and Series.mode() not keeping consistent integer
    Index for empty input (GH33321)

  * Bug in DataFrame.rank() when the DataFrame contained np.inf (GH32593)

  * Bug in DataFrame.rank() with axis=0 and columns holding incomparable types
    raising an IndexError (GH38932)

  * Bug in Series.rank(), DataFrame.rank(), and GroupBy.rank() treating the
    most negative int64 value as missing (GH32859)

  * Bug in DataFrame.select_dtypes() different behavior between Windows and
    Linux with include="int" (GH36596)

  * Bug in DataFrame.apply() and DataFrame.agg() when passed the argument func=
    "size" would operate on the entire DataFrame instead of rows or columns (
    GH39934)

  * Bug in DataFrame.transform() would raise a SpecificationError when passed a
    dictionary and columns were missing; will now raise a KeyError instead (
    GH40004)

  * Bug in GroupBy.rank() giving incorrect results with pct=True and equal
    values between consecutive groups (GH40518)

  * Bug in Series.count() would result in an int32 result on 32-bit platforms
    when argument level=None (GH40908)

  * Bug in Series and DataFrame reductions with methods any and all not
    returning Boolean results for object data (GH12863, GH35450, GH27709)

  * Bug in Series.clip() would fail if the Series contains NA values and has
    nullable int or float as a data type (GH40851)

  * Bug in UInt64Index.where() and UInt64Index.putmask() with an np.int64 dtype
    other incorrectly raising TypeError (GH41974)

  * Bug in DataFrame.agg() not sorting the aggregated axis in the order of the
    provided aggregation functions when one or more aggregation function fails
    to produce results (GH33634)

  * Bug in DataFrame.clip() not interpreting missing values as no threshold (
    GH40420)

-------------------------------------------------------------------------------

Conversion

  * Bug in Series.to_dict() with orient='records' now returns Python native
    types (GH25969)

  * Bug in Series.view() and Index.view() when converting between datetime-like
    (datetime64[ns], datetime64[ns, tz], timedelta64, period) dtypes (GH39788)

  * Bug in creating a DataFrame from an empty np.recarray not retaining the
    original dtypes (GH40121)

  * Bug in DataFrame failing to raise a TypeError when constructing from a
    frozenset (GH40163)

  * Bug in Index construction silently ignoring a passed dtype when the data
    cannot be cast to that dtype (GH21311)

  * Bug in StringArray.astype() falling back to NumPy and raising when
    converting to dtype='categorical' (GH40450)

  * Bug in factorize() where, when given an array with a numeric NumPy dtype
    lower than int64, uint64 and float64, the unique values did not keep their
    original dtype (GH41132)

  * Bug in DataFrame construction with a dictionary containing an array-like
    with ExtensionDtype and copy=True failing to make a copy (GH38939)

  * Bug in qcut() raising error when taking Float64DType as input (GH40730)

  * Bug in DataFrame and Series construction with datetime64[ns] data and dtype
    =object resulting in datetime objects instead of Timestamp objects (GH41599
    )

  * Bug in DataFrame and Series construction with timedelta64[ns] data and
    dtype=object resulting in np.timedelta64 objects instead of Timedelta
    objects (GH41599)

  * Bug in DataFrame construction when given a two-dimensional object-dtype
    np.ndarray of Period or Interval objects failing to cast to PeriodDtype or
    IntervalDtype, respectively (GH41812)

  * Bug in constructing a Series from a list and a PandasDtype (GH39357)

  * Bug in creating a Series from a range object that does not fit in the
    bounds of int64 dtype (GH30173)

  * Bug in creating a Series from a dict with all-tuple keys and an Index that
    requires reindexing (GH41707)

  * Bug in infer_dtype() not recognizing Series, Index, or array with a Period
    dtype (GH23553)

  * Bug in infer_dtype() raising an error for general ExtensionArray objects.
    It will now return "unknown-array" instead of raising (GH37367)

  * Bug in DataFrame.convert_dtypes() incorrectly raised a ValueError when
    called on an empty DataFrame (GH40393)

-------------------------------------------------------------------------------

Strings

  * Bug in the conversion from pyarrow.ChunkedArray to StringArray when the
    original had zero chunks (GH41040)

  * Bug in Series.replace() and DataFrame.replace() ignoring replacements with
    regex=True for StringDType data (GH41333, GH35977)

  * Bug in Series.str.extract() with StringArray returning object dtype for an
    empty DataFrame (GH41441)

  * Bug in Series.str.replace() where the case argument was ignored when regex=
    False (GH41602)

-------------------------------------------------------------------------------

Interval

  * Bug in IntervalIndex.intersection() and IntervalIndex.symmetric_difference
    () always returning object-dtype when operating with CategoricalIndex (
    GH38653, GH38741)

  * Bug in IntervalIndex.intersection() returning duplicates when at least one
    of the Index objects have duplicates which are present in the other (
    GH38743)

  * IntervalIndex.union(), IntervalIndex.intersection(),
    IntervalIndex.difference(), and IntervalIndex.symmetric_difference() now
    cast to the appropriate dtype instead of raising a TypeError when operating
    with another IntervalIndex with incompatible dtype (GH39267)

  * PeriodIndex.union(), PeriodIndex.intersection(),
    PeriodIndex.symmetric_difference(), PeriodIndex.difference() now cast to
    object dtype instead of raising IncompatibleFrequency when operating with
    another PeriodIndex with incompatible dtype (GH39306)

  * Bug in IntervalIndex.is_monotonic(), IntervalIndex.get_loc(),
    IntervalIndex.get_indexer_for(), and IntervalIndex.__contains__() when NA
    values are present (GH41831)

-------------------------------------------------------------------------------

Indexing

  * Bug in Index.union() and MultiIndex.union() dropping duplicate Index values
    when Index was not monotonic or sort was set to False (GH36289, GH31326,
    GH40862)

  * Bug in CategoricalIndex.get_indexer() failing to raise InvalidIndexError
    when non-unique (GH38372)

  * Bug in IntervalIndex.get_indexer() when target has CategoricalDtype and
    both the index and the target contain NA values (GH41934)

  * Bug in Series.loc() raising a ValueError when input was filtered with a
    Boolean list and values to set were a list with lower dimension (GH20438)

  * Bug in inserting many new columns into a DataFrame causing incorrect
    subsequent indexing behavior (GH38380)

  * Bug in DataFrame.__setitem__() raising a ValueError when setting multiple
    values to duplicate columns (GH15695)

  * Bug in DataFrame.loc(), Series.loc(), DataFrame.__getitem__() and
    Series.__getitem__() returning incorrect elements for non-monotonic
    DatetimeIndex for string slices (GH33146)

  * Bug in DataFrame.reindex() and Series.reindex() with timezone aware indexes
    raising a TypeError for method="ffill" and method="bfill" and specified
    tolerance (GH38566)

  * Bug in DataFrame.reindex() with datetime64[ns] or timedelta64[ns]
    incorrectly casting to integers when the fill_value requires casting to
    object dtype (GH39755)

  * Bug in DataFrame.__setitem__() raising a ValueError when setting on an
    empty DataFrame using specified columns and a nonempty DataFrame value (
    GH38831)

  * Bug in DataFrame.loc.__setitem__() raising a ValueError when operating on a
    unique column when the DataFrame has duplicate columns (GH38521)

  * Bug in DataFrame.iloc.__setitem__() and DataFrame.loc.__setitem__() with
    mixed dtypes when setting with a dictionary value (GH38335)

  * Bug in Series.loc.__setitem__() and DataFrame.loc.__setitem__() raising
    KeyError when provided a Boolean generator (GH39614)

  * Bug in Series.iloc() and DataFrame.iloc() raising a KeyError when provided
    a generator (GH39614)

  * Bug in DataFrame.__setitem__() not raising a ValueError when the right hand
    side is a DataFrame with wrong number of columns (GH38604)

  * Bug in Series.__setitem__() raising a ValueError when setting a Series with
    a scalar indexer (GH38303)

  * Bug in DataFrame.loc() dropping levels of a MultiIndex when the DataFrame
    used as input has only one row (GH10521)

  * Bug in DataFrame.__getitem__() and Series.__getitem__() always raising
    KeyError when slicing with existing strings where the Index has
    milliseconds (GH33589)

  * Bug in setting timedelta64 or datetime64 values into numeric Series failing
    to cast to object dtype (GH39086, GH39619)

  * Bug in setting Interval values into a Series or DataFrame with mismatched
    IntervalDtype incorrectly casting the new values to the existing dtype (
    GH39120)

  * Bug in setting datetime64 values into a Series with integer-dtype
    incorrectly casting the datetime64 values to integers (GH39266)

  * Bug in setting np.datetime64("NaT") into a Series with Datetime64TZDtype
    incorrectly treating the timezone-naive value as timezone-aware (GH39769)

  * Bug in Index.get_loc() not raising KeyError when key=NaN and method is
    specified but NaN is not in the Index (GH39382)

  * Bug in DatetimeIndex.insert() when inserting np.datetime64("NaT") into a
    timezone-aware index incorrectly treating the timezone-naive value as
    timezone-aware (GH39769)

  * Bug in incorrectly raising in Index.insert(), when setting a new column
    that cannot be held in the existing frame.columns, or in Series.reset_index
    () or DataFrame.reset_index() instead of casting to a compatible dtype (
    GH39068)

  * Bug in RangeIndex.append() where a single object of length 1 was
    concatenated incorrectly (GH39401)

  * Bug in RangeIndex.astype() where when converting to CategoricalIndex, the
    categories became a Int64Index instead of a RangeIndex (GH41263)

  * Bug in setting numpy.timedelta64 values into an object-dtype Series using a
    Boolean indexer (GH39488)

  * Bug in setting numeric values into a into a boolean-dtypes Series using at
    or iat failing to cast to object-dtype (GH39582)

  * Bug in DataFrame.__setitem__() and DataFrame.iloc.__setitem__() raising
    ValueError when trying to index with a row-slice and setting a list as
    values (GH40440)

  * Bug in DataFrame.loc() not raising KeyError when the key was not found in
    MultiIndex and the levels were not fully specified (GH41170)

  * Bug in DataFrame.loc.__setitem__() when setting-with-expansion incorrectly
    raising when the index in the expanding axis contained duplicates (GH40096)

  * Bug in DataFrame.loc.__getitem__() with MultiIndex casting to float when at
    least one index column has float dtype and we retrieve a scalar (GH41369)

  * Bug in DataFrame.loc() incorrectly matching non-Boolean index elements (
    GH20432)

  * Bug in indexing with np.nan on a Series or DataFrame with a
    CategoricalIndex incorrectly raising KeyError when np.nan keys are present
    (GH41933)

  * Bug in Series.__delitem__() with ExtensionDtype incorrectly casting to
    ndarray (GH40386)

  * Bug in DataFrame.at() with a CategoricalIndex returning incorrect results
    when passed integer keys (GH41846)

  * Bug in DataFrame.loc() returning a MultiIndex in the wrong order if an
    indexer has duplicates (GH40978)

  * Bug in DataFrame.__setitem__() raising a TypeError when using a str
    subclass as the column name with a DatetimeIndex (GH37366)

  * Bug in PeriodIndex.get_loc() failing to raise a KeyError when given a
    Period with a mismatched freq (GH41670)

  * Bug .loc.__getitem__ with a UInt64Index and negative-integer keys raising
    OverflowError instead of KeyError in some cases, wrapping around to
    positive integers in others (GH41777)

  * Bug in Index.get_indexer() failing to raise ValueError in some cases with
    invalid method, limit, or tolerance arguments (GH41918)

  * Bug when slicing a Series or DataFrame with a TimedeltaIndex when passing
    an invalid string raising ValueError instead of a TypeError (GH41821)

  * Bug in Index constructor sometimes silently ignoring a specified dtype (
    GH38879)

  * Index.where() behavior now mirrors Index.putmask() behavior, i.e.
    index.where(mask, other) matches index.putmask(~mask, other) (GH39412)

-------------------------------------------------------------------------------

Missing

  * Bug in Grouper did not correctly propagate the dropna argument;
    DataFrameGroupBy.transform() now correctly handles missing values for
    dropna=True (GH35612)

  * Bug in isna(), Series.isna(), Index.isna(), DataFrame.isna(), and the
    corresponding notna functions not recognizing Decimal("NaN") objects (
    GH39409)

  * Bug in DataFrame.fillna() not accepting a dictionary for the downcast
    keyword (GH40809)

  * Bug in isna() not returning a copy of the mask for nullable types, causing
    any subsequent mask modification to change the original array (GH40935)

  * Bug in DataFrame construction with float data containing NaN and an integer
    dtype casting instead of retaining the NaN (GH26919)

  * Bug in Series.isin() and MultiIndex.isin() didn't treat all nans as
    equivalent if they were in tuples (GH41836)

-------------------------------------------------------------------------------

MultiIndex

  * Bug in DataFrame.drop() raising a TypeError when the MultiIndex is
    non-unique and level is not provided (GH36293)

  * Bug in MultiIndex.intersection() duplicating NaN in the result (GH38623)

  * Bug in MultiIndex.equals() incorrectly returning True when the MultiIndex
    contained NaN even when they are differently ordered (GH38439)

  * Bug in MultiIndex.intersection() always returning an empty result when
    intersecting with CategoricalIndex (GH38653)

  * Bug in MultiIndex.difference() incorrectly raising TypeError when indexes
    contain non-sortable entries (GH41915)

  * Bug in MultiIndex.reindex() raising a ValueError when used on an empty
    MultiIndex and indexing only a specific level (GH41170)

  * Bug in MultiIndex.reindex() raising TypeError when reindexing against a
    flat Index (GH41707)

-------------------------------------------------------------------------------

I/O

  * Bug in Index.__repr__() when display.max_seq_items=1 (GH38415)

  * Bug in read_csv() not recognizing scientific notation if the argument
    decimal is set and engine="python" (GH31920)

  * Bug in read_csv() interpreting NA value as comment, when NA does contain
    the comment string fixed for engine="python" (GH34002)

  * Bug in read_csv() raising an IndexError with multiple header columns and
    index_col is specified when the file has no data rows (GH38292)

  * Bug in read_csv() not accepting usecols with a different length than names
    for engine="python" (GH16469)

  * Bug in read_csv() returning object dtype when delimiter="," with usecols
    and parse_dates specified for engine="python" (GH35873)

  * Bug in read_csv() raising a TypeError when names and parse_dates is
    specified for engine="c" (GH33699)

  * Bug in read_clipboard() and DataFrame.to_clipboard() not working in WSL (
    GH38527)

  * Allow custom error values for the parse_dates argument of read_sql(),
    read_sql_query() and read_sql_table() (GH35185)

  * Bug in DataFrame.to_hdf() and Series.to_hdf() raising a KeyError when
    trying to apply for subclasses of DataFrame or Series (GH33748)

  * Bug in HDFStore.put() raising a wrong TypeError when saving a DataFrame
    with non-string dtype (GH34274)

  * Bug in json_normalize() resulting in the first element of a generator
    object not being included in the returned DataFrame (GH35923)

  * Bug in read_csv() applying the thousands separator to date columns when the
    column should be parsed for dates and usecols is specified for engine=
    "python" (GH39365)

  * Bug in read_excel() forward filling MultiIndex names when multiple header
    and index columns are specified (GH34673)

  * Bug in read_excel() not respecting set_option() (GH34252)

  * Bug in read_csv() not switching true_values and false_values for nullable
    Boolean dtype (GH34655)

  * Bug in read_json() when orient="split" not maintaining a numeric string
    index (GH28556)

  * read_sql() returned an empty generator if chunksize was non-zero and the
    query returned no results. Now returns a generator with a single empty
    DataFrame (GH34411)

  * Bug in read_hdf() returning unexpected records when filtering on
    categorical string columns using the where parameter (GH39189)

  * Bug in read_sas() raising a ValueError when datetimes were null (GH39725)

  * Bug in read_excel() dropping empty values from single-column spreadsheets (
    GH39808)

  * Bug in read_excel() loading trailing empty rows/columns for some filetypes
    (GH41167)

  * Bug in read_excel() raising an AttributeError when the excel file had a
    MultiIndex header followed by two empty rows and no index (GH40442)

  * Bug in read_excel(), read_csv(), read_table(), read_fwf(), and
    read_clipboard() where one blank row after a MultiIndex header with no
    index would be dropped (GH40442)

  * Bug in DataFrame.to_string() misplacing the truncation column when index=
    False (GH40904)

  * Bug in DataFrame.to_string() adding an extra dot and misaligning the
    truncation row when index=False (GH40904)

  * Bug in read_orc() always raising an AttributeError (GH40918)

  * Bug in read_csv() and read_table() silently ignoring prefix if names and
    prefix are defined, now raising a ValueError (GH39123)

  * Bug in read_csv() and read_excel() not respecting the dtype for a
    duplicated column name when mangle_dupe_cols is set to True (GH35211)

  * Bug in read_csv() silently ignoring sep if delimiter and sep are defined,
    now raising a ValueError (GH39823)

  * Bug in read_csv() and read_table() misinterpreting arguments when
    sys.setprofile had been previously called (GH41069)

  * Bug in the conversion from PyArrow to pandas (e.g. for reading Parquet)
    with nullable dtypes and a PyArrow array whose data buffer size is not a
    multiple of the dtype size (GH40896)

  * Bug in read_excel() would raise an error when pandas could not determine
    the file type even though the user specified the engine argument (GH41225)

  * Bug in read_clipboard() copying from an excel file shifts values into the
    wrong column if there are null values in first column (GH41108)

  * Bug in DataFrame.to_hdf() and Series.to_hdf() raising a TypeError when
    trying to append a string column to an incompatible column (GH41897)

-------------------------------------------------------------------------------

Period

  * Comparisons of Period objects or Index, Series, or DataFrame with
    mismatched PeriodDtype now behave like other mismatched-type comparisons,
    returning False for equals, True for not-equal, and raising TypeError for
    inequality checks (GH39274)

-------------------------------------------------------------------------------

Plotting

  * Bug in plotting.scatter_matrix() raising when 2d ax argument passed (
    GH16253)

  * Prevent warnings when Matplotlib's constrained_layout is enabled (GH25261)

  * Bug in DataFrame.plot() was showing the wrong colors in the legend if the
    function was called repeatedly and some calls used yerr while others didn
    t (GH39522)

  * Bug in DataFrame.plot() was showing the wrong colors in the legend if the
    function was called repeatedly and some calls used secondary_y and others
    use legend=False (GH40044)

  * Bug in DataFrame.plot.box() when dark_background theme was selected, caps
    or min/max markers for the plot were not visible (GH40769)

-------------------------------------------------------------------------------

Groupby/resample/rolling

  * Bug in GroupBy.agg() with PeriodDtype columns incorrectly casting results
    too aggressively (GH38254)

  * Bug in SeriesGroupBy.value_counts() where unobserved categories in a
    grouped categorical Series were not tallied (GH38672)

  * Bug in SeriesGroupBy.value_counts() where an error was raised on an empty
    Series (GH39172)

  * Bug in GroupBy.indices() would contain non-existent indices when null
    values were present in the groupby keys (GH9304)

  * Fixed bug in GroupBy.sum() causing a loss of precision by now using Kahan
    summation (GH38778)

  * Fixed bug in GroupBy.cumsum() and GroupBy.mean() causing loss of precision
    through using Kahan summation (GH38934)

  * Bug in Resampler.aggregate() and DataFrame.transform() raising a TypeError
    instead of SpecificationError when missing keys had mixed dtypes (GH39025)

  * Bug in DataFrameGroupBy.idxmin() and DataFrameGroupBy.idxmax() with
    ExtensionDtype columns (GH38733)

  * Bug in Series.resample() would raise when the index was a PeriodIndex
    consisting of NaT (GH39227)

  * Bug in RollingGroupby.corr() and ExpandingGroupby.corr() where the groupby
    column would return 0 instead of np.nan when providing other that was
    longer than each group (GH39591)

  * Bug in ExpandingGroupby.corr() and ExpandingGroupby.cov() where 1 would be
    returned instead of np.nan when providing other that was longer than each
    group (GH39591)

  * Bug in GroupBy.mean(), GroupBy.median() and DataFrame.pivot_table() not
    propagating metadata (GH28283)

  * Bug in Series.rolling() and DataFrame.rolling() not calculating window
    bounds correctly when window is an offset and dates are in descending order
    (GH40002)

  * Bug in Series.groupby() and DataFrame.groupby() on an empty Series or
    DataFrame would lose index, columns, and/or data types when directly using
    the methods idxmax, idxmin, mad, min, max, sum, prod, and skew or using
    them through apply, aggregate, or resample (GH26411)

  * Bug in GroupBy.apply() where a MultiIndex would be created instead of an
    Index when used on a RollingGroupby object (GH39732)

  * Bug in DataFrameGroupBy.sample() where an error was raised when weights was
    specified and the index was an Int64Index (GH39927)

  * Bug in DataFrameGroupBy.aggregate() and Resampler.aggregate() would
    sometimes raise a SpecificationError when passed a dictionary and columns
    were missing; will now always raise a KeyError instead (GH40004)

  * Bug in DataFrameGroupBy.sample() where column selection was not applied
    before computing the result (GH39928)

  * Bug in ExponentialMovingWindow when calling __getitem__ would incorrectly
    raise a ValueError when providing times (GH40164)

  * Bug in ExponentialMovingWindow when calling __getitem__ would not retain
    com, span, alpha or halflife attributes (GH40164)

  * ExponentialMovingWindow now raises a NotImplementedError when specifying
    times with adjust=False due to an incorrect calculation (GH40098)

  * Bug in ExponentialMovingWindowGroupby.mean() where the times argument was
    ignored when engine='numba' (GH40951)

  * Bug in ExponentialMovingWindowGroupby.mean() where the wrong times were
    used the in case of multiple groups (GH40951)

  * Bug in ExponentialMovingWindowGroupby where the times vector and values
    became out of sync for non-trivial groups (GH40951)

  * Bug in Series.asfreq() and DataFrame.asfreq() dropping rows when the index
    was not sorted (GH39805)

  * Bug in aggregation functions for DataFrame not respecting numeric_only
    argument when level keyword was given (GH40660)

  * Bug in SeriesGroupBy.aggregate() where using a user-defined function to
    aggregate a Series with an object-typed Index causes an incorrect Index
    shape (GH40014)

  * Bug in RollingGroupby where as_index=False argument in groupby was ignored
    (GH39433)

  * Bug in GroupBy.any() and GroupBy.all() raising a ValueError when using with
    nullable type columns holding NA even with skipna=True (GH40585)

  * Bug in GroupBy.cummin() and GroupBy.cummax() incorrectly rounding integer
    values near the int64 implementations bounds (GH40767)

  * Bug in GroupBy.rank() with nullable dtypes incorrectly raising a TypeError
    (GH41010)

  * Bug in GroupBy.cummin() and GroupBy.cummax() computing wrong result with
    nullable data types too large to roundtrip when casting to float (GH37493)

  * Bug in DataFrame.rolling() returning mean zero for all NaN window with
    min_periods=0 if calculation is not numerical stable (GH41053)

  * Bug in DataFrame.rolling() returning sum not zero for all NaN window with
    min_periods=0 if calculation is not numerical stable (GH41053)

  * Bug in SeriesGroupBy.agg() failing to retain ordered CategoricalDtype on
    order-preserving aggregations (GH41147)

  * Bug in GroupBy.min() and GroupBy.max() with multiple object-dtype columns
    and numeric_only=False incorrectly raising a ValueError (GH41111)

  * Bug in DataFrameGroupBy.rank() with the GroupBy object's axis=0 and the
    rank method's keyword axis=1 (GH41320)

  * Bug in DataFrameGroupBy.__getitem__() with non-unique columns incorrectly
    returning a malformed SeriesGroupBy instead of DataFrameGroupBy (GH41427)

  * Bug in DataFrameGroupBy.transform() with non-unique columns incorrectly
    raising an AttributeError (GH41427)

  * Bug in Resampler.apply() with non-unique columns incorrectly dropping
    duplicated columns (GH41445)

  * Bug in Series.groupby() aggregations incorrectly returning empty Series
    instead of raising TypeError on aggregations that are invalid for its
    dtype, e.g. .prod with datetime64[ns] dtype (GH41342)

  * Bug in DataFrameGroupBy aggregations incorrectly failing to drop columns
    with invalid dtypes for that aggregation when there are no valid columns (
    GH41291)

  * Bug in DataFrame.rolling.__iter__() where on was not assigned to the index
    of the resulting objects (GH40373)

  * Bug in DataFrameGroupBy.transform() and DataFrameGroupBy.agg() with engine=
    "numba" where *args were being cached with the user passed function (
    GH41647)

  * Bug in DataFrameGroupBy methods agg, transform, sum, bfill, ffill, pad,
    pct_change, shift, ohlc dropping .columns.names (GH41497)

-------------------------------------------------------------------------------

Reshaping

  * Bug in merge() raising error when performing an inner join with partial
    index and right_index=True when there was no overlap between indices (
    GH33814)

  * Bug in DataFrame.unstack() with missing levels led to incorrect index names
    (GH37510)

  * Bug in merge_asof() propagating the right Index with left_index=True and
    right_on specification instead of left Index (GH33463)

  * Bug in DataFrame.join() on a DataFrame with a MultiIndex returned the wrong
    result when one of both indexes had only one level (GH36909)

  * merge_asof() now raises a ValueError instead of a cryptic TypeError in case
    of non-numerical merge columns (GH29130)

  * Bug in DataFrame.join() not assigning values correctly when the DataFrame
    had a MultiIndex where at least one dimension had dtype Categorical with
    non-alphabetically sorted categories (GH38502)

  * Series.value_counts() and Series.mode() now return consistent keys in
    original order (GH12679, GH11227 and GH39007)

  * Bug in DataFrame.stack() not handling NaN in MultiIndex columns correctly (
    GH39481)

  * Bug in DataFrame.apply() would give incorrect results when the argument
    func was a string, axis=1, and the axis argument was not supported; now
    raises a ValueError instead (GH39211)

  * Bug in DataFrame.sort_values() not reshaping the index correctly after
    sorting on columns when ignore_index=True (GH39464)

  * Bug in DataFrame.append() returning incorrect dtypes with combinations of
    ExtensionDtype dtypes (GH39454)

  * Bug in DataFrame.append() returning incorrect dtypes when used with
    combinations of datetime64 and timedelta64 dtypes (GH39574)

  * Bug in DataFrame.append() with a DataFrame with a MultiIndex and appending
    a Series whose Index is not a MultiIndex (GH41707)

  * Bug in DataFrame.pivot_table() returning a MultiIndex for a single value
    when operating on an empty DataFrame (GH13483)

  * Index can now be passed to the numpy.all() function (GH40180)

  * Bug in DataFrame.stack() not preserving CategoricalDtype in a MultiIndex (
    GH36991)

  * Bug in to_datetime() raising an error when the input sequence contained
    unhashable items (GH39756)

  * Bug in Series.explode() preserving the index when ignore_index was True and
    values were scalars (GH40487)

  * Bug in to_datetime() raising a ValueError when Series contains None and NaT
    and has more than 50 elements (GH39882)

  * Bug in Series.unstack() and DataFrame.unstack() with object-dtype values
    containing timezone-aware datetime objects incorrectly raising TypeError (
    GH41875)

  * Bug in DataFrame.melt() raising InvalidIndexError when DataFrame has
    duplicate columns used as value_vars (GH41951)

-------------------------------------------------------------------------------

Sparse

  * Bug in DataFrame.sparse.to_coo() raising a KeyError with columns that are a
    numeric Index without a 0 (GH18414)

  * Bug in SparseArray.astype() with copy=False producing incorrect results
    when going from integer dtype to floating dtype (GH34456)

  * Bug in SparseArray.max() and SparseArray.min() would always return an empty
    result (GH40921)

-------------------------------------------------------------------------------

ExtensionArray

  * Bug in DataFrame.where() when other is a Series with an ExtensionDtype (
    GH38729)

  * Fixed bug where Series.idxmax(), Series.idxmin(), Series.argmax(), and
    Series.argmin() would fail when the underlying data is an ExtensionArray (
    GH32749, GH33719, GH36566)

  * Fixed bug where some properties of subclasses of PandasExtensionDtype where
    improperly cached (GH40329)

  * Bug in DataFrame.mask() where masking a DataFrame with an ExtensionDtype
    raises a ValueError (GH40941)

-------------------------------------------------------------------------------

Styler

  * Bug in Styler where the subset argument in methods raised an error for some
    valid MultiIndex slices (GH33562)

  * Styler rendered HTML output has seen minor alterations to support w3 good
    code standards (GH39626)

  * Bug in Styler where rendered HTML was missing a column class identifier for
    certain header cells (GH39716)

  * Bug in Styler.background_gradient() where text-color was not determined
    correctly (GH39888)

  * Bug in Styler.set_table_styles() where multiple elements in CSS-selectors
    of the table_styles argument were not correctly added (GH34061)

  * Bug in Styler where copying from Jupyter dropped the top left cell and
    misaligned headers (GH12147)

  * Bug in Styler.where where kwargs were not passed to the applicable callable
    (GH40845)

  * Bug in Styler causing CSS to duplicate on multiple renders (GH39395,
    GH40334)

-------------------------------------------------------------------------------

Other

  * inspect.getmembers(Series) no longer raises an AbstractMethodError (GH38782
    )

  * Bug in Series.where() with numeric dtype and other=None not casting to nan
    (GH39761)

  * Bug in assert_series_equal(), assert_frame_equal(), assert_index_equal()
    and assert_extension_array_equal() incorrectly raising when an attribute
    has an unrecognized NA type (GH39461)

  * Bug in assert_index_equal() with exact=True not raising when comparing
    CategoricalIndex instances with Int64Index and RangeIndex categories (
    GH41263)

  * Bug in DataFrame.equals(), Series.equals(), and Index.equals() with
    object-dtype containing np.datetime64("NaT") or np.timedelta64("NaT") (
    GH39650)

  * Bug in show_versions() where console JSON output was not proper JSON (
    GH39701)

  * pandas can now compile on z/OS when using xlc (GH35826)

  * Bug in pandas.util.hash_pandas_object() not recognizing hash_key, encoding
    and categorize when the input object type is a DataFrame (GH41404)

What's new in 1.2.5 (June 22, 2021)

These are the changes in pandas 1.2.5. See Release notes for a full changelog
including other versions of pandas.

-------------------------------------------------------------------------------

Fixed regressions

  * Fixed regression in concat() between two DataFrame where one has an Index
    that is all-None and the other is DatetimeIndex incorrectly raising (
    GH40841)

  * Fixed regression in DataFrame.sum() and DataFrame.prod() when min_count and
    numeric_only are both given (GH41074)

  * Fixed regression in read_csv() when using memory_map=True with an non-UTF8
    encoding (GH40986)

  * Fixed regression in DataFrame.replace() and Series.replace() when the
    values to replace is a NumPy float array (GH40371)

  * Fixed regression in ExcelFile() when a corrupt file is opened but not
    closed (GH41778)

  * Fixed regression in DataFrame.astype() with dtype=str failing to convert
    NaN in categorical columns (GH41797)


(ryoon)
diff -r1.33 -r1.34 pkgsrc/math/py-pandas/Makefile
diff -r1.19 -r1.20 pkgsrc/math/py-pandas/PLIST
diff -r1.26 -r1.27 pkgsrc/math/py-pandas/distinfo

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

--- pkgsrc/math/py-pandas/Makefile 2021/05/06 04:39:03 1.33
+++ pkgsrc/math/py-pandas/Makefile 2021/11/21 16:31:26 1.34
@@ -1,16 +1,16 @@ @@ -1,16 +1,16 @@
1# $NetBSD: Makefile,v 1.33 2021/05/06 04:39:03 adam Exp $ 1# $NetBSD: Makefile,v 1.34 2021/11/21 16:31:26 ryoon Exp $
2 2
3DISTNAME= pandas-1.2.4 3DISTNAME= pandas-1.3.4
4PKGNAME= ${PYPKGPREFIX}-${DISTNAME} 4PKGNAME= ${PYPKGPREFIX}-${DISTNAME}
5CATEGORIES= math graphics python 5CATEGORIES= math graphics python
6MASTER_SITES= ${MASTER_SITE_PYPI:=p/pandas/} 6MASTER_SITES= ${MASTER_SITE_PYPI:=p/pandas/}
7 7
8MAINTAINER= bad@NetBSD.org 8MAINTAINER= bad@NetBSD.org
9HOMEPAGE= https://pandas.pydata.org/ 9HOMEPAGE= https://pandas.pydata.org/
10COMMENT= Python Data Analysis Library 10COMMENT= Python Data Analysis Library
11LICENSE= modified-bsd 11LICENSE= modified-bsd
12 12
13DEPENDS+= ${PYPKGPREFIX}-bottleneck-[0-9]*:../../math/py-bottleneck 13DEPENDS+= ${PYPKGPREFIX}-bottleneck-[0-9]*:../../math/py-bottleneck
14DEPENDS+= ${PYPKGPREFIX}-dateutil>=2.7.3:../../time/py-dateutil 14DEPENDS+= ${PYPKGPREFIX}-dateutil>=2.7.3:../../time/py-dateutil
15DEPENDS+= ${PYPKGPREFIX}-matplotlib-[0-9]*:../../graphics/py-matplotlib 15DEPENDS+= ${PYPKGPREFIX}-matplotlib-[0-9]*:../../graphics/py-matplotlib
16DEPENDS+= ${PYPKGPREFIX}-numexpr-[0-9]*:../../math/py-numexpr 16DEPENDS+= ${PYPKGPREFIX}-numexpr-[0-9]*:../../math/py-numexpr

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

--- pkgsrc/math/py-pandas/PLIST 2021/05/06 04:39:03 1.19
+++ pkgsrc/math/py-pandas/PLIST 2021/11/21 16:31:26 1.20
@@ -1,14 +1,14 @@ @@ -1,14 +1,14 @@
1@comment $NetBSD: PLIST,v 1.19 2021/05/06 04:39:03 adam Exp $ 1@comment $NetBSD: PLIST,v 1.20 2021/11/21 16:31:26 ryoon 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
@@ -17,75 +17,221 @@ ${PYSITELIB}/pandas/_config/config.pyc @@ -17,75 +17,221 @@ ${PYSITELIB}/pandas/_config/config.pyc
17${PYSITELIB}/pandas/_config/config.pyo 17${PYSITELIB}/pandas/_config/config.pyo
18${PYSITELIB}/pandas/_config/dates.py 18${PYSITELIB}/pandas/_config/dates.py
19${PYSITELIB}/pandas/_config/dates.pyc 19${PYSITELIB}/pandas/_config/dates.pyc
20${PYSITELIB}/pandas/_config/dates.pyo 20${PYSITELIB}/pandas/_config/dates.pyo
21${PYSITELIB}/pandas/_config/display.py 21${PYSITELIB}/pandas/_config/display.py
22${PYSITELIB}/pandas/_config/display.pyc 22${PYSITELIB}/pandas/_config/display.pyc
23${PYSITELIB}/pandas/_config/display.pyo 23${PYSITELIB}/pandas/_config/display.pyo
24${PYSITELIB}/pandas/_config/localization.py 24${PYSITELIB}/pandas/_config/localization.py
25${PYSITELIB}/pandas/_config/localization.pyc 25${PYSITELIB}/pandas/_config/localization.pyc
26${PYSITELIB}/pandas/_config/localization.pyo 26${PYSITELIB}/pandas/_config/localization.pyo
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
 31${PYSITELIB}/pandas/_libs/algos.pyi
 32${PYSITELIB}/pandas/_libs/algos.pyx
30${PYSITELIB}/pandas/_libs/algos.so 33${PYSITELIB}/pandas/_libs/algos.so
 34${PYSITELIB}/pandas/_libs/algos_common_helper.pxi.in
 35${PYSITELIB}/pandas/_libs/algos_take_helper.pxi.in
 36${PYSITELIB}/pandas/_libs/arrays.pxd
 37${PYSITELIB}/pandas/_libs/arrays.pyi
 38${PYSITELIB}/pandas/_libs/arrays.pyx
 39${PYSITELIB}/pandas/_libs/arrays.so
 40${PYSITELIB}/pandas/_libs/groupby.pyi
 41${PYSITELIB}/pandas/_libs/groupby.pyx
31${PYSITELIB}/pandas/_libs/groupby.so 42${PYSITELIB}/pandas/_libs/groupby.so
 43${PYSITELIB}/pandas/_libs/hashing.pyi
 44${PYSITELIB}/pandas/_libs/hashing.pyx
32${PYSITELIB}/pandas/_libs/hashing.so 45${PYSITELIB}/pandas/_libs/hashing.so
 46${PYSITELIB}/pandas/_libs/hashtable.pxd
 47${PYSITELIB}/pandas/_libs/hashtable.pyi
 48${PYSITELIB}/pandas/_libs/hashtable.pyx
33${PYSITELIB}/pandas/_libs/hashtable.so 49${PYSITELIB}/pandas/_libs/hashtable.so
 50${PYSITELIB}/pandas/_libs/hashtable_class_helper.pxi.in
 51${PYSITELIB}/pandas/_libs/hashtable_func_helper.pxi.in
 52${PYSITELIB}/pandas/_libs/index.pyi
 53${PYSITELIB}/pandas/_libs/index.pyx
34${PYSITELIB}/pandas/_libs/index.so 54${PYSITELIB}/pandas/_libs/index.so
 55${PYSITELIB}/pandas/_libs/index_class_helper.pxi.in
 56${PYSITELIB}/pandas/_libs/indexing.pyx
35${PYSITELIB}/pandas/_libs/indexing.so 57${PYSITELIB}/pandas/_libs/indexing.so
 58${PYSITELIB}/pandas/_libs/internals.pyi
 59${PYSITELIB}/pandas/_libs/internals.pyx
36${PYSITELIB}/pandas/_libs/internals.so 60${PYSITELIB}/pandas/_libs/internals.so
 61${PYSITELIB}/pandas/_libs/interval.pyx
37${PYSITELIB}/pandas/_libs/interval.so 62${PYSITELIB}/pandas/_libs/interval.so
 63${PYSITELIB}/pandas/_libs/intervaltree.pxi.in
 64${PYSITELIB}/pandas/_libs/join.pyi
 65${PYSITELIB}/pandas/_libs/join.pyx
38${PYSITELIB}/pandas/_libs/join.so 66${PYSITELIB}/pandas/_libs/join.so
39${PYSITELIB}/pandas/_libs/json.so 67${PYSITELIB}/pandas/_libs/json.so
 68${PYSITELIB}/pandas/_libs/khash.pxd
 69${PYSITELIB}/pandas/_libs/khash_for_primitive_helper.pxi.in
 70${PYSITELIB}/pandas/_libs/lib.pxd
 71${PYSITELIB}/pandas/_libs/lib.pyi
 72${PYSITELIB}/pandas/_libs/lib.pyx
40${PYSITELIB}/pandas/_libs/lib.so 73${PYSITELIB}/pandas/_libs/lib.so
 74${PYSITELIB}/pandas/_libs/missing.pxd
 75${PYSITELIB}/pandas/_libs/missing.pyx
41${PYSITELIB}/pandas/_libs/missing.so 76${PYSITELIB}/pandas/_libs/missing.so
 77${PYSITELIB}/pandas/_libs/ops.pyi
 78${PYSITELIB}/pandas/_libs/ops.pyx
42${PYSITELIB}/pandas/_libs/ops.so 79${PYSITELIB}/pandas/_libs/ops.so
 80${PYSITELIB}/pandas/_libs/ops_dispatch.pyi
 81${PYSITELIB}/pandas/_libs/ops_dispatch.pyx
43${PYSITELIB}/pandas/_libs/ops_dispatch.so 82${PYSITELIB}/pandas/_libs/ops_dispatch.so
 83${PYSITELIB}/pandas/_libs/parsers.pyi
 84${PYSITELIB}/pandas/_libs/parsers.pyx
44${PYSITELIB}/pandas/_libs/parsers.so 85${PYSITELIB}/pandas/_libs/parsers.so
 86${PYSITELIB}/pandas/_libs/properties.pyx
45${PYSITELIB}/pandas/_libs/properties.so 87${PYSITELIB}/pandas/_libs/properties.so
 88${PYSITELIB}/pandas/_libs/reduction.pyx
46${PYSITELIB}/pandas/_libs/reduction.so 89${PYSITELIB}/pandas/_libs/reduction.so
 90${PYSITELIB}/pandas/_libs/reshape.pyi
 91${PYSITELIB}/pandas/_libs/reshape.pyx
47${PYSITELIB}/pandas/_libs/reshape.so 92${PYSITELIB}/pandas/_libs/reshape.so
 93${PYSITELIB}/pandas/_libs/sparse.pyx
48${PYSITELIB}/pandas/_libs/sparse.so 94${PYSITELIB}/pandas/_libs/sparse.so
 95${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
 120${PYSITELIB}/pandas/_libs/testing.pyx
49${PYSITELIB}/pandas/_libs/testing.so 121${PYSITELIB}/pandas/_libs/testing.so
 122${PYSITELIB}/pandas/_libs/tslib.pyi
 123${PYSITELIB}/pandas/_libs/tslib.pyx
50${PYSITELIB}/pandas/_libs/tslib.so 124${PYSITELIB}/pandas/_libs/tslib.so
51${PYSITELIB}/pandas/_libs/tslibs/__init__.py 125${PYSITELIB}/pandas/_libs/tslibs/__init__.py
52${PYSITELIB}/pandas/_libs/tslibs/__init__.pyc 126${PYSITELIB}/pandas/_libs/tslibs/__init__.pyc
53${PYSITELIB}/pandas/_libs/tslibs/__init__.pyo 127${PYSITELIB}/pandas/_libs/tslibs/__init__.pyo
 128${PYSITELIB}/pandas/_libs/tslibs/base.pxd
 129${PYSITELIB}/pandas/_libs/tslibs/base.pyx
54${PYSITELIB}/pandas/_libs/tslibs/base.so 130${PYSITELIB}/pandas/_libs/tslibs/base.so
 131${PYSITELIB}/pandas/_libs/tslibs/ccalendar.pxd
 132${PYSITELIB}/pandas/_libs/tslibs/ccalendar.pyi
 133${PYSITELIB}/pandas/_libs/tslibs/ccalendar.pyx
55${PYSITELIB}/pandas/_libs/tslibs/ccalendar.so 134${PYSITELIB}/pandas/_libs/tslibs/ccalendar.so
 135${PYSITELIB}/pandas/_libs/tslibs/conversion.pxd
 136${PYSITELIB}/pandas/_libs/tslibs/conversion.pyi
 137${PYSITELIB}/pandas/_libs/tslibs/conversion.pyx
56${PYSITELIB}/pandas/_libs/tslibs/conversion.so 138${PYSITELIB}/pandas/_libs/tslibs/conversion.so
 139${PYSITELIB}/pandas/_libs/tslibs/dtypes.pxd
 140${PYSITELIB}/pandas/_libs/tslibs/dtypes.pyi
 141${PYSITELIB}/pandas/_libs/tslibs/dtypes.pyx
57${PYSITELIB}/pandas/_libs/tslibs/dtypes.so 142${PYSITELIB}/pandas/_libs/tslibs/dtypes.so
 143${PYSITELIB}/pandas/_libs/tslibs/fields.pyi
 144${PYSITELIB}/pandas/_libs/tslibs/fields.pyx
58${PYSITELIB}/pandas/_libs/tslibs/fields.so 145${PYSITELIB}/pandas/_libs/tslibs/fields.so
 146${PYSITELIB}/pandas/_libs/tslibs/nattype.pxd
 147${PYSITELIB}/pandas/_libs/tslibs/nattype.pyi
 148${PYSITELIB}/pandas/_libs/tslibs/nattype.pyx
59${PYSITELIB}/pandas/_libs/tslibs/nattype.so 149${PYSITELIB}/pandas/_libs/tslibs/nattype.so
 150${PYSITELIB}/pandas/_libs/tslibs/np_datetime.pxd
 151${PYSITELIB}/pandas/_libs/tslibs/np_datetime.pyx
60${PYSITELIB}/pandas/_libs/tslibs/np_datetime.so 152${PYSITELIB}/pandas/_libs/tslibs/np_datetime.so
 153${PYSITELIB}/pandas/_libs/tslibs/offsets.pxd
 154${PYSITELIB}/pandas/_libs/tslibs/offsets.pyx
61${PYSITELIB}/pandas/_libs/tslibs/offsets.so 155${PYSITELIB}/pandas/_libs/tslibs/offsets.so
 156${PYSITELIB}/pandas/_libs/tslibs/parsing.pxd
 157${PYSITELIB}/pandas/_libs/tslibs/parsing.pyi
 158${PYSITELIB}/pandas/_libs/tslibs/parsing.pyx
62${PYSITELIB}/pandas/_libs/tslibs/parsing.so 159${PYSITELIB}/pandas/_libs/tslibs/parsing.so
 160${PYSITELIB}/pandas/_libs/tslibs/period.pxd
 161${PYSITELIB}/pandas/_libs/tslibs/period.pyi
 162${PYSITELIB}/pandas/_libs/tslibs/period.pyx
63${PYSITELIB}/pandas/_libs/tslibs/period.so 163${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
 169${PYSITELIB}/pandas/_libs/tslibs/strptime.pyx
64${PYSITELIB}/pandas/_libs/tslibs/strptime.so 170${PYSITELIB}/pandas/_libs/tslibs/strptime.so
 171${PYSITELIB}/pandas/_libs/tslibs/timedeltas.pxd
 172${PYSITELIB}/pandas/_libs/tslibs/timedeltas.pyi
 173${PYSITELIB}/pandas/_libs/tslibs/timedeltas.pyx
65${PYSITELIB}/pandas/_libs/tslibs/timedeltas.so 174${PYSITELIB}/pandas/_libs/tslibs/timedeltas.so
 175${PYSITELIB}/pandas/_libs/tslibs/timestamps.pxd
 176${PYSITELIB}/pandas/_libs/tslibs/timestamps.pyi
 177${PYSITELIB}/pandas/_libs/tslibs/timestamps.pyx
66${PYSITELIB}/pandas/_libs/tslibs/timestamps.so 178${PYSITELIB}/pandas/_libs/tslibs/timestamps.so
 179${PYSITELIB}/pandas/_libs/tslibs/timezones.pxd
 180${PYSITELIB}/pandas/_libs/tslibs/timezones.pyi
 181${PYSITELIB}/pandas/_libs/tslibs/timezones.pyx
67${PYSITELIB}/pandas/_libs/tslibs/timezones.so 182${PYSITELIB}/pandas/_libs/tslibs/timezones.so
 183${PYSITELIB}/pandas/_libs/tslibs/tzconversion.pxd
 184${PYSITELIB}/pandas/_libs/tslibs/tzconversion.pyi
 185${PYSITELIB}/pandas/_libs/tslibs/tzconversion.pyx
68${PYSITELIB}/pandas/_libs/tslibs/tzconversion.so 186${PYSITELIB}/pandas/_libs/tslibs/tzconversion.so
 187${PYSITELIB}/pandas/_libs/tslibs/util.pxd
 188${PYSITELIB}/pandas/_libs/tslibs/vectorized.pyi
 189${PYSITELIB}/pandas/_libs/tslibs/vectorized.pyx
69${PYSITELIB}/pandas/_libs/tslibs/vectorized.so 190${PYSITELIB}/pandas/_libs/tslibs/vectorized.so
 191${PYSITELIB}/pandas/_libs/util.pxd
70${PYSITELIB}/pandas/_libs/window/__init__.py 192${PYSITELIB}/pandas/_libs/window/__init__.py
71${PYSITELIB}/pandas/_libs/window/__init__.pyc 193${PYSITELIB}/pandas/_libs/window/__init__.pyc
72${PYSITELIB}/pandas/_libs/window/__init__.pyo 194${PYSITELIB}/pandas/_libs/window/__init__.pyo
 195${PYSITELIB}/pandas/_libs/window/aggregations.pyi
 196${PYSITELIB}/pandas/_libs/window/aggregations.pyx
73${PYSITELIB}/pandas/_libs/window/aggregations.so 197${PYSITELIB}/pandas/_libs/window/aggregations.so
 198${PYSITELIB}/pandas/_libs/window/indexers.pyi
 199${PYSITELIB}/pandas/_libs/window/indexers.pyx
74${PYSITELIB}/pandas/_libs/window/indexers.so 200${PYSITELIB}/pandas/_libs/window/indexers.so
 201${PYSITELIB}/pandas/_libs/writers.pyi
 202${PYSITELIB}/pandas/_libs/writers.pyx
75${PYSITELIB}/pandas/_libs/writers.so 203${PYSITELIB}/pandas/_libs/writers.so
76${PYSITELIB}/pandas/_testing.py 204${PYSITELIB}/pandas/_testing/__init__.py
77${PYSITELIB}/pandas/_testing.pyc 205${PYSITELIB}/pandas/_testing/__init__.pyc
78${PYSITELIB}/pandas/_testing.pyo 206${PYSITELIB}/pandas/_testing/__init__.pyo
 207${PYSITELIB}/pandas/_testing/_io.py
 208${PYSITELIB}/pandas/_testing/_io.pyc
 209${PYSITELIB}/pandas/_testing/_io.pyo
 210${PYSITELIB}/pandas/_testing/_random.py
 211${PYSITELIB}/pandas/_testing/_random.pyc
 212${PYSITELIB}/pandas/_testing/_random.pyo
 213${PYSITELIB}/pandas/_testing/_warnings.py
 214${PYSITELIB}/pandas/_testing/_warnings.pyc
 215${PYSITELIB}/pandas/_testing/_warnings.pyo
 216${PYSITELIB}/pandas/_testing/asserters.py
 217${PYSITELIB}/pandas/_testing/asserters.pyc
 218${PYSITELIB}/pandas/_testing/asserters.pyo
 219${PYSITELIB}/pandas/_testing/compat.py
 220${PYSITELIB}/pandas/_testing/compat.pyc
 221${PYSITELIB}/pandas/_testing/compat.pyo
 222${PYSITELIB}/pandas/_testing/contexts.py
 223${PYSITELIB}/pandas/_testing/contexts.pyc
 224${PYSITELIB}/pandas/_testing/contexts.pyo
79${PYSITELIB}/pandas/_typing.py 225${PYSITELIB}/pandas/_typing.py
80${PYSITELIB}/pandas/_typing.pyc 226${PYSITELIB}/pandas/_typing.pyc
81${PYSITELIB}/pandas/_typing.pyo 227${PYSITELIB}/pandas/_typing.pyo
82${PYSITELIB}/pandas/_version.py 228${PYSITELIB}/pandas/_version.py
83${PYSITELIB}/pandas/_version.pyc 229${PYSITELIB}/pandas/_version.pyc
84${PYSITELIB}/pandas/_version.pyo 230${PYSITELIB}/pandas/_version.pyo
85${PYSITELIB}/pandas/api/__init__.py 231${PYSITELIB}/pandas/api/__init__.py
86${PYSITELIB}/pandas/api/__init__.pyc 232${PYSITELIB}/pandas/api/__init__.pyc
87${PYSITELIB}/pandas/api/__init__.pyo 233${PYSITELIB}/pandas/api/__init__.pyo
88${PYSITELIB}/pandas/api/extensions/__init__.py 234${PYSITELIB}/pandas/api/extensions/__init__.py
89${PYSITELIB}/pandas/api/extensions/__init__.pyc 235${PYSITELIB}/pandas/api/extensions/__init__.pyc
90${PYSITELIB}/pandas/api/extensions/__init__.pyo 236${PYSITELIB}/pandas/api/extensions/__init__.pyo
91${PYSITELIB}/pandas/api/indexers/__init__.py 237${PYSITELIB}/pandas/api/indexers/__init__.py
@@ -105,26 +251,29 @@ ${PYSITELIB}/pandas/compat/_optional.pyc @@ -105,26 +251,29 @@ ${PYSITELIB}/pandas/compat/_optional.pyc
105${PYSITELIB}/pandas/compat/_optional.pyo 251${PYSITELIB}/pandas/compat/_optional.pyo
106${PYSITELIB}/pandas/compat/chainmap.py 252${PYSITELIB}/pandas/compat/chainmap.py
107${PYSITELIB}/pandas/compat/chainmap.pyc 253${PYSITELIB}/pandas/compat/chainmap.pyc
108${PYSITELIB}/pandas/compat/chainmap.pyo 254${PYSITELIB}/pandas/compat/chainmap.pyo
109${PYSITELIB}/pandas/compat/numpy/__init__.py 255${PYSITELIB}/pandas/compat/numpy/__init__.py
110${PYSITELIB}/pandas/compat/numpy/__init__.pyc 256${PYSITELIB}/pandas/compat/numpy/__init__.pyc
111${PYSITELIB}/pandas/compat/numpy/__init__.pyo 257${PYSITELIB}/pandas/compat/numpy/__init__.pyo
112${PYSITELIB}/pandas/compat/numpy/function.py 258${PYSITELIB}/pandas/compat/numpy/function.py
113${PYSITELIB}/pandas/compat/numpy/function.pyc 259${PYSITELIB}/pandas/compat/numpy/function.pyc
114${PYSITELIB}/pandas/compat/numpy/function.pyo 260${PYSITELIB}/pandas/compat/numpy/function.pyo
115${PYSITELIB}/pandas/compat/pickle_compat.py 261${PYSITELIB}/pandas/compat/pickle_compat.py
116${PYSITELIB}/pandas/compat/pickle_compat.pyc 262${PYSITELIB}/pandas/compat/pickle_compat.pyc
117${PYSITELIB}/pandas/compat/pickle_compat.pyo 263${PYSITELIB}/pandas/compat/pickle_compat.pyo
 264${PYSITELIB}/pandas/compat/pyarrow.py
 265${PYSITELIB}/pandas/compat/pyarrow.pyc
 266${PYSITELIB}/pandas/compat/pyarrow.pyo
118${PYSITELIB}/pandas/conftest.py 267${PYSITELIB}/pandas/conftest.py
119${PYSITELIB}/pandas/conftest.pyc 268${PYSITELIB}/pandas/conftest.pyc
120${PYSITELIB}/pandas/conftest.pyo 269${PYSITELIB}/pandas/conftest.pyo
121${PYSITELIB}/pandas/core/__init__.py 270${PYSITELIB}/pandas/core/__init__.py
122${PYSITELIB}/pandas/core/__init__.pyc 271${PYSITELIB}/pandas/core/__init__.pyc
123${PYSITELIB}/pandas/core/__init__.pyo 272${PYSITELIB}/pandas/core/__init__.pyo
124${PYSITELIB}/pandas/core/accessor.py 273${PYSITELIB}/pandas/core/accessor.py
125${PYSITELIB}/pandas/core/accessor.pyc 274${PYSITELIB}/pandas/core/accessor.pyc
126${PYSITELIB}/pandas/core/accessor.pyo 275${PYSITELIB}/pandas/core/accessor.pyo
127${PYSITELIB}/pandas/core/aggregation.py 276${PYSITELIB}/pandas/core/aggregation.py
128${PYSITELIB}/pandas/core/aggregation.pyc 277${PYSITELIB}/pandas/core/aggregation.pyc
129${PYSITELIB}/pandas/core/aggregation.pyo 278${PYSITELIB}/pandas/core/aggregation.pyo
130${PYSITELIB}/pandas/core/algorithms.py 279${PYSITELIB}/pandas/core/algorithms.py
@@ -132,29 +281,38 @@ ${PYSITELIB}/pandas/core/algorithms.pyc @@ -132,29 +281,38 @@ ${PYSITELIB}/pandas/core/algorithms.pyc
132${PYSITELIB}/pandas/core/algorithms.pyo 281${PYSITELIB}/pandas/core/algorithms.pyo
133${PYSITELIB}/pandas/core/api.py 282${PYSITELIB}/pandas/core/api.py
134${PYSITELIB}/pandas/core/api.pyc 283${PYSITELIB}/pandas/core/api.pyc
135${PYSITELIB}/pandas/core/api.pyo 284${PYSITELIB}/pandas/core/api.pyo
136${PYSITELIB}/pandas/core/apply.py 285${PYSITELIB}/pandas/core/apply.py
137${PYSITELIB}/pandas/core/apply.pyc 286${PYSITELIB}/pandas/core/apply.pyc
138${PYSITELIB}/pandas/core/apply.pyo 287${PYSITELIB}/pandas/core/apply.pyo
139${PYSITELIB}/pandas/core/array_algos/__init__.py 288${PYSITELIB}/pandas/core/array_algos/__init__.py
140${PYSITELIB}/pandas/core/array_algos/__init__.pyc 289${PYSITELIB}/pandas/core/array_algos/__init__.pyc
141${PYSITELIB}/pandas/core/array_algos/__init__.pyo 290${PYSITELIB}/pandas/core/array_algos/__init__.pyo
142${PYSITELIB}/pandas/core/array_algos/masked_reductions.py 291${PYSITELIB}/pandas/core/array_algos/masked_reductions.py
143${PYSITELIB}/pandas/core/array_algos/masked_reductions.pyc 292${PYSITELIB}/pandas/core/array_algos/masked_reductions.pyc
144${PYSITELIB}/pandas/core/array_algos/masked_reductions.pyo 293${PYSITELIB}/pandas/core/array_algos/masked_reductions.pyo
 294${PYSITELIB}/pandas/core/array_algos/putmask.py
 295${PYSITELIB}/pandas/core/array_algos/putmask.pyc
 296${PYSITELIB}/pandas/core/array_algos/putmask.pyo
 297${PYSITELIB}/pandas/core/array_algos/quantile.py
 298${PYSITELIB}/pandas/core/array_algos/quantile.pyc
 299${PYSITELIB}/pandas/core/array_algos/quantile.pyo
145${PYSITELIB}/pandas/core/array_algos/replace.py 300${PYSITELIB}/pandas/core/array_algos/replace.py
146${PYSITELIB}/pandas/core/array_algos/replace.pyc 301${PYSITELIB}/pandas/core/array_algos/replace.pyc
147${PYSITELIB}/pandas/core/array_algos/replace.pyo 302${PYSITELIB}/pandas/core/array_algos/replace.pyo
 303${PYSITELIB}/pandas/core/array_algos/take.py
 304${PYSITELIB}/pandas/core/array_algos/take.pyc
 305${PYSITELIB}/pandas/core/array_algos/take.pyo
148${PYSITELIB}/pandas/core/array_algos/transforms.py 306${PYSITELIB}/pandas/core/array_algos/transforms.py
149${PYSITELIB}/pandas/core/array_algos/transforms.pyc 307${PYSITELIB}/pandas/core/array_algos/transforms.pyc
150${PYSITELIB}/pandas/core/array_algos/transforms.pyo 308${PYSITELIB}/pandas/core/array_algos/transforms.pyo
151${PYSITELIB}/pandas/core/arraylike.py 309${PYSITELIB}/pandas/core/arraylike.py
152${PYSITELIB}/pandas/core/arraylike.pyc 310${PYSITELIB}/pandas/core/arraylike.pyc
153${PYSITELIB}/pandas/core/arraylike.pyo 311${PYSITELIB}/pandas/core/arraylike.pyo
154${PYSITELIB}/pandas/core/arrays/__init__.py 312${PYSITELIB}/pandas/core/arrays/__init__.py
155${PYSITELIB}/pandas/core/arrays/__init__.pyc 313${PYSITELIB}/pandas/core/arrays/__init__.pyc
156${PYSITELIB}/pandas/core/arrays/__init__.pyo 314${PYSITELIB}/pandas/core/arrays/__init__.pyo
157${PYSITELIB}/pandas/core/arrays/_arrow_utils.py 315${PYSITELIB}/pandas/core/arrays/_arrow_utils.py
158${PYSITELIB}/pandas/core/arrays/_arrow_utils.pyc 316${PYSITELIB}/pandas/core/arrays/_arrow_utils.pyc
159${PYSITELIB}/pandas/core/arrays/_arrow_utils.pyo 317${PYSITELIB}/pandas/core/arrays/_arrow_utils.pyo
160${PYSITELIB}/pandas/core/arrays/_mixins.py 318${PYSITELIB}/pandas/core/arrays/_mixins.py
@@ -264,26 +422,29 @@ ${PYSITELIB}/pandas/core/computation/par @@ -264,26 +422,29 @@ ${PYSITELIB}/pandas/core/computation/par
264${PYSITELIB}/pandas/core/computation/parsing.pyo 422${PYSITELIB}/pandas/core/computation/parsing.pyo
265${PYSITELIB}/pandas/core/computation/pytables.py 423${PYSITELIB}/pandas/core/computation/pytables.py
266${PYSITELIB}/pandas/core/computation/pytables.pyc 424${PYSITELIB}/pandas/core/computation/pytables.pyc
267${PYSITELIB}/pandas/core/computation/pytables.pyo 425${PYSITELIB}/pandas/core/computation/pytables.pyo
268${PYSITELIB}/pandas/core/computation/scope.py 426${PYSITELIB}/pandas/core/computation/scope.py
269${PYSITELIB}/pandas/core/computation/scope.pyc 427${PYSITELIB}/pandas/core/computation/scope.pyc
270${PYSITELIB}/pandas/core/computation/scope.pyo 428${PYSITELIB}/pandas/core/computation/scope.pyo
271${PYSITELIB}/pandas/core/config_init.py 429${PYSITELIB}/pandas/core/config_init.py
272${PYSITELIB}/pandas/core/config_init.pyc 430${PYSITELIB}/pandas/core/config_init.pyc
273${PYSITELIB}/pandas/core/config_init.pyo 431${PYSITELIB}/pandas/core/config_init.pyo
274${PYSITELIB}/pandas/core/construction.py 432${PYSITELIB}/pandas/core/construction.py
275${PYSITELIB}/pandas/core/construction.pyc 433${PYSITELIB}/pandas/core/construction.pyc
276${PYSITELIB}/pandas/core/construction.pyo 434${PYSITELIB}/pandas/core/construction.pyo
 435${PYSITELIB}/pandas/core/describe.py
 436${PYSITELIB}/pandas/core/describe.pyc
 437${PYSITELIB}/pandas/core/describe.pyo
277${PYSITELIB}/pandas/core/dtypes/__init__.py 438${PYSITELIB}/pandas/core/dtypes/__init__.py
278${PYSITELIB}/pandas/core/dtypes/__init__.pyc 439${PYSITELIB}/pandas/core/dtypes/__init__.pyc
279${PYSITELIB}/pandas/core/dtypes/__init__.pyo 440${PYSITELIB}/pandas/core/dtypes/__init__.pyo
280${PYSITELIB}/pandas/core/dtypes/api.py 441${PYSITELIB}/pandas/core/dtypes/api.py
281${PYSITELIB}/pandas/core/dtypes/api.pyc 442${PYSITELIB}/pandas/core/dtypes/api.pyc
282${PYSITELIB}/pandas/core/dtypes/api.pyo 443${PYSITELIB}/pandas/core/dtypes/api.pyo
283${PYSITELIB}/pandas/core/dtypes/base.py 444${PYSITELIB}/pandas/core/dtypes/base.py
284${PYSITELIB}/pandas/core/dtypes/base.pyc 445${PYSITELIB}/pandas/core/dtypes/base.pyc
285${PYSITELIB}/pandas/core/dtypes/base.pyo 446${PYSITELIB}/pandas/core/dtypes/base.pyo
286${PYSITELIB}/pandas/core/dtypes/cast.py 447${PYSITELIB}/pandas/core/dtypes/cast.py
287${PYSITELIB}/pandas/core/dtypes/cast.pyc 448${PYSITELIB}/pandas/core/dtypes/cast.pyc
288${PYSITELIB}/pandas/core/dtypes/cast.pyo 449${PYSITELIB}/pandas/core/dtypes/cast.pyo
289${PYSITELIB}/pandas/core/dtypes/common.py 450${PYSITELIB}/pandas/core/dtypes/common.py
@@ -384,26 +545,35 @@ ${PYSITELIB}/pandas/core/indexes/period. @@ -384,26 +545,35 @@ ${PYSITELIB}/pandas/core/indexes/period.
384${PYSITELIB}/pandas/core/indexes/period.pyo 545${PYSITELIB}/pandas/core/indexes/period.pyo
385${PYSITELIB}/pandas/core/indexes/range.py 546${PYSITELIB}/pandas/core/indexes/range.py
386${PYSITELIB}/pandas/core/indexes/range.pyc 547${PYSITELIB}/pandas/core/indexes/range.pyc
387${PYSITELIB}/pandas/core/indexes/range.pyo 548${PYSITELIB}/pandas/core/indexes/range.pyo
388${PYSITELIB}/pandas/core/indexes/timedeltas.py 549${PYSITELIB}/pandas/core/indexes/timedeltas.py
389${PYSITELIB}/pandas/core/indexes/timedeltas.pyc 550${PYSITELIB}/pandas/core/indexes/timedeltas.pyc
390${PYSITELIB}/pandas/core/indexes/timedeltas.pyo 551${PYSITELIB}/pandas/core/indexes/timedeltas.pyo
391${PYSITELIB}/pandas/core/indexing.py 552${PYSITELIB}/pandas/core/indexing.py
392${PYSITELIB}/pandas/core/indexing.pyc 553${PYSITELIB}/pandas/core/indexing.pyc
393${PYSITELIB}/pandas/core/indexing.pyo 554${PYSITELIB}/pandas/core/indexing.pyo
394${PYSITELIB}/pandas/core/internals/__init__.py 555${PYSITELIB}/pandas/core/internals/__init__.py
395${PYSITELIB}/pandas/core/internals/__init__.pyc 556${PYSITELIB}/pandas/core/internals/__init__.pyc
396${PYSITELIB}/pandas/core/internals/__init__.pyo 557${PYSITELIB}/pandas/core/internals/__init__.pyo
 558${PYSITELIB}/pandas/core/internals/api.py
 559${PYSITELIB}/pandas/core/internals/api.pyc
 560${PYSITELIB}/pandas/core/internals/api.pyo
 561${PYSITELIB}/pandas/core/internals/array_manager.py
 562${PYSITELIB}/pandas/core/internals/array_manager.pyc
 563${PYSITELIB}/pandas/core/internals/array_manager.pyo
 564${PYSITELIB}/pandas/core/internals/base.py
 565${PYSITELIB}/pandas/core/internals/base.pyc
 566${PYSITELIB}/pandas/core/internals/base.pyo
397${PYSITELIB}/pandas/core/internals/blocks.py 567${PYSITELIB}/pandas/core/internals/blocks.py
398${PYSITELIB}/pandas/core/internals/blocks.pyc 568${PYSITELIB}/pandas/core/internals/blocks.pyc
399${PYSITELIB}/pandas/core/internals/blocks.pyo 569${PYSITELIB}/pandas/core/internals/blocks.pyo
400${PYSITELIB}/pandas/core/internals/concat.py 570${PYSITELIB}/pandas/core/internals/concat.py
401${PYSITELIB}/pandas/core/internals/concat.pyc 571${PYSITELIB}/pandas/core/internals/concat.pyc
402${PYSITELIB}/pandas/core/internals/concat.pyo 572${PYSITELIB}/pandas/core/internals/concat.pyo
403${PYSITELIB}/pandas/core/internals/construction.py 573${PYSITELIB}/pandas/core/internals/construction.py
404${PYSITELIB}/pandas/core/internals/construction.pyc 574${PYSITELIB}/pandas/core/internals/construction.pyc
405${PYSITELIB}/pandas/core/internals/construction.pyo 575${PYSITELIB}/pandas/core/internals/construction.pyo
406${PYSITELIB}/pandas/core/internals/managers.py 576${PYSITELIB}/pandas/core/internals/managers.py
407${PYSITELIB}/pandas/core/internals/managers.pyc 577${PYSITELIB}/pandas/core/internals/managers.pyc
408${PYSITELIB}/pandas/core/internals/managers.pyo 578${PYSITELIB}/pandas/core/internals/managers.pyo
409${PYSITELIB}/pandas/core/internals/ops.py 579${PYSITELIB}/pandas/core/internals/ops.py
@@ -432,29 +602,26 @@ ${PYSITELIB}/pandas/core/ops/docstrings. @@ -432,29 +602,26 @@ ${PYSITELIB}/pandas/core/ops/docstrings.
432${PYSITELIB}/pandas/core/ops/docstrings.pyo 602${PYSITELIB}/pandas/core/ops/docstrings.pyo
433${PYSITELIB}/pandas/core/ops/invalid.py 603${PYSITELIB}/pandas/core/ops/invalid.py
434${PYSITELIB}/pandas/core/ops/invalid.pyc 604${PYSITELIB}/pandas/core/ops/invalid.pyc
435${PYSITELIB}/pandas/core/ops/invalid.pyo 605${PYSITELIB}/pandas/core/ops/invalid.pyo
436${PYSITELIB}/pandas/core/ops/mask_ops.py 606${PYSITELIB}/pandas/core/ops/mask_ops.py
437${PYSITELIB}/pandas/core/ops/mask_ops.pyc 607${PYSITELIB}/pandas/core/ops/mask_ops.pyc
438${PYSITELIB}/pandas/core/ops/mask_ops.pyo 608${PYSITELIB}/pandas/core/ops/mask_ops.pyo
439${PYSITELIB}/pandas/core/ops/methods.py 609${PYSITELIB}/pandas/core/ops/methods.py
440${PYSITELIB}/pandas/core/ops/methods.pyc 610${PYSITELIB}/pandas/core/ops/methods.pyc
441${PYSITELIB}/pandas/core/ops/methods.pyo 611${PYSITELIB}/pandas/core/ops/methods.pyo
442${PYSITELIB}/pandas/core/ops/missing.py 612${PYSITELIB}/pandas/core/ops/missing.py
443${PYSITELIB}/pandas/core/ops/missing.pyc 613${PYSITELIB}/pandas/core/ops/missing.pyc
444${PYSITELIB}/pandas/core/ops/missing.pyo 614${PYSITELIB}/pandas/core/ops/missing.pyo
445${PYSITELIB}/pandas/core/ops/roperator.py 
446${PYSITELIB}/pandas/core/ops/roperator.pyc 
447${PYSITELIB}/pandas/core/ops/roperator.pyo 
448${PYSITELIB}/pandas/core/resample.py 615${PYSITELIB}/pandas/core/resample.py
449${PYSITELIB}/pandas/core/resample.pyc 616${PYSITELIB}/pandas/core/resample.pyc
450${PYSITELIB}/pandas/core/resample.pyo 617${PYSITELIB}/pandas/core/resample.pyo
451${PYSITELIB}/pandas/core/reshape/__init__.py 618${PYSITELIB}/pandas/core/reshape/__init__.py
452${PYSITELIB}/pandas/core/reshape/__init__.pyc 619${PYSITELIB}/pandas/core/reshape/__init__.pyc
453${PYSITELIB}/pandas/core/reshape/__init__.pyo 620${PYSITELIB}/pandas/core/reshape/__init__.pyo
454${PYSITELIB}/pandas/core/reshape/api.py 621${PYSITELIB}/pandas/core/reshape/api.py
455${PYSITELIB}/pandas/core/reshape/api.pyc 622${PYSITELIB}/pandas/core/reshape/api.pyc
456${PYSITELIB}/pandas/core/reshape/api.pyo 623${PYSITELIB}/pandas/core/reshape/api.pyo
457${PYSITELIB}/pandas/core/reshape/concat.py 624${PYSITELIB}/pandas/core/reshape/concat.py
458${PYSITELIB}/pandas/core/reshape/concat.pyc 625${PYSITELIB}/pandas/core/reshape/concat.pyc
459${PYSITELIB}/pandas/core/reshape/concat.pyo 626${PYSITELIB}/pandas/core/reshape/concat.pyo
460${PYSITELIB}/pandas/core/reshape/melt.py 627${PYSITELIB}/pandas/core/reshape/melt.py
@@ -465,26 +632,29 @@ ${PYSITELIB}/pandas/core/reshape/merge.p @@ -465,26 +632,29 @@ ${PYSITELIB}/pandas/core/reshape/merge.p
465${PYSITELIB}/pandas/core/reshape/merge.pyo 632${PYSITELIB}/pandas/core/reshape/merge.pyo
466${PYSITELIB}/pandas/core/reshape/pivot.py 633${PYSITELIB}/pandas/core/reshape/pivot.py
467${PYSITELIB}/pandas/core/reshape/pivot.pyc 634${PYSITELIB}/pandas/core/reshape/pivot.pyc
468${PYSITELIB}/pandas/core/reshape/pivot.pyo 635${PYSITELIB}/pandas/core/reshape/pivot.pyo
469${PYSITELIB}/pandas/core/reshape/reshape.py 636${PYSITELIB}/pandas/core/reshape/reshape.py
470${PYSITELIB}/pandas/core/reshape/reshape.pyc 637${PYSITELIB}/pandas/core/reshape/reshape.pyc
471${PYSITELIB}/pandas/core/reshape/reshape.pyo 638${PYSITELIB}/pandas/core/reshape/reshape.pyo
472${PYSITELIB}/pandas/core/reshape/tile.py 639${PYSITELIB}/pandas/core/reshape/tile.py
473${PYSITELIB}/pandas/core/reshape/tile.pyc 640${PYSITELIB}/pandas/core/reshape/tile.pyc
474${PYSITELIB}/pandas/core/reshape/tile.pyo 641${PYSITELIB}/pandas/core/reshape/tile.pyo
475${PYSITELIB}/pandas/core/reshape/util.py 642${PYSITELIB}/pandas/core/reshape/util.py
476${PYSITELIB}/pandas/core/reshape/util.pyc 643${PYSITELIB}/pandas/core/reshape/util.pyc
477${PYSITELIB}/pandas/core/reshape/util.pyo 644${PYSITELIB}/pandas/core/reshape/util.pyo
 645${PYSITELIB}/pandas/core/roperator.py
 646${PYSITELIB}/pandas/core/roperator.pyc
 647${PYSITELIB}/pandas/core/roperator.pyo
478${PYSITELIB}/pandas/core/series.py 648${PYSITELIB}/pandas/core/series.py
479${PYSITELIB}/pandas/core/series.pyc 649${PYSITELIB}/pandas/core/series.pyc
480${PYSITELIB}/pandas/core/series.pyo 650${PYSITELIB}/pandas/core/series.pyo
481${PYSITELIB}/pandas/core/shared_docs.py 651${PYSITELIB}/pandas/core/shared_docs.py
482${PYSITELIB}/pandas/core/shared_docs.pyc 652${PYSITELIB}/pandas/core/shared_docs.pyc
483${PYSITELIB}/pandas/core/shared_docs.pyo 653${PYSITELIB}/pandas/core/shared_docs.pyo
484${PYSITELIB}/pandas/core/sorting.py 654${PYSITELIB}/pandas/core/sorting.py
485${PYSITELIB}/pandas/core/sorting.pyc 655${PYSITELIB}/pandas/core/sorting.pyc
486${PYSITELIB}/pandas/core/sorting.pyo 656${PYSITELIB}/pandas/core/sorting.pyo
487${PYSITELIB}/pandas/core/sparse/__init__.py 657${PYSITELIB}/pandas/core/sparse/__init__.py
488${PYSITELIB}/pandas/core/sparse/__init__.pyc 658${PYSITELIB}/pandas/core/sparse/__init__.pyc
489${PYSITELIB}/pandas/core/sparse/__init__.pyo 659${PYSITELIB}/pandas/core/sparse/__init__.pyo
490${PYSITELIB}/pandas/core/sparse/api.py 660${PYSITELIB}/pandas/core/sparse/api.py
@@ -522,38 +692,44 @@ ${PYSITELIB}/pandas/core/util/__init__.p @@ -522,38 +692,44 @@ ${PYSITELIB}/pandas/core/util/__init__.p
522${PYSITELIB}/pandas/core/util/__init__.pyo 692${PYSITELIB}/pandas/core/util/__init__.pyo
523${PYSITELIB}/pandas/core/util/hashing.py 693${PYSITELIB}/pandas/core/util/hashing.py
524${PYSITELIB}/pandas/core/util/hashing.pyc 694${PYSITELIB}/pandas/core/util/hashing.pyc
525${PYSITELIB}/pandas/core/util/hashing.pyo 695${PYSITELIB}/pandas/core/util/hashing.pyo
526${PYSITELIB}/pandas/core/util/numba_.py 696${PYSITELIB}/pandas/core/util/numba_.py
527${PYSITELIB}/pandas/core/util/numba_.pyc 697${PYSITELIB}/pandas/core/util/numba_.pyc
528${PYSITELIB}/pandas/core/util/numba_.pyo 698${PYSITELIB}/pandas/core/util/numba_.pyo
529${PYSITELIB}/pandas/core/window/__init__.py 699${PYSITELIB}/pandas/core/window/__init__.py
530${PYSITELIB}/pandas/core/window/__init__.pyc 700${PYSITELIB}/pandas/core/window/__init__.pyc
531${PYSITELIB}/pandas/core/window/__init__.pyo 701${PYSITELIB}/pandas/core/window/__init__.pyo
532${PYSITELIB}/pandas/core/window/common.py 702${PYSITELIB}/pandas/core/window/common.py
533${PYSITELIB}/pandas/core/window/common.pyc 703${PYSITELIB}/pandas/core/window/common.pyc
534${PYSITELIB}/pandas/core/window/common.pyo 704${PYSITELIB}/pandas/core/window/common.pyo
 705${PYSITELIB}/pandas/core/window/doc.py
 706${PYSITELIB}/pandas/core/window/doc.pyc
 707${PYSITELIB}/pandas/core/window/doc.pyo
535${PYSITELIB}/pandas/core/window/ewm.py 708${PYSITELIB}/pandas/core/window/ewm.py
536${PYSITELIB}/pandas/core/window/ewm.pyc 709${PYSITELIB}/pandas/core/window/ewm.pyc
537${PYSITELIB}/pandas/core/window/ewm.pyo 710${PYSITELIB}/pandas/core/window/ewm.pyo
538${PYSITELIB}/pandas/core/window/expanding.py 711${PYSITELIB}/pandas/core/window/expanding.py
539${PYSITELIB}/pandas/core/window/expanding.pyc 712${PYSITELIB}/pandas/core/window/expanding.pyc
540${PYSITELIB}/pandas/core/window/expanding.pyo 713${PYSITELIB}/pandas/core/window/expanding.pyo
541${PYSITELIB}/pandas/core/window/indexers.py 714${PYSITELIB}/pandas/core/window/indexers.py
542${PYSITELIB}/pandas/core/window/indexers.pyc 715${PYSITELIB}/pandas/core/window/indexers.pyc
543${PYSITELIB}/pandas/core/window/indexers.pyo 716${PYSITELIB}/pandas/core/window/indexers.pyo
544${PYSITELIB}/pandas/core/window/numba_.py 717${PYSITELIB}/pandas/core/window/numba_.py
545${PYSITELIB}/pandas/core/window/numba_.pyc 718${PYSITELIB}/pandas/core/window/numba_.pyc
546${PYSITELIB}/pandas/core/window/numba_.pyo 719${PYSITELIB}/pandas/core/window/numba_.pyo
 720${PYSITELIB}/pandas/core/window/online.py
 721${PYSITELIB}/pandas/core/window/online.pyc
 722${PYSITELIB}/pandas/core/window/online.pyo
547${PYSITELIB}/pandas/core/window/rolling.py 723${PYSITELIB}/pandas/core/window/rolling.py
548${PYSITELIB}/pandas/core/window/rolling.pyc 724${PYSITELIB}/pandas/core/window/rolling.pyc
549${PYSITELIB}/pandas/core/window/rolling.pyo 725${PYSITELIB}/pandas/core/window/rolling.pyo
550${PYSITELIB}/pandas/errors/__init__.py 726${PYSITELIB}/pandas/errors/__init__.py
551${PYSITELIB}/pandas/errors/__init__.pyc 727${PYSITELIB}/pandas/errors/__init__.pyc
552${PYSITELIB}/pandas/errors/__init__.pyo 728${PYSITELIB}/pandas/errors/__init__.pyo
553${PYSITELIB}/pandas/io/__init__.py 729${PYSITELIB}/pandas/io/__init__.py
554${PYSITELIB}/pandas/io/__init__.pyc 730${PYSITELIB}/pandas/io/__init__.pyc
555${PYSITELIB}/pandas/io/__init__.pyo 731${PYSITELIB}/pandas/io/__init__.pyo
556${PYSITELIB}/pandas/io/api.py 732${PYSITELIB}/pandas/io/api.py
557${PYSITELIB}/pandas/io/api.pyc 733${PYSITELIB}/pandas/io/api.pyc
558${PYSITELIB}/pandas/io/api.pyo 734${PYSITELIB}/pandas/io/api.pyo
559${PYSITELIB}/pandas/io/clipboard/__init__.py 735${PYSITELIB}/pandas/io/clipboard/__init__.py
@@ -630,85 +806,110 @@ ${PYSITELIB}/pandas/io/formats/info.pyc @@ -630,85 +806,110 @@ ${PYSITELIB}/pandas/io/formats/info.pyc
630${PYSITELIB}/pandas/io/formats/info.pyo 806${PYSITELIB}/pandas/io/formats/info.pyo
631${PYSITELIB}/pandas/io/formats/latex.py 807${PYSITELIB}/pandas/io/formats/latex.py
632${PYSITELIB}/pandas/io/formats/latex.pyc 808${PYSITELIB}/pandas/io/formats/latex.pyc
633${PYSITELIB}/pandas/io/formats/latex.pyo 809${PYSITELIB}/pandas/io/formats/latex.pyo
634${PYSITELIB}/pandas/io/formats/printing.py 810${PYSITELIB}/pandas/io/formats/printing.py
635${PYSITELIB}/pandas/io/formats/printing.pyc 811${PYSITELIB}/pandas/io/formats/printing.pyc
636${PYSITELIB}/pandas/io/formats/printing.pyo 812${PYSITELIB}/pandas/io/formats/printing.pyo
637${PYSITELIB}/pandas/io/formats/string.py 813${PYSITELIB}/pandas/io/formats/string.py
638${PYSITELIB}/pandas/io/formats/string.pyc 814${PYSITELIB}/pandas/io/formats/string.pyc
639${PYSITELIB}/pandas/io/formats/string.pyo 815${PYSITELIB}/pandas/io/formats/string.pyo
640${PYSITELIB}/pandas/io/formats/style.py 816${PYSITELIB}/pandas/io/formats/style.py
641${PYSITELIB}/pandas/io/formats/style.pyc 817${PYSITELIB}/pandas/io/formats/style.pyc
642${PYSITELIB}/pandas/io/formats/style.pyo 818${PYSITELIB}/pandas/io/formats/style.pyo
 819${PYSITELIB}/pandas/io/formats/style_render.py
 820${PYSITELIB}/pandas/io/formats/style_render.pyc
 821${PYSITELIB}/pandas/io/formats/style_render.pyo
643${PYSITELIB}/pandas/io/formats/templates/html.tpl 822${PYSITELIB}/pandas/io/formats/templates/html.tpl
 823${PYSITELIB}/pandas/io/formats/templates/html_style.tpl
 824${PYSITELIB}/pandas/io/formats/templates/html_table.tpl
 825${PYSITELIB}/pandas/io/formats/templates/latex.tpl
 826${PYSITELIB}/pandas/io/formats/xml.py
 827${PYSITELIB}/pandas/io/formats/xml.pyc
 828${PYSITELIB}/pandas/io/formats/xml.pyo
644${PYSITELIB}/pandas/io/gbq.py 829${PYSITELIB}/pandas/io/gbq.py
645${PYSITELIB}/pandas/io/gbq.pyc 830${PYSITELIB}/pandas/io/gbq.pyc
646${PYSITELIB}/pandas/io/gbq.pyo 831${PYSITELIB}/pandas/io/gbq.pyo
647${PYSITELIB}/pandas/io/html.py 832${PYSITELIB}/pandas/io/html.py
648${PYSITELIB}/pandas/io/html.pyc 833${PYSITELIB}/pandas/io/html.pyc
649${PYSITELIB}/pandas/io/html.pyo 834${PYSITELIB}/pandas/io/html.pyo
650${PYSITELIB}/pandas/io/json/__init__.py 835${PYSITELIB}/pandas/io/json/__init__.py
651${PYSITELIB}/pandas/io/json/__init__.pyc 836${PYSITELIB}/pandas/io/json/__init__.pyc
652${PYSITELIB}/pandas/io/json/__init__.pyo 837${PYSITELIB}/pandas/io/json/__init__.pyo
653${PYSITELIB}/pandas/io/json/_json.py 838${PYSITELIB}/pandas/io/json/_json.py
654${PYSITELIB}/pandas/io/json/_json.pyc 839${PYSITELIB}/pandas/io/json/_json.pyc
655${PYSITELIB}/pandas/io/json/_json.pyo 840${PYSITELIB}/pandas/io/json/_json.pyo
656${PYSITELIB}/pandas/io/json/_normalize.py 841${PYSITELIB}/pandas/io/json/_normalize.py
657${PYSITELIB}/pandas/io/json/_normalize.pyc 842${PYSITELIB}/pandas/io/json/_normalize.pyc
658${PYSITELIB}/pandas/io/json/_normalize.pyo 843${PYSITELIB}/pandas/io/json/_normalize.pyo
659${PYSITELIB}/pandas/io/json/_table_schema.py 844${PYSITELIB}/pandas/io/json/_table_schema.py
660${PYSITELIB}/pandas/io/json/_table_schema.pyc 845${PYSITELIB}/pandas/io/json/_table_schema.pyc
661${PYSITELIB}/pandas/io/json/_table_schema.pyo 846${PYSITELIB}/pandas/io/json/_table_schema.pyo
662${PYSITELIB}/pandas/io/orc.py 847${PYSITELIB}/pandas/io/orc.py
663${PYSITELIB}/pandas/io/orc.pyc 848${PYSITELIB}/pandas/io/orc.pyc
664${PYSITELIB}/pandas/io/orc.pyo 849${PYSITELIB}/pandas/io/orc.pyo
665${PYSITELIB}/pandas/io/parquet.py 850${PYSITELIB}/pandas/io/parquet.py
666${PYSITELIB}/pandas/io/parquet.pyc 851${PYSITELIB}/pandas/io/parquet.pyc
667${PYSITELIB}/pandas/io/parquet.pyo 852${PYSITELIB}/pandas/io/parquet.pyo
668${PYSITELIB}/pandas/io/parsers.py 853${PYSITELIB}/pandas/io/parsers/__init__.py
669${PYSITELIB}/pandas/io/parsers.pyc 854${PYSITELIB}/pandas/io/parsers/__init__.pyc
670${PYSITELIB}/pandas/io/parsers.pyo 855${PYSITELIB}/pandas/io/parsers/__init__.pyo
 856${PYSITELIB}/pandas/io/parsers/base_parser.py
 857${PYSITELIB}/pandas/io/parsers/base_parser.pyc
 858${PYSITELIB}/pandas/io/parsers/base_parser.pyo
 859${PYSITELIB}/pandas/io/parsers/c_parser_wrapper.py
 860${PYSITELIB}/pandas/io/parsers/c_parser_wrapper.pyc
 861${PYSITELIB}/pandas/io/parsers/c_parser_wrapper.pyo
 862${PYSITELIB}/pandas/io/parsers/python_parser.py
 863${PYSITELIB}/pandas/io/parsers/python_parser.pyc
 864${PYSITELIB}/pandas/io/parsers/python_parser.pyo
 865${PYSITELIB}/pandas/io/parsers/readers.py
 866${PYSITELIB}/pandas/io/parsers/readers.pyc
 867${PYSITELIB}/pandas/io/parsers/readers.pyo
671${PYSITELIB}/pandas/io/pickle.py 868${PYSITELIB}/pandas/io/pickle.py
672${PYSITELIB}/pandas/io/pickle.pyc 869${PYSITELIB}/pandas/io/pickle.pyc
673${PYSITELIB}/pandas/io/pickle.pyo 870${PYSITELIB}/pandas/io/pickle.pyo
674${PYSITELIB}/pandas/io/pytables.py 871${PYSITELIB}/pandas/io/pytables.py
675${PYSITELIB}/pandas/io/pytables.pyc 872${PYSITELIB}/pandas/io/pytables.pyc
676${PYSITELIB}/pandas/io/pytables.pyo 873${PYSITELIB}/pandas/io/pytables.pyo
677${PYSITELIB}/pandas/io/sas/__init__.py 874${PYSITELIB}/pandas/io/sas/__init__.py
678${PYSITELIB}/pandas/io/sas/__init__.pyc 875${PYSITELIB}/pandas/io/sas/__init__.pyc
679${PYSITELIB}/pandas/io/sas/__init__.pyo 876${PYSITELIB}/pandas/io/sas/__init__.pyo
680${PYSITELIB}/pandas/io/sas/_sas.so 877${PYSITELIB}/pandas/io/sas/_sas.so
 878${PYSITELIB}/pandas/io/sas/sas.pyx
681${PYSITELIB}/pandas/io/sas/sas7bdat.py 879${PYSITELIB}/pandas/io/sas/sas7bdat.py
682${PYSITELIB}/pandas/io/sas/sas7bdat.pyc 880${PYSITELIB}/pandas/io/sas/sas7bdat.pyc
683${PYSITELIB}/pandas/io/sas/sas7bdat.pyo 881${PYSITELIB}/pandas/io/sas/sas7bdat.pyo
684${PYSITELIB}/pandas/io/sas/sas_constants.py 882${PYSITELIB}/pandas/io/sas/sas_constants.py
685${PYSITELIB}/pandas/io/sas/sas_constants.pyc 883${PYSITELIB}/pandas/io/sas/sas_constants.pyc
686${PYSITELIB}/pandas/io/sas/sas_constants.pyo 884${PYSITELIB}/pandas/io/sas/sas_constants.pyo
687${PYSITELIB}/pandas/io/sas/sas_xport.py 885${PYSITELIB}/pandas/io/sas/sas_xport.py
688${PYSITELIB}/pandas/io/sas/sas_xport.pyc 886${PYSITELIB}/pandas/io/sas/sas_xport.pyc
689${PYSITELIB}/pandas/io/sas/sas_xport.pyo 887${PYSITELIB}/pandas/io/sas/sas_xport.pyo
690${PYSITELIB}/pandas/io/sas/sasreader.py 888${PYSITELIB}/pandas/io/sas/sasreader.py
691${PYSITELIB}/pandas/io/sas/sasreader.pyc 889${PYSITELIB}/pandas/io/sas/sasreader.pyc
692${PYSITELIB}/pandas/io/sas/sasreader.pyo 890${PYSITELIB}/pandas/io/sas/sasreader.pyo
693${PYSITELIB}/pandas/io/spss.py 891${PYSITELIB}/pandas/io/spss.py
694${PYSITELIB}/pandas/io/spss.pyc 892${PYSITELIB}/pandas/io/spss.pyc
695${PYSITELIB}/pandas/io/spss.pyo 893${PYSITELIB}/pandas/io/spss.pyo
696${PYSITELIB}/pandas/io/sql.py 894${PYSITELIB}/pandas/io/sql.py
697${PYSITELIB}/pandas/io/sql.pyc 895${PYSITELIB}/pandas/io/sql.pyc
698${PYSITELIB}/pandas/io/sql.pyo 896${PYSITELIB}/pandas/io/sql.pyo
699${PYSITELIB}/pandas/io/stata.py 897${PYSITELIB}/pandas/io/stata.py
700${PYSITELIB}/pandas/io/stata.pyc 898${PYSITELIB}/pandas/io/stata.pyc
701${PYSITELIB}/pandas/io/stata.pyo 899${PYSITELIB}/pandas/io/stata.pyo
 900${PYSITELIB}/pandas/io/xml.py
 901${PYSITELIB}/pandas/io/xml.pyc
 902${PYSITELIB}/pandas/io/xml.pyo
702${PYSITELIB}/pandas/plotting/__init__.py 903${PYSITELIB}/pandas/plotting/__init__.py
703${PYSITELIB}/pandas/plotting/__init__.pyc 904${PYSITELIB}/pandas/plotting/__init__.pyc
704${PYSITELIB}/pandas/plotting/__init__.pyo 905${PYSITELIB}/pandas/plotting/__init__.pyo
705${PYSITELIB}/pandas/plotting/_core.py 906${PYSITELIB}/pandas/plotting/_core.py
706${PYSITELIB}/pandas/plotting/_core.pyc 907${PYSITELIB}/pandas/plotting/_core.pyc
707${PYSITELIB}/pandas/plotting/_core.pyo 908${PYSITELIB}/pandas/plotting/_core.pyo
708${PYSITELIB}/pandas/plotting/_matplotlib/__init__.py 909${PYSITELIB}/pandas/plotting/_matplotlib/__init__.py
709${PYSITELIB}/pandas/plotting/_matplotlib/__init__.pyc 910${PYSITELIB}/pandas/plotting/_matplotlib/__init__.pyc
710${PYSITELIB}/pandas/plotting/_matplotlib/__init__.pyo 911${PYSITELIB}/pandas/plotting/_matplotlib/__init__.pyo
711${PYSITELIB}/pandas/plotting/_matplotlib/boxplot.py 912${PYSITELIB}/pandas/plotting/_matplotlib/boxplot.py
712${PYSITELIB}/pandas/plotting/_matplotlib/boxplot.pyc 913${PYSITELIB}/pandas/plotting/_matplotlib/boxplot.pyc
713${PYSITELIB}/pandas/plotting/_matplotlib/boxplot.pyo 914${PYSITELIB}/pandas/plotting/_matplotlib/boxplot.pyo
714${PYSITELIB}/pandas/plotting/_matplotlib/compat.py 915${PYSITELIB}/pandas/plotting/_matplotlib/compat.py
@@ -743,26 +944,56 @@ ${PYSITELIB}/pandas/testing.pyc @@ -743,26 +944,56 @@ ${PYSITELIB}/pandas/testing.pyc
743${PYSITELIB}/pandas/testing.pyo 944${PYSITELIB}/pandas/testing.pyo
744${PYSITELIB}/pandas/tests/__init__.py 945${PYSITELIB}/pandas/tests/__init__.py
745${PYSITELIB}/pandas/tests/__init__.pyc 946${PYSITELIB}/pandas/tests/__init__.pyc
746${PYSITELIB}/pandas/tests/__init__.pyo 947${PYSITELIB}/pandas/tests/__init__.pyo
747${PYSITELIB}/pandas/tests/api/__init__.py 948${PYSITELIB}/pandas/tests/api/__init__.py
748${PYSITELIB}/pandas/tests/api/__init__.pyc 949${PYSITELIB}/pandas/tests/api/__init__.pyc
749${PYSITELIB}/pandas/tests/api/__init__.pyo 950${PYSITELIB}/pandas/tests/api/__init__.pyo
750${PYSITELIB}/pandas/tests/api/test_api.py 951${PYSITELIB}/pandas/tests/api/test_api.py
751${PYSITELIB}/pandas/tests/api/test_api.pyc 952${PYSITELIB}/pandas/tests/api/test_api.pyc
752${PYSITELIB}/pandas/tests/api/test_api.pyo 953${PYSITELIB}/pandas/tests/api/test_api.pyo
753${PYSITELIB}/pandas/tests/api/test_types.py 954${PYSITELIB}/pandas/tests/api/test_types.py
754${PYSITELIB}/pandas/tests/api/test_types.pyc 955${PYSITELIB}/pandas/tests/api/test_types.pyc
755${PYSITELIB}/pandas/tests/api/test_types.pyo 956${PYSITELIB}/pandas/tests/api/test_types.pyo
 957${PYSITELIB}/pandas/tests/apply/__init__.py
 958${PYSITELIB}/pandas/tests/apply/__init__.pyc
 959${PYSITELIB}/pandas/tests/apply/__init__.pyo
 960${PYSITELIB}/pandas/tests/apply/common.py
 961${PYSITELIB}/pandas/tests/apply/common.pyc
 962${PYSITELIB}/pandas/tests/apply/common.pyo
 963${PYSITELIB}/pandas/tests/apply/conftest.py
 964${PYSITELIB}/pandas/tests/apply/conftest.pyc
 965${PYSITELIB}/pandas/tests/apply/conftest.pyo
 966${PYSITELIB}/pandas/tests/apply/test_frame_apply.py
 967${PYSITELIB}/pandas/tests/apply/test_frame_apply.pyc
 968${PYSITELIB}/pandas/tests/apply/test_frame_apply.pyo
 969${PYSITELIB}/pandas/tests/apply/test_frame_apply_relabeling.py
 970${PYSITELIB}/pandas/tests/apply/test_frame_apply_relabeling.pyc
 971${PYSITELIB}/pandas/tests/apply/test_frame_apply_relabeling.pyo
 972${PYSITELIB}/pandas/tests/apply/test_frame_transform.py
 973${PYSITELIB}/pandas/tests/apply/test_frame_transform.pyc
 974${PYSITELIB}/pandas/tests/apply/test_frame_transform.pyo
 975${PYSITELIB}/pandas/tests/apply/test_invalid_arg.py
 976${PYSITELIB}/pandas/tests/apply/test_invalid_arg.pyc
 977${PYSITELIB}/pandas/tests/apply/test_invalid_arg.pyo
 978${PYSITELIB}/pandas/tests/apply/test_series_apply.py
 979${PYSITELIB}/pandas/tests/apply/test_series_apply.pyc
 980${PYSITELIB}/pandas/tests/apply/test_series_apply.pyo
 981${PYSITELIB}/pandas/tests/apply/test_series_apply_relabeling.py
 982${PYSITELIB}/pandas/tests/apply/test_series_apply_relabeling.pyc
 983${PYSITELIB}/pandas/tests/apply/test_series_apply_relabeling.pyo
 984${PYSITELIB}/pandas/tests/apply/test_series_transform.py
 985${PYSITELIB}/pandas/tests/apply/test_series_transform.pyc
 986${PYSITELIB}/pandas/tests/apply/test_series_transform.pyo
756${PYSITELIB}/pandas/tests/arithmetic/__init__.py 987${PYSITELIB}/pandas/tests/arithmetic/__init__.py
757${PYSITELIB}/pandas/tests/arithmetic/__init__.pyc 988${PYSITELIB}/pandas/tests/arithmetic/__init__.pyc
758${PYSITELIB}/pandas/tests/arithmetic/__init__.pyo 989${PYSITELIB}/pandas/tests/arithmetic/__init__.pyo
759${PYSITELIB}/pandas/tests/arithmetic/common.py 990${PYSITELIB}/pandas/tests/arithmetic/common.py
760${PYSITELIB}/pandas/tests/arithmetic/common.pyc 991${PYSITELIB}/pandas/tests/arithmetic/common.pyc
761${PYSITELIB}/pandas/tests/arithmetic/common.pyo 992${PYSITELIB}/pandas/tests/arithmetic/common.pyo
762${PYSITELIB}/pandas/tests/arithmetic/conftest.py 993${PYSITELIB}/pandas/tests/arithmetic/conftest.py
763${PYSITELIB}/pandas/tests/arithmetic/conftest.pyc 994${PYSITELIB}/pandas/tests/arithmetic/conftest.pyc
764${PYSITELIB}/pandas/tests/arithmetic/conftest.pyo 995${PYSITELIB}/pandas/tests/arithmetic/conftest.pyo
765${PYSITELIB}/pandas/tests/arithmetic/test_array_ops.py 996${PYSITELIB}/pandas/tests/arithmetic/test_array_ops.py
766${PYSITELIB}/pandas/tests/arithmetic/test_array_ops.pyc 997${PYSITELIB}/pandas/tests/arithmetic/test_array_ops.pyc
767${PYSITELIB}/pandas/tests/arithmetic/test_array_ops.pyo 998${PYSITELIB}/pandas/tests/arithmetic/test_array_ops.pyo
768${PYSITELIB}/pandas/tests/arithmetic/test_categorical.py 999${PYSITELIB}/pandas/tests/arithmetic/test_categorical.py
@@ -863,26 +1094,35 @@ ${PYSITELIB}/pandas/tests/arrays/categor @@ -863,26 +1094,35 @@ ${PYSITELIB}/pandas/tests/arrays/categor
863${PYSITELIB}/pandas/tests/arrays/categorical/test_repr.pyo 1094${PYSITELIB}/pandas/tests/arrays/categorical/test_repr.pyo
864${PYSITELIB}/pandas/tests/arrays/categorical/test_sorting.py 1095${PYSITELIB}/pandas/tests/arrays/categorical/test_sorting.py
865${PYSITELIB}/pandas/tests/arrays/categorical/test_sorting.pyc 1096${PYSITELIB}/pandas/tests/arrays/categorical/test_sorting.pyc
866${PYSITELIB}/pandas/tests/arrays/categorical/test_sorting.pyo 1097${PYSITELIB}/pandas/tests/arrays/categorical/test_sorting.pyo
867${PYSITELIB}/pandas/tests/arrays/categorical/test_subclass.py 1098${PYSITELIB}/pandas/tests/arrays/categorical/test_subclass.py
868${PYSITELIB}/pandas/tests/arrays/categorical/test_subclass.pyc 1099${PYSITELIB}/pandas/tests/arrays/categorical/test_subclass.pyc
869${PYSITELIB}/pandas/tests/arrays/categorical/test_subclass.pyo 1100${PYSITELIB}/pandas/tests/arrays/categorical/test_subclass.pyo
870${PYSITELIB}/pandas/tests/arrays/categorical/test_take.py 1101${PYSITELIB}/pandas/tests/arrays/categorical/test_take.py
871${PYSITELIB}/pandas/tests/arrays/categorical/test_take.pyc 1102${PYSITELIB}/pandas/tests/arrays/categorical/test_take.pyc
872${PYSITELIB}/pandas/tests/arrays/categorical/test_take.pyo 1103${PYSITELIB}/pandas/tests/arrays/categorical/test_take.pyo
873${PYSITELIB}/pandas/tests/arrays/categorical/test_warnings.py 1104${PYSITELIB}/pandas/tests/arrays/categorical/test_warnings.py
874${PYSITELIB}/pandas/tests/arrays/categorical/test_warnings.pyc 1105${PYSITELIB}/pandas/tests/arrays/categorical/test_warnings.pyc
875${PYSITELIB}/pandas/tests/arrays/categorical/test_warnings.pyo 1106${PYSITELIB}/pandas/tests/arrays/categorical/test_warnings.pyo
 1107${PYSITELIB}/pandas/tests/arrays/datetimes/__init__.py
 1108${PYSITELIB}/pandas/tests/arrays/datetimes/__init__.pyc
 1109${PYSITELIB}/pandas/tests/arrays/datetimes/__init__.pyo
 1110${PYSITELIB}/pandas/tests/arrays/datetimes/test_constructors.py
 1111${PYSITELIB}/pandas/tests/arrays/datetimes/test_constructors.pyc
 1112${PYSITELIB}/pandas/tests/arrays/datetimes/test_constructors.pyo
 1113${PYSITELIB}/pandas/tests/arrays/datetimes/test_reductions.py
 1114${PYSITELIB}/pandas/tests/arrays/datetimes/test_reductions.pyc
 1115${PYSITELIB}/pandas/tests/arrays/datetimes/test_reductions.pyo
876${PYSITELIB}/pandas/tests/arrays/floating/__init__.py 1116${PYSITELIB}/pandas/tests/arrays/floating/__init__.py
877${PYSITELIB}/pandas/tests/arrays/floating/__init__.pyc 1117${PYSITELIB}/pandas/tests/arrays/floating/__init__.pyc
878${PYSITELIB}/pandas/tests/arrays/floating/__init__.pyo 1118${PYSITELIB}/pandas/tests/arrays/floating/__init__.pyo
879${PYSITELIB}/pandas/tests/arrays/floating/conftest.py 1119${PYSITELIB}/pandas/tests/arrays/floating/conftest.py
880${PYSITELIB}/pandas/tests/arrays/floating/conftest.pyc 1120${PYSITELIB}/pandas/tests/arrays/floating/conftest.pyc
881${PYSITELIB}/pandas/tests/arrays/floating/conftest.pyo 1121${PYSITELIB}/pandas/tests/arrays/floating/conftest.pyo
882${PYSITELIB}/pandas/tests/arrays/floating/test_arithmetic.py 1122${PYSITELIB}/pandas/tests/arrays/floating/test_arithmetic.py
883${PYSITELIB}/pandas/tests/arrays/floating/test_arithmetic.pyc 1123${PYSITELIB}/pandas/tests/arrays/floating/test_arithmetic.pyc
884${PYSITELIB}/pandas/tests/arrays/floating/test_arithmetic.pyo 1124${PYSITELIB}/pandas/tests/arrays/floating/test_arithmetic.pyo
885${PYSITELIB}/pandas/tests/arrays/floating/test_astype.py 1125${PYSITELIB}/pandas/tests/arrays/floating/test_astype.py
886${PYSITELIB}/pandas/tests/arrays/floating/test_astype.pyc 1126${PYSITELIB}/pandas/tests/arrays/floating/test_astype.pyc
887${PYSITELIB}/pandas/tests/arrays/floating/test_astype.pyo 1127${PYSITELIB}/pandas/tests/arrays/floating/test_astype.pyo
888${PYSITELIB}/pandas/tests/arrays/floating/test_comparison.py 1128${PYSITELIB}/pandas/tests/arrays/floating/test_comparison.py
@@ -944,26 +1184,44 @@ ${PYSITELIB}/pandas/tests/arrays/interva @@ -944,26 +1184,44 @@ ${PYSITELIB}/pandas/tests/arrays/interva
944${PYSITELIB}/pandas/tests/arrays/interval/test_interval.pyo 1184${PYSITELIB}/pandas/tests/arrays/interval/test_interval.pyo
945${PYSITELIB}/pandas/tests/arrays/interval/test_ops.py 1185${PYSITELIB}/pandas/tests/arrays/interval/test_ops.py
946${PYSITELIB}/pandas/tests/arrays/interval/test_ops.pyc 1186${PYSITELIB}/pandas/tests/arrays/interval/test_ops.pyc
947${PYSITELIB}/pandas/tests/arrays/interval/test_ops.pyo 1187${PYSITELIB}/pandas/tests/arrays/interval/test_ops.pyo
948${PYSITELIB}/pandas/tests/arrays/masked/__init__.py 1188${PYSITELIB}/pandas/tests/arrays/masked/__init__.py
949${PYSITELIB}/pandas/tests/arrays/masked/__init__.pyc 1189${PYSITELIB}/pandas/tests/arrays/masked/__init__.pyc
950${PYSITELIB}/pandas/tests/arrays/masked/__init__.pyo 1190${PYSITELIB}/pandas/tests/arrays/masked/__init__.pyo
951${PYSITELIB}/pandas/tests/arrays/masked/test_arithmetic.py 1191${PYSITELIB}/pandas/tests/arrays/masked/test_arithmetic.py
952${PYSITELIB}/pandas/tests/arrays/masked/test_arithmetic.pyc 1192${PYSITELIB}/pandas/tests/arrays/masked/test_arithmetic.pyc
953${PYSITELIB}/pandas/tests/arrays/masked/test_arithmetic.pyo 1193${PYSITELIB}/pandas/tests/arrays/masked/test_arithmetic.pyo
954${PYSITELIB}/pandas/tests/arrays/masked/test_arrow_compat.py 1194${PYSITELIB}/pandas/tests/arrays/masked/test_arrow_compat.py
955${PYSITELIB}/pandas/tests/arrays/masked/test_arrow_compat.pyc 1195${PYSITELIB}/pandas/tests/arrays/masked/test_arrow_compat.pyc
956${PYSITELIB}/pandas/tests/arrays/masked/test_arrow_compat.pyo 1196${PYSITELIB}/pandas/tests/arrays/masked/test_arrow_compat.pyo
 1197${PYSITELIB}/pandas/tests/arrays/masked/test_function.py
 1198${PYSITELIB}/pandas/tests/arrays/masked/test_function.pyc
 1199${PYSITELIB}/pandas/tests/arrays/masked/test_function.pyo
 1200${PYSITELIB}/pandas/tests/arrays/period/__init__.py
 1201${PYSITELIB}/pandas/tests/arrays/period/__init__.pyc
 1202${PYSITELIB}/pandas/tests/arrays/period/__init__.pyo
 1203${PYSITELIB}/pandas/tests/arrays/period/test_arrow_compat.py
 1204${PYSITELIB}/pandas/tests/arrays/period/test_arrow_compat.pyc
 1205${PYSITELIB}/pandas/tests/arrays/period/test_arrow_compat.pyo
 1206${PYSITELIB}/pandas/tests/arrays/period/test_astype.py
 1207${PYSITELIB}/pandas/tests/arrays/period/test_astype.pyc
 1208${PYSITELIB}/pandas/tests/arrays/period/test_astype.pyo
 1209${PYSITELIB}/pandas/tests/arrays/period/test_constructors.py
 1210${PYSITELIB}/pandas/tests/arrays/period/test_constructors.pyc
 1211${PYSITELIB}/pandas/tests/arrays/period/test_constructors.pyo
 1212${PYSITELIB}/pandas/tests/arrays/period/test_reductions.py
 1213${PYSITELIB}/pandas/tests/arrays/period/test_reductions.pyc
 1214${PYSITELIB}/pandas/tests/arrays/period/test_reductions.pyo
957${PYSITELIB}/pandas/tests/arrays/sparse/__init__.py 1215${PYSITELIB}/pandas/tests/arrays/sparse/__init__.py
958${PYSITELIB}/pandas/tests/arrays/sparse/__init__.pyc 1216${PYSITELIB}/pandas/tests/arrays/sparse/__init__.pyc
959${PYSITELIB}/pandas/tests/arrays/sparse/__init__.pyo 1217${PYSITELIB}/pandas/tests/arrays/sparse/__init__.pyo
960${PYSITELIB}/pandas/tests/arrays/sparse/test_accessor.py 1218${PYSITELIB}/pandas/tests/arrays/sparse/test_accessor.py
961${PYSITELIB}/pandas/tests/arrays/sparse/test_accessor.pyc 1219${PYSITELIB}/pandas/tests/arrays/sparse/test_accessor.pyc
962${PYSITELIB}/pandas/tests/arrays/sparse/test_accessor.pyo 1220${PYSITELIB}/pandas/tests/arrays/sparse/test_accessor.pyo
963${PYSITELIB}/pandas/tests/arrays/sparse/test_arithmetics.py 1221${PYSITELIB}/pandas/tests/arrays/sparse/test_arithmetics.py
964${PYSITELIB}/pandas/tests/arrays/sparse/test_arithmetics.pyc 1222${PYSITELIB}/pandas/tests/arrays/sparse/test_arithmetics.pyc
965${PYSITELIB}/pandas/tests/arrays/sparse/test_arithmetics.pyo 1223${PYSITELIB}/pandas/tests/arrays/sparse/test_arithmetics.pyo
966${PYSITELIB}/pandas/tests/arrays/sparse/test_array.py 1224${PYSITELIB}/pandas/tests/arrays/sparse/test_array.py
967${PYSITELIB}/pandas/tests/arrays/sparse/test_array.pyc 1225${PYSITELIB}/pandas/tests/arrays/sparse/test_array.pyc
968${PYSITELIB}/pandas/tests/arrays/sparse/test_array.pyo 1226${PYSITELIB}/pandas/tests/arrays/sparse/test_array.pyo
969${PYSITELIB}/pandas/tests/arrays/sparse/test_combine_concat.py 1227${PYSITELIB}/pandas/tests/arrays/sparse/test_combine_concat.py
@@ -983,35 +1241,47 @@ ${PYSITELIB}/pandas/tests/arrays/string_ @@ -983,35 +1241,47 @@ ${PYSITELIB}/pandas/tests/arrays/string_
983${PYSITELIB}/pandas/tests/arrays/string_/test_string.pyo 1241${PYSITELIB}/pandas/tests/arrays/string_/test_string.pyo
984${PYSITELIB}/pandas/tests/arrays/string_/test_string_arrow.py 1242${PYSITELIB}/pandas/tests/arrays/string_/test_string_arrow.py
985${PYSITELIB}/pandas/tests/arrays/string_/test_string_arrow.pyc 1243${PYSITELIB}/pandas/tests/arrays/string_/test_string_arrow.pyc
986${PYSITELIB}/pandas/tests/arrays/string_/test_string_arrow.pyo 1244${PYSITELIB}/pandas/tests/arrays/string_/test_string_arrow.pyo
987${PYSITELIB}/pandas/tests/arrays/test_array.py 1245${PYSITELIB}/pandas/tests/arrays/test_array.py
988${PYSITELIB}/pandas/tests/arrays/test_array.pyc 1246${PYSITELIB}/pandas/tests/arrays/test_array.pyc
989${PYSITELIB}/pandas/tests/arrays/test_array.pyo 1247${PYSITELIB}/pandas/tests/arrays/test_array.pyo
990${PYSITELIB}/pandas/tests/arrays/test_datetimelike.py 1248${PYSITELIB}/pandas/tests/arrays/test_datetimelike.py
991${PYSITELIB}/pandas/tests/arrays/test_datetimelike.pyc 1249${PYSITELIB}/pandas/tests/arrays/test_datetimelike.pyc
992${PYSITELIB}/pandas/tests/arrays/test_datetimelike.pyo 1250${PYSITELIB}/pandas/tests/arrays/test_datetimelike.pyo
993${PYSITELIB}/pandas/tests/arrays/test_datetimes.py 1251${PYSITELIB}/pandas/tests/arrays/test_datetimes.py
994${PYSITELIB}/pandas/tests/arrays/test_datetimes.pyc 1252${PYSITELIB}/pandas/tests/arrays/test_datetimes.pyc
995${PYSITELIB}/pandas/tests/arrays/test_datetimes.pyo 1253${PYSITELIB}/pandas/tests/arrays/test_datetimes.pyo
 1254${PYSITELIB}/pandas/tests/arrays/test_ndarray_backed.py
 1255${PYSITELIB}/pandas/tests/arrays/test_ndarray_backed.pyc
 1256${PYSITELIB}/pandas/tests/arrays/test_ndarray_backed.pyo
996${PYSITELIB}/pandas/tests/arrays/test_numpy.py 1257${PYSITELIB}/pandas/tests/arrays/test_numpy.py
997${PYSITELIB}/pandas/tests/arrays/test_numpy.pyc 1258${PYSITELIB}/pandas/tests/arrays/test_numpy.pyc
998${PYSITELIB}/pandas/tests/arrays/test_numpy.pyo 1259${PYSITELIB}/pandas/tests/arrays/test_numpy.pyo
999${PYSITELIB}/pandas/tests/arrays/test_period.py 1260${PYSITELIB}/pandas/tests/arrays/test_period.py
1000${PYSITELIB}/pandas/tests/arrays/test_period.pyc 1261${PYSITELIB}/pandas/tests/arrays/test_period.pyc
1001${PYSITELIB}/pandas/tests/arrays/test_period.pyo 1262${PYSITELIB}/pandas/tests/arrays/test_period.pyo
1002${PYSITELIB}/pandas/tests/arrays/test_timedeltas.py 1263${PYSITELIB}/pandas/tests/arrays/test_timedeltas.py
1003${PYSITELIB}/pandas/tests/arrays/test_timedeltas.pyc 1264${PYSITELIB}/pandas/tests/arrays/test_timedeltas.pyc
1004${PYSITELIB}/pandas/tests/arrays/test_timedeltas.pyo 1265${PYSITELIB}/pandas/tests/arrays/test_timedeltas.pyo
 1266${PYSITELIB}/pandas/tests/arrays/timedeltas/__init__.py
 1267${PYSITELIB}/pandas/tests/arrays/timedeltas/__init__.pyc
 1268${PYSITELIB}/pandas/tests/arrays/timedeltas/__init__.pyo
 1269${PYSITELIB}/pandas/tests/arrays/timedeltas/test_constructors.py
 1270${PYSITELIB}/pandas/tests/arrays/timedeltas/test_constructors.pyc
 1271${PYSITELIB}/pandas/tests/arrays/timedeltas/test_constructors.pyo
 1272${PYSITELIB}/pandas/tests/arrays/timedeltas/test_reductions.py
 1273${PYSITELIB}/pandas/tests/arrays/timedeltas/test_reductions.pyc
 1274${PYSITELIB}/pandas/tests/arrays/timedeltas/test_reductions.pyo
1005${PYSITELIB}/pandas/tests/base/__init__.py 1275${PYSITELIB}/pandas/tests/base/__init__.py
1006${PYSITELIB}/pandas/tests/base/__init__.pyc 1276${PYSITELIB}/pandas/tests/base/__init__.pyc
1007${PYSITELIB}/pandas/tests/base/__init__.pyo 1277${PYSITELIB}/pandas/tests/base/__init__.pyo
1008${PYSITELIB}/pandas/tests/base/common.py 1278${PYSITELIB}/pandas/tests/base/common.py
1009${PYSITELIB}/pandas/tests/base/common.pyc 1279${PYSITELIB}/pandas/tests/base/common.pyc
1010${PYSITELIB}/pandas/tests/base/common.pyo 1280${PYSITELIB}/pandas/tests/base/common.pyo
1011${PYSITELIB}/pandas/tests/base/test_constructors.py 1281${PYSITELIB}/pandas/tests/base/test_constructors.py
1012${PYSITELIB}/pandas/tests/base/test_constructors.pyc 1282${PYSITELIB}/pandas/tests/base/test_constructors.pyc
1013${PYSITELIB}/pandas/tests/base/test_constructors.pyo 1283${PYSITELIB}/pandas/tests/base/test_constructors.pyo
1014${PYSITELIB}/pandas/tests/base/test_conversion.py 1284${PYSITELIB}/pandas/tests/base/test_conversion.py
1015${PYSITELIB}/pandas/tests/base/test_conversion.pyc 1285${PYSITELIB}/pandas/tests/base/test_conversion.pyc
1016${PYSITELIB}/pandas/tests/base/test_conversion.pyo 1286${PYSITELIB}/pandas/tests/base/test_conversion.pyo
1017${PYSITELIB}/pandas/tests/base/test_fillna.py 1287${PYSITELIB}/pandas/tests/base/test_fillna.py
@@ -1037,26 +1307,32 @@ ${PYSITELIB}/pandas/tests/computation/te @@ -1037,26 +1307,32 @@ ${PYSITELIB}/pandas/tests/computation/te
1037${PYSITELIB}/pandas/tests/computation/test_compat.pyo 1307${PYSITELIB}/pandas/tests/computation/test_compat.pyo
1038${PYSITELIB}/pandas/tests/computation/test_eval.py 1308${PYSITELIB}/pandas/tests/computation/test_eval.py
1039${PYSITELIB}/pandas/tests/computation/test_eval.pyc 1309${PYSITELIB}/pandas/tests/computation/test_eval.pyc
1040${PYSITELIB}/pandas/tests/computation/test_eval.pyo 1310${PYSITELIB}/pandas/tests/computation/test_eval.pyo
1041${PYSITELIB}/pandas/tests/config/__init__.py 1311${PYSITELIB}/pandas/tests/config/__init__.py
1042${PYSITELIB}/pandas/tests/config/__init__.pyc 1312${PYSITELIB}/pandas/tests/config/__init__.pyc
1043${PYSITELIB}/pandas/tests/config/__init__.pyo 1313${PYSITELIB}/pandas/tests/config/__init__.pyo
1044${PYSITELIB}/pandas/tests/config/test_config.py 1314${PYSITELIB}/pandas/tests/config/test_config.py
1045${PYSITELIB}/pandas/tests/config/test_config.pyc 1315${PYSITELIB}/pandas/tests/config/test_config.pyc
1046${PYSITELIB}/pandas/tests/config/test_config.pyo 1316${PYSITELIB}/pandas/tests/config/test_config.pyo
1047${PYSITELIB}/pandas/tests/config/test_localization.py 1317${PYSITELIB}/pandas/tests/config/test_localization.py
1048${PYSITELIB}/pandas/tests/config/test_localization.pyc 1318${PYSITELIB}/pandas/tests/config/test_localization.pyc
1049${PYSITELIB}/pandas/tests/config/test_localization.pyo 1319${PYSITELIB}/pandas/tests/config/test_localization.pyo
 1320${PYSITELIB}/pandas/tests/construction/__init__.py
 1321${PYSITELIB}/pandas/tests/construction/__init__.pyc
 1322${PYSITELIB}/pandas/tests/construction/__init__.pyo
 1323${PYSITELIB}/pandas/tests/construction/test_extract_array.py
 1324${PYSITELIB}/pandas/tests/construction/test_extract_array.pyc
 1325${PYSITELIB}/pandas/tests/construction/test_extract_array.pyo
1050${PYSITELIB}/pandas/tests/dtypes/__init__.py 1326${PYSITELIB}/pandas/tests/dtypes/__init__.py
1051${PYSITELIB}/pandas/tests/dtypes/__init__.pyc 1327${PYSITELIB}/pandas/tests/dtypes/__init__.pyc
1052${PYSITELIB}/pandas/tests/dtypes/__init__.pyo 1328${PYSITELIB}/pandas/tests/dtypes/__init__.pyo
1053${PYSITELIB}/pandas/tests/dtypes/cast/__init__.py 1329${PYSITELIB}/pandas/tests/dtypes/cast/__init__.py
1054${PYSITELIB}/pandas/tests/dtypes/cast/__init__.pyc 1330${PYSITELIB}/pandas/tests/dtypes/cast/__init__.pyc
1055${PYSITELIB}/pandas/tests/dtypes/cast/__init__.pyo 1331${PYSITELIB}/pandas/tests/dtypes/cast/__init__.pyo
1056${PYSITELIB}/pandas/tests/dtypes/cast/test_construct_from_scalar.py 1332${PYSITELIB}/pandas/tests/dtypes/cast/test_construct_from_scalar.py
1057${PYSITELIB}/pandas/tests/dtypes/cast/test_construct_from_scalar.pyc 1333${PYSITELIB}/pandas/tests/dtypes/cast/test_construct_from_scalar.pyc
1058${PYSITELIB}/pandas/tests/dtypes/cast/test_construct_from_scalar.pyo 1334${PYSITELIB}/pandas/tests/dtypes/cast/test_construct_from_scalar.pyo
1059${PYSITELIB}/pandas/tests/dtypes/cast/test_construct_ndarray.py 1335${PYSITELIB}/pandas/tests/dtypes/cast/test_construct_ndarray.py
1060${PYSITELIB}/pandas/tests/dtypes/cast/test_construct_ndarray.pyc 1336${PYSITELIB}/pandas/tests/dtypes/cast/test_construct_ndarray.pyc
1061${PYSITELIB}/pandas/tests/dtypes/cast/test_construct_ndarray.pyo 1337${PYSITELIB}/pandas/tests/dtypes/cast/test_construct_ndarray.pyo
1062${PYSITELIB}/pandas/tests/dtypes/cast/test_construct_object_arr.py 1338${PYSITELIB}/pandas/tests/dtypes/cast/test_construct_object_arr.py
@@ -1067,32 +1343,32 @@ ${PYSITELIB}/pandas/tests/dtypes/cast/te @@ -1067,32 +1343,32 @@ ${PYSITELIB}/pandas/tests/dtypes/cast/te
1067${PYSITELIB}/pandas/tests/dtypes/cast/test_dict_compat.pyo 1343${PYSITELIB}/pandas/tests/dtypes/cast/test_dict_compat.pyo
1068${PYSITELIB}/pandas/tests/dtypes/cast/test_downcast.py 1344${PYSITELIB}/pandas/tests/dtypes/cast/test_downcast.py
1069${PYSITELIB}/pandas/tests/dtypes/cast/test_downcast.pyc 1345${PYSITELIB}/pandas/tests/dtypes/cast/test_downcast.pyc
1070${PYSITELIB}/pandas/tests/dtypes/cast/test_downcast.pyo 1346${PYSITELIB}/pandas/tests/dtypes/cast/test_downcast.pyo
1071${PYSITELIB}/pandas/tests/dtypes/cast/test_find_common_type.py 1347${PYSITELIB}/pandas/tests/dtypes/cast/test_find_common_type.py
1072${PYSITELIB}/pandas/tests/dtypes/cast/test_find_common_type.pyc 1348${PYSITELIB}/pandas/tests/dtypes/cast/test_find_common_type.pyc
1073${PYSITELIB}/pandas/tests/dtypes/cast/test_find_common_type.pyo 1349${PYSITELIB}/pandas/tests/dtypes/cast/test_find_common_type.pyo
1074${PYSITELIB}/pandas/tests/dtypes/cast/test_infer_datetimelike.py 1350${PYSITELIB}/pandas/tests/dtypes/cast/test_infer_datetimelike.py
1075${PYSITELIB}/pandas/tests/dtypes/cast/test_infer_datetimelike.pyc 1351${PYSITELIB}/pandas/tests/dtypes/cast/test_infer_datetimelike.pyc
1076${PYSITELIB}/pandas/tests/dtypes/cast/test_infer_datetimelike.pyo 1352${PYSITELIB}/pandas/tests/dtypes/cast/test_infer_datetimelike.pyo
1077${PYSITELIB}/pandas/tests/dtypes/cast/test_infer_dtype.py 1353${PYSITELIB}/pandas/tests/dtypes/cast/test_infer_dtype.py
1078${PYSITELIB}/pandas/tests/dtypes/cast/test_infer_dtype.pyc 1354${PYSITELIB}/pandas/tests/dtypes/cast/test_infer_dtype.pyc
1079${PYSITELIB}/pandas/tests/dtypes/cast/test_infer_dtype.pyo 1355${PYSITELIB}/pandas/tests/dtypes/cast/test_infer_dtype.pyo
 1356${PYSITELIB}/pandas/tests/dtypes/cast/test_maybe_box_native.py
 1357${PYSITELIB}/pandas/tests/dtypes/cast/test_maybe_box_native.pyc
 1358${PYSITELIB}/pandas/tests/dtypes/cast/test_maybe_box_native.pyo
1080${PYSITELIB}/pandas/tests/dtypes/cast/test_promote.py 1359${PYSITELIB}/pandas/tests/dtypes/cast/test_promote.py
1081${PYSITELIB}/pandas/tests/dtypes/cast/test_promote.pyc 1360${PYSITELIB}/pandas/tests/dtypes/cast/test_promote.pyc
1082${PYSITELIB}/pandas/tests/dtypes/cast/test_promote.pyo 1361${PYSITELIB}/pandas/tests/dtypes/cast/test_promote.pyo
1083${PYSITELIB}/pandas/tests/dtypes/cast/test_upcast.py 
1084${PYSITELIB}/pandas/tests/dtypes/cast/test_upcast.pyc 
1085${PYSITELIB}/pandas/tests/dtypes/cast/test_upcast.pyo 
1086${PYSITELIB}/pandas/tests/dtypes/test_common.py 1362${PYSITELIB}/pandas/tests/dtypes/test_common.py
1087${PYSITELIB}/pandas/tests/dtypes/test_common.pyc 1363${PYSITELIB}/pandas/tests/dtypes/test_common.pyc
1088${PYSITELIB}/pandas/tests/dtypes/test_common.pyo 1364${PYSITELIB}/pandas/tests/dtypes/test_common.pyo
1089${PYSITELIB}/pandas/tests/dtypes/test_concat.py 1365${PYSITELIB}/pandas/tests/dtypes/test_concat.py
1090${PYSITELIB}/pandas/tests/dtypes/test_concat.pyc 1366${PYSITELIB}/pandas/tests/dtypes/test_concat.pyc
1091${PYSITELIB}/pandas/tests/dtypes/test_concat.pyo 1367${PYSITELIB}/pandas/tests/dtypes/test_concat.pyo
1092${PYSITELIB}/pandas/tests/dtypes/test_dtypes.py 1368${PYSITELIB}/pandas/tests/dtypes/test_dtypes.py
1093${PYSITELIB}/pandas/tests/dtypes/test_dtypes.pyc 1369${PYSITELIB}/pandas/tests/dtypes/test_dtypes.pyc
1094${PYSITELIB}/pandas/tests/dtypes/test_dtypes.pyo 1370${PYSITELIB}/pandas/tests/dtypes/test_dtypes.pyo
1095${PYSITELIB}/pandas/tests/dtypes/test_generic.py 1371${PYSITELIB}/pandas/tests/dtypes/test_generic.py
1096${PYSITELIB}/pandas/tests/dtypes/test_generic.pyc 1372${PYSITELIB}/pandas/tests/dtypes/test_generic.pyc
1097${PYSITELIB}/pandas/tests/dtypes/test_generic.pyo 1373${PYSITELIB}/pandas/tests/dtypes/test_generic.pyo
1098${PYSITELIB}/pandas/tests/dtypes/test_inference.py 1374${PYSITELIB}/pandas/tests/dtypes/test_inference.py
@@ -1106,38 +1382,44 @@ ${PYSITELIB}/pandas/tests/extension/__in @@ -1106,38 +1382,44 @@ ${PYSITELIB}/pandas/tests/extension/__in
1106${PYSITELIB}/pandas/tests/extension/__init__.pyo 1382${PYSITELIB}/pandas/tests/extension/__init__.pyo
1107${PYSITELIB}/pandas/tests/extension/arrow/__init__.py 1383${PYSITELIB}/pandas/tests/extension/arrow/__init__.py
1108${PYSITELIB}/pandas/tests/extension/arrow/__init__.pyc 1384${PYSITELIB}/pandas/tests/extension/arrow/__init__.pyc
1109${PYSITELIB}/pandas/tests/extension/arrow/__init__.pyo 1385${PYSITELIB}/pandas/tests/extension/arrow/__init__.pyo
1110${PYSITELIB}/pandas/tests/extension/arrow/arrays.py 1386${PYSITELIB}/pandas/tests/extension/arrow/arrays.py
1111${PYSITELIB}/pandas/tests/extension/arrow/arrays.pyc 1387${PYSITELIB}/pandas/tests/extension/arrow/arrays.pyc
1112${PYSITELIB}/pandas/tests/extension/arrow/arrays.pyo 1388${PYSITELIB}/pandas/tests/extension/arrow/arrays.pyo
1113${PYSITELIB}/pandas/tests/extension/arrow/test_bool.py 1389${PYSITELIB}/pandas/tests/extension/arrow/test_bool.py
1114${PYSITELIB}/pandas/tests/extension/arrow/test_bool.pyc 1390${PYSITELIB}/pandas/tests/extension/arrow/test_bool.pyc
1115${PYSITELIB}/pandas/tests/extension/arrow/test_bool.pyo 1391${PYSITELIB}/pandas/tests/extension/arrow/test_bool.pyo
1116${PYSITELIB}/pandas/tests/extension/arrow/test_string.py 1392${PYSITELIB}/pandas/tests/extension/arrow/test_string.py
1117${PYSITELIB}/pandas/tests/extension/arrow/test_string.pyc 1393${PYSITELIB}/pandas/tests/extension/arrow/test_string.pyc
1118${PYSITELIB}/pandas/tests/extension/arrow/test_string.pyo 1394${PYSITELIB}/pandas/tests/extension/arrow/test_string.pyo
 1395${PYSITELIB}/pandas/tests/extension/arrow/test_timestamp.py
 1396${PYSITELIB}/pandas/tests/extension/arrow/test_timestamp.pyc
 1397${PYSITELIB}/pandas/tests/extension/arrow/test_timestamp.pyo
1119${PYSITELIB}/pandas/tests/extension/base/__init__.py 1398${PYSITELIB}/pandas/tests/extension/base/__init__.py
1120${PYSITELIB}/pandas/tests/extension/base/__init__.pyc 1399${PYSITELIB}/pandas/tests/extension/base/__init__.pyc
1121${PYSITELIB}/pandas/tests/extension/base/__init__.pyo 1400${PYSITELIB}/pandas/tests/extension/base/__init__.pyo
1122${PYSITELIB}/pandas/tests/extension/base/base.py 1401${PYSITELIB}/pandas/tests/extension/base/base.py
1123${PYSITELIB}/pandas/tests/extension/base/base.pyc 1402${PYSITELIB}/pandas/tests/extension/base/base.pyc
1124${PYSITELIB}/pandas/tests/extension/base/base.pyo 1403${PYSITELIB}/pandas/tests/extension/base/base.pyo
1125${PYSITELIB}/pandas/tests/extension/base/casting.py 1404${PYSITELIB}/pandas/tests/extension/base/casting.py
1126${PYSITELIB}/pandas/tests/extension/base/casting.pyc 1405${PYSITELIB}/pandas/tests/extension/base/casting.pyc
1127${PYSITELIB}/pandas/tests/extension/base/casting.pyo 1406${PYSITELIB}/pandas/tests/extension/base/casting.pyo
1128${PYSITELIB}/pandas/tests/extension/base/constructors.py 1407${PYSITELIB}/pandas/tests/extension/base/constructors.py
1129${PYSITELIB}/pandas/tests/extension/base/constructors.pyc 1408${PYSITELIB}/pandas/tests/extension/base/constructors.pyc
1130${PYSITELIB}/pandas/tests/extension/base/constructors.pyo 1409${PYSITELIB}/pandas/tests/extension/base/constructors.pyo
 1410${PYSITELIB}/pandas/tests/extension/base/dim2.py
 1411${PYSITELIB}/pandas/tests/extension/base/dim2.pyc
 1412${PYSITELIB}/pandas/tests/extension/base/dim2.pyo
1131${PYSITELIB}/pandas/tests/extension/base/dtype.py 1413${PYSITELIB}/pandas/tests/extension/base/dtype.py
1132${PYSITELIB}/pandas/tests/extension/base/dtype.pyc 1414${PYSITELIB}/pandas/tests/extension/base/dtype.pyc
1133${PYSITELIB}/pandas/tests/extension/base/dtype.pyo 1415${PYSITELIB}/pandas/tests/extension/base/dtype.pyo
1134${PYSITELIB}/pandas/tests/extension/base/getitem.py 1416${PYSITELIB}/pandas/tests/extension/base/getitem.py
1135${PYSITELIB}/pandas/tests/extension/base/getitem.pyc 1417${PYSITELIB}/pandas/tests/extension/base/getitem.pyc
1136${PYSITELIB}/pandas/tests/extension/base/getitem.pyo 1418${PYSITELIB}/pandas/tests/extension/base/getitem.pyo
1137${PYSITELIB}/pandas/tests/extension/base/groupby.py 1419${PYSITELIB}/pandas/tests/extension/base/groupby.py
1138${PYSITELIB}/pandas/tests/extension/base/groupby.pyc 1420${PYSITELIB}/pandas/tests/extension/base/groupby.pyc
1139${PYSITELIB}/pandas/tests/extension/base/groupby.pyo 1421${PYSITELIB}/pandas/tests/extension/base/groupby.pyo
1140${PYSITELIB}/pandas/tests/extension/base/interface.py 1422${PYSITELIB}/pandas/tests/extension/base/interface.py
1141${PYSITELIB}/pandas/tests/extension/base/interface.pyc 1423${PYSITELIB}/pandas/tests/extension/base/interface.pyc
1142${PYSITELIB}/pandas/tests/extension/base/interface.pyo 1424${PYSITELIB}/pandas/tests/extension/base/interface.pyo
1143${PYSITELIB}/pandas/tests/extension/base/io.py 1425${PYSITELIB}/pandas/tests/extension/base/io.py
@@ -1196,26 +1478,29 @@ ${PYSITELIB}/pandas/tests/extension/list @@ -1196,26 +1478,29 @@ ${PYSITELIB}/pandas/tests/extension/list
1196${PYSITELIB}/pandas/tests/extension/list/test_list.pyo 1478${PYSITELIB}/pandas/tests/extension/list/test_list.pyo
1197${PYSITELIB}/pandas/tests/extension/test_boolean.py 1479${PYSITELIB}/pandas/tests/extension/test_boolean.py
1198${PYSITELIB}/pandas/tests/extension/test_boolean.pyc 1480${PYSITELIB}/pandas/tests/extension/test_boolean.pyc
1199${PYSITELIB}/pandas/tests/extension/test_boolean.pyo 1481${PYSITELIB}/pandas/tests/extension/test_boolean.pyo
1200${PYSITELIB}/pandas/tests/extension/test_categorical.py 1482${PYSITELIB}/pandas/tests/extension/test_categorical.py
1201${PYSITELIB}/pandas/tests/extension/test_categorical.pyc 1483${PYSITELIB}/pandas/tests/extension/test_categorical.pyc
1202${PYSITELIB}/pandas/tests/extension/test_categorical.pyo 1484${PYSITELIB}/pandas/tests/extension/test_categorical.pyo
1203${PYSITELIB}/pandas/tests/extension/test_common.py 1485${PYSITELIB}/pandas/tests/extension/test_common.py
1204${PYSITELIB}/pandas/tests/extension/test_common.pyc 1486${PYSITELIB}/pandas/tests/extension/test_common.pyc
1205${PYSITELIB}/pandas/tests/extension/test_common.pyo 1487${PYSITELIB}/pandas/tests/extension/test_common.pyo
1206${PYSITELIB}/pandas/tests/extension/test_datetime.py 1488${PYSITELIB}/pandas/tests/extension/test_datetime.py
1207${PYSITELIB}/pandas/tests/extension/test_datetime.pyc 1489${PYSITELIB}/pandas/tests/extension/test_datetime.pyc
1208${PYSITELIB}/pandas/tests/extension/test_datetime.pyo 1490${PYSITELIB}/pandas/tests/extension/test_datetime.pyo
 1491${PYSITELIB}/pandas/tests/extension/test_extension.py
 1492${PYSITELIB}/pandas/tests/extension/test_extension.pyc
 1493${PYSITELIB}/pandas/tests/extension/test_extension.pyo
1209${PYSITELIB}/pandas/tests/extension/test_external_block.py 1494${PYSITELIB}/pandas/tests/extension/test_external_block.py
1210${PYSITELIB}/pandas/tests/extension/test_external_block.pyc 1495${PYSITELIB}/pandas/tests/extension/test_external_block.pyc
1211${PYSITELIB}/pandas/tests/extension/test_external_block.pyo 1496${PYSITELIB}/pandas/tests/extension/test_external_block.pyo
1212${PYSITELIB}/pandas/tests/extension/test_floating.py 1497${PYSITELIB}/pandas/tests/extension/test_floating.py
1213${PYSITELIB}/pandas/tests/extension/test_floating.pyc 1498${PYSITELIB}/pandas/tests/extension/test_floating.pyc
1214${PYSITELIB}/pandas/tests/extension/test_floating.pyo 1499${PYSITELIB}/pandas/tests/extension/test_floating.pyo
1215${PYSITELIB}/pandas/tests/extension/test_integer.py 1500${PYSITELIB}/pandas/tests/extension/test_integer.py
1216${PYSITELIB}/pandas/tests/extension/test_integer.pyc 1501${PYSITELIB}/pandas/tests/extension/test_integer.pyc
1217${PYSITELIB}/pandas/tests/extension/test_integer.pyo 1502${PYSITELIB}/pandas/tests/extension/test_integer.pyo
1218${PYSITELIB}/pandas/tests/extension/test_interval.py 1503${PYSITELIB}/pandas/tests/extension/test_interval.py
1219${PYSITELIB}/pandas/tests/extension/test_interval.pyc 1504${PYSITELIB}/pandas/tests/extension/test_interval.pyc
1220${PYSITELIB}/pandas/tests/extension/test_interval.pyo 1505${PYSITELIB}/pandas/tests/extension/test_interval.pyo
1221${PYSITELIB}/pandas/tests/extension/test_numpy.py 1506${PYSITELIB}/pandas/tests/extension/test_numpy.py
@@ -1223,50 +1508,44 @@ ${PYSITELIB}/pandas/tests/extension/test @@ -1223,50 +1508,44 @@ ${PYSITELIB}/pandas/tests/extension/test
1223${PYSITELIB}/pandas/tests/extension/test_numpy.pyo 1508${PYSITELIB}/pandas/tests/extension/test_numpy.pyo
1224${PYSITELIB}/pandas/tests/extension/test_period.py 1509${PYSITELIB}/pandas/tests/extension/test_period.py
1225${PYSITELIB}/pandas/tests/extension/test_period.pyc 1510${PYSITELIB}/pandas/tests/extension/test_period.pyc
1226${PYSITELIB}/pandas/tests/extension/test_period.pyo 1511${PYSITELIB}/pandas/tests/extension/test_period.pyo
1227${PYSITELIB}/pandas/tests/extension/test_sparse.py 1512${PYSITELIB}/pandas/tests/extension/test_sparse.py
1228${PYSITELIB}/pandas/tests/extension/test_sparse.pyc 1513${PYSITELIB}/pandas/tests/extension/test_sparse.pyc
1229${PYSITELIB}/pandas/tests/extension/test_sparse.pyo 1514${PYSITELIB}/pandas/tests/extension/test_sparse.pyo
1230${PYSITELIB}/pandas/tests/extension/test_string.py 1515${PYSITELIB}/pandas/tests/extension/test_string.py
1231${PYSITELIB}/pandas/tests/extension/test_string.pyc 1516${PYSITELIB}/pandas/tests/extension/test_string.pyc
1232${PYSITELIB}/pandas/tests/extension/test_string.pyo 1517${PYSITELIB}/pandas/tests/extension/test_string.pyo
1233${PYSITELIB}/pandas/tests/frame/__init__.py 1518${PYSITELIB}/pandas/tests/frame/__init__.py
1234${PYSITELIB}/pandas/tests/frame/__init__.pyc 1519${PYSITELIB}/pandas/tests/frame/__init__.pyc
1235${PYSITELIB}/pandas/tests/frame/__init__.pyo 1520${PYSITELIB}/pandas/tests/frame/__init__.pyo
1236${PYSITELIB}/pandas/tests/frame/apply/__init__.py 
1237${PYSITELIB}/pandas/tests/frame/apply/__init__.pyc 
1238${PYSITELIB}/pandas/tests/frame/apply/__init__.pyo 
1239${PYSITELIB}/pandas/tests/frame/apply/test_apply_relabeling.py 
1240${PYSITELIB}/pandas/tests/frame/apply/test_apply_relabeling.pyc 
1241${PYSITELIB}/pandas/tests/frame/apply/test_apply_relabeling.pyo 
1242${PYSITELIB}/pandas/tests/frame/apply/test_frame_apply.py 
1243${PYSITELIB}/pandas/tests/frame/apply/test_frame_apply.pyc 
1244${PYSITELIB}/pandas/tests/frame/apply/test_frame_apply.pyo 
1245${PYSITELIB}/pandas/tests/frame/apply/test_frame_transform.py 
1246${PYSITELIB}/pandas/tests/frame/apply/test_frame_transform.pyc 
1247${PYSITELIB}/pandas/tests/frame/apply/test_frame_transform.pyo 
1248${PYSITELIB}/pandas/tests/frame/common.py 1521${PYSITELIB}/pandas/tests/frame/common.py
1249${PYSITELIB}/pandas/tests/frame/common.pyc 1522${PYSITELIB}/pandas/tests/frame/common.pyc
1250${PYSITELIB}/pandas/tests/frame/common.pyo 1523${PYSITELIB}/pandas/tests/frame/common.pyo
1251${PYSITELIB}/pandas/tests/frame/conftest.py 1524${PYSITELIB}/pandas/tests/frame/conftest.py
1252${PYSITELIB}/pandas/tests/frame/conftest.pyc 1525${PYSITELIB}/pandas/tests/frame/conftest.pyc
1253${PYSITELIB}/pandas/tests/frame/conftest.pyo 1526${PYSITELIB}/pandas/tests/frame/conftest.pyo
 1527${PYSITELIB}/pandas/tests/frame/constructors/__init__.py
 1528${PYSITELIB}/pandas/tests/frame/constructors/__init__.pyc
 1529${PYSITELIB}/pandas/tests/frame/constructors/__init__.pyo
 1530${PYSITELIB}/pandas/tests/frame/constructors/test_from_dict.py
 1531${PYSITELIB}/pandas/tests/frame/constructors/test_from_dict.pyc
 1532${PYSITELIB}/pandas/tests/frame/constructors/test_from_dict.pyo
 1533${PYSITELIB}/pandas/tests/frame/constructors/test_from_records.py
 1534${PYSITELIB}/pandas/tests/frame/constructors/test_from_records.pyc
 1535${PYSITELIB}/pandas/tests/frame/constructors/test_from_records.pyo
1254${PYSITELIB}/pandas/tests/frame/indexing/__init__.py 1536${PYSITELIB}/pandas/tests/frame/indexing/__init__.py
1255${PYSITELIB}/pandas/tests/frame/indexing/__init__.pyc 1537${PYSITELIB}/pandas/tests/frame/indexing/__init__.pyc
1256${PYSITELIB}/pandas/tests/frame/indexing/__init__.pyo 1538${PYSITELIB}/pandas/tests/frame/indexing/__init__.pyo
1257${PYSITELIB}/pandas/tests/frame/indexing/test_categorical.py 
1258${PYSITELIB}/pandas/tests/frame/indexing/test_categorical.pyc 
1259${PYSITELIB}/pandas/tests/frame/indexing/test_categorical.pyo 
1260${PYSITELIB}/pandas/tests/frame/indexing/test_delitem.py 1539${PYSITELIB}/pandas/tests/frame/indexing/test_delitem.py
1261${PYSITELIB}/pandas/tests/frame/indexing/test_delitem.pyc 1540${PYSITELIB}/pandas/tests/frame/indexing/test_delitem.pyc
1262${PYSITELIB}/pandas/tests/frame/indexing/test_delitem.pyo 1541${PYSITELIB}/pandas/tests/frame/indexing/test_delitem.pyo
1263${PYSITELIB}/pandas/tests/frame/indexing/test_get.py 1542${PYSITELIB}/pandas/tests/frame/indexing/test_get.py
1264${PYSITELIB}/pandas/tests/frame/indexing/test_get.pyc 1543${PYSITELIB}/pandas/tests/frame/indexing/test_get.pyc
1265${PYSITELIB}/pandas/tests/frame/indexing/test_get.pyo 1544${PYSITELIB}/pandas/tests/frame/indexing/test_get.pyo
1266${PYSITELIB}/pandas/tests/frame/indexing/test_get_value.py 1545${PYSITELIB}/pandas/tests/frame/indexing/test_get_value.py
1267${PYSITELIB}/pandas/tests/frame/indexing/test_get_value.pyc 1546${PYSITELIB}/pandas/tests/frame/indexing/test_get_value.pyc
1268${PYSITELIB}/pandas/tests/frame/indexing/test_get_value.pyo 1547${PYSITELIB}/pandas/tests/frame/indexing/test_get_value.pyo
1269${PYSITELIB}/pandas/tests/frame/indexing/test_getitem.py 1548${PYSITELIB}/pandas/tests/frame/indexing/test_getitem.py
1270${PYSITELIB}/pandas/tests/frame/indexing/test_getitem.pyc 1549${PYSITELIB}/pandas/tests/frame/indexing/test_getitem.pyc
1271${PYSITELIB}/pandas/tests/frame/indexing/test_getitem.pyo 1550${PYSITELIB}/pandas/tests/frame/indexing/test_getitem.pyo
1272${PYSITELIB}/pandas/tests/frame/indexing/test_indexing.py 1551${PYSITELIB}/pandas/tests/frame/indexing/test_indexing.py
@@ -1340,35 +1619,41 @@ ${PYSITELIB}/pandas/tests/frame/methods/ @@ -1340,35 +1619,41 @@ ${PYSITELIB}/pandas/tests/frame/methods/
1340${PYSITELIB}/pandas/tests/frame/methods/test_compare.pyo 1619${PYSITELIB}/pandas/tests/frame/methods/test_compare.pyo
1341${PYSITELIB}/pandas/tests/frame/methods/test_convert.py 1620${PYSITELIB}/pandas/tests/frame/methods/test_convert.py
1342${PYSITELIB}/pandas/tests/frame/methods/test_convert.pyc 1621${PYSITELIB}/pandas/tests/frame/methods/test_convert.pyc
1343${PYSITELIB}/pandas/tests/frame/methods/test_convert.pyo 1622${PYSITELIB}/pandas/tests/frame/methods/test_convert.pyo
1344${PYSITELIB}/pandas/tests/frame/methods/test_convert_dtypes.py 1623${PYSITELIB}/pandas/tests/frame/methods/test_convert_dtypes.py
1345${PYSITELIB}/pandas/tests/frame/methods/test_convert_dtypes.pyc 1624${PYSITELIB}/pandas/tests/frame/methods/test_convert_dtypes.pyc
1346${PYSITELIB}/pandas/tests/frame/methods/test_convert_dtypes.pyo 1625${PYSITELIB}/pandas/tests/frame/methods/test_convert_dtypes.pyo
1347${PYSITELIB}/pandas/tests/frame/methods/test_copy.py 1626${PYSITELIB}/pandas/tests/frame/methods/test_copy.py
1348${PYSITELIB}/pandas/tests/frame/methods/test_copy.pyc 1627${PYSITELIB}/pandas/tests/frame/methods/test_copy.pyc
1349${PYSITELIB}/pandas/tests/frame/methods/test_copy.pyo 1628${PYSITELIB}/pandas/tests/frame/methods/test_copy.pyo
1350${PYSITELIB}/pandas/tests/frame/methods/test_count.py 1629${PYSITELIB}/pandas/tests/frame/methods/test_count.py
1351${PYSITELIB}/pandas/tests/frame/methods/test_count.pyc 1630${PYSITELIB}/pandas/tests/frame/methods/test_count.pyc
1352${PYSITELIB}/pandas/tests/frame/methods/test_count.pyo 1631${PYSITELIB}/pandas/tests/frame/methods/test_count.pyo
 1632${PYSITELIB}/pandas/tests/frame/methods/test_count_with_level_deprecated.py
 1633${PYSITELIB}/pandas/tests/frame/methods/test_count_with_level_deprecated.pyc
 1634${PYSITELIB}/pandas/tests/frame/methods/test_count_with_level_deprecated.pyo
1353${PYSITELIB}/pandas/tests/frame/methods/test_cov_corr.py 1635${PYSITELIB}/pandas/tests/frame/methods/test_cov_corr.py
1354${PYSITELIB}/pandas/tests/frame/methods/test_cov_corr.pyc 1636${PYSITELIB}/pandas/tests/frame/methods/test_cov_corr.pyc
1355${PYSITELIB}/pandas/tests/frame/methods/test_cov_corr.pyo 1637${PYSITELIB}/pandas/tests/frame/methods/test_cov_corr.pyo
1356${PYSITELIB}/pandas/tests/frame/methods/test_describe.py 1638${PYSITELIB}/pandas/tests/frame/methods/test_describe.py
1357${PYSITELIB}/pandas/tests/frame/methods/test_describe.pyc 1639${PYSITELIB}/pandas/tests/frame/methods/test_describe.pyc
1358${PYSITELIB}/pandas/tests/frame/methods/test_describe.pyo 1640${PYSITELIB}/pandas/tests/frame/methods/test_describe.pyo
1359${PYSITELIB}/pandas/tests/frame/methods/test_diff.py 1641${PYSITELIB}/pandas/tests/frame/methods/test_diff.py
1360${PYSITELIB}/pandas/tests/frame/methods/test_diff.pyc 1642${PYSITELIB}/pandas/tests/frame/methods/test_diff.pyc
1361${PYSITELIB}/pandas/tests/frame/methods/test_diff.pyo 1643${PYSITELIB}/pandas/tests/frame/methods/test_diff.pyo
 1644${PYSITELIB}/pandas/tests/frame/methods/test_dot.py
 1645${PYSITELIB}/pandas/tests/frame/methods/test_dot.pyc
 1646${PYSITELIB}/pandas/tests/frame/methods/test_dot.pyo
1362${PYSITELIB}/pandas/tests/frame/methods/test_drop.py 1647${PYSITELIB}/pandas/tests/frame/methods/test_drop.py
1363${PYSITELIB}/pandas/tests/frame/methods/test_drop.pyc 1648${PYSITELIB}/pandas/tests/frame/methods/test_drop.pyc
1364${PYSITELIB}/pandas/tests/frame/methods/test_drop.pyo 1649${PYSITELIB}/pandas/tests/frame/methods/test_drop.pyo
1365${PYSITELIB}/pandas/tests/frame/methods/test_drop_duplicates.py 1650${PYSITELIB}/pandas/tests/frame/methods/test_drop_duplicates.py
1366${PYSITELIB}/pandas/tests/frame/methods/test_drop_duplicates.pyc 1651${PYSITELIB}/pandas/tests/frame/methods/test_drop_duplicates.pyc
1367${PYSITELIB}/pandas/tests/frame/methods/test_drop_duplicates.pyo 1652${PYSITELIB}/pandas/tests/frame/methods/test_drop_duplicates.pyo
1368${PYSITELIB}/pandas/tests/frame/methods/test_droplevel.py 1653${PYSITELIB}/pandas/tests/frame/methods/test_droplevel.py
1369${PYSITELIB}/pandas/tests/frame/methods/test_droplevel.pyc 1654${PYSITELIB}/pandas/tests/frame/methods/test_droplevel.pyc
1370${PYSITELIB}/pandas/tests/frame/methods/test_droplevel.pyo 1655${PYSITELIB}/pandas/tests/frame/methods/test_droplevel.pyo
1371${PYSITELIB}/pandas/tests/frame/methods/test_dropna.py 1656${PYSITELIB}/pandas/tests/frame/methods/test_dropna.py
1372${PYSITELIB}/pandas/tests/frame/methods/test_dropna.pyc 1657${PYSITELIB}/pandas/tests/frame/methods/test_dropna.pyc
1373${PYSITELIB}/pandas/tests/frame/methods/test_dropna.pyo 1658${PYSITELIB}/pandas/tests/frame/methods/test_dropna.pyo
1374${PYSITELIB}/pandas/tests/frame/methods/test_dtypes.py 1659${PYSITELIB}/pandas/tests/frame/methods/test_dtypes.py
@@ -1382,26 +1667,29 @@ ${PYSITELIB}/pandas/tests/frame/methods/ @@ -1382,26 +1667,29 @@ ${PYSITELIB}/pandas/tests/frame/methods/
1382${PYSITELIB}/pandas/tests/frame/methods/test_equals.pyo 1667${PYSITELIB}/pandas/tests/frame/methods/test_equals.pyo
1383${PYSITELIB}/pandas/tests/frame/methods/test_explode.py 1668${PYSITELIB}/pandas/tests/frame/methods/test_explode.py
1384${PYSITELIB}/pandas/tests/frame/methods/test_explode.pyc 1669${PYSITELIB}/pandas/tests/frame/methods/test_explode.pyc
1385${PYSITELIB}/pandas/tests/frame/methods/test_explode.pyo 1670${PYSITELIB}/pandas/tests/frame/methods/test_explode.pyo
1386${PYSITELIB}/pandas/tests/frame/methods/test_fillna.py 1671${PYSITELIB}/pandas/tests/frame/methods/test_fillna.py
1387${PYSITELIB}/pandas/tests/frame/methods/test_fillna.pyc 1672${PYSITELIB}/pandas/tests/frame/methods/test_fillna.pyc
1388${PYSITELIB}/pandas/tests/frame/methods/test_fillna.pyo 1673${PYSITELIB}/pandas/tests/frame/methods/test_fillna.pyo
1389${PYSITELIB}/pandas/tests/frame/methods/test_filter.py 1674${PYSITELIB}/pandas/tests/frame/methods/test_filter.py
1390${PYSITELIB}/pandas/tests/frame/methods/test_filter.pyc 1675${PYSITELIB}/pandas/tests/frame/methods/test_filter.pyc
1391${PYSITELIB}/pandas/tests/frame/methods/test_filter.pyo 1676${PYSITELIB}/pandas/tests/frame/methods/test_filter.pyo
1392${PYSITELIB}/pandas/tests/frame/methods/test_first_and_last.py 1677${PYSITELIB}/pandas/tests/frame/methods/test_first_and_last.py
1393${PYSITELIB}/pandas/tests/frame/methods/test_first_and_last.pyc 1678${PYSITELIB}/pandas/tests/frame/methods/test_first_and_last.pyc
1394${PYSITELIB}/pandas/tests/frame/methods/test_first_and_last.pyo 1679${PYSITELIB}/pandas/tests/frame/methods/test_first_and_last.pyo
 1680${PYSITELIB}/pandas/tests/frame/methods/test_first_valid_index.py
 1681${PYSITELIB}/pandas/tests/frame/methods/test_first_valid_index.pyc
 1682${PYSITELIB}/pandas/tests/frame/methods/test_first_valid_index.pyo
1395${PYSITELIB}/pandas/tests/frame/methods/test_get_numeric_data.py 1683${PYSITELIB}/pandas/tests/frame/methods/test_get_numeric_data.py
1396${PYSITELIB}/pandas/tests/frame/methods/test_get_numeric_data.pyc 1684${PYSITELIB}/pandas/tests/frame/methods/test_get_numeric_data.pyc
1397${PYSITELIB}/pandas/tests/frame/methods/test_get_numeric_data.pyo 1685${PYSITELIB}/pandas/tests/frame/methods/test_get_numeric_data.pyo
1398${PYSITELIB}/pandas/tests/frame/methods/test_head_tail.py 1686${PYSITELIB}/pandas/tests/frame/methods/test_head_tail.py
1399${PYSITELIB}/pandas/tests/frame/methods/test_head_tail.pyc 1687${PYSITELIB}/pandas/tests/frame/methods/test_head_tail.pyc
1400${PYSITELIB}/pandas/tests/frame/methods/test_head_tail.pyo 1688${PYSITELIB}/pandas/tests/frame/methods/test_head_tail.pyo
1401${PYSITELIB}/pandas/tests/frame/methods/test_infer_objects.py 1689${PYSITELIB}/pandas/tests/frame/methods/test_infer_objects.py
1402${PYSITELIB}/pandas/tests/frame/methods/test_infer_objects.pyc 1690${PYSITELIB}/pandas/tests/frame/methods/test_infer_objects.pyc
1403${PYSITELIB}/pandas/tests/frame/methods/test_infer_objects.pyo 1691${PYSITELIB}/pandas/tests/frame/methods/test_infer_objects.pyo
1404${PYSITELIB}/pandas/tests/frame/methods/test_interpolate.py 1692${PYSITELIB}/pandas/tests/frame/methods/test_interpolate.py
1405${PYSITELIB}/pandas/tests/frame/methods/test_interpolate.pyc 1693${PYSITELIB}/pandas/tests/frame/methods/test_interpolate.pyc
1406${PYSITELIB}/pandas/tests/frame/methods/test_interpolate.pyo 1694${PYSITELIB}/pandas/tests/frame/methods/test_interpolate.pyo
1407${PYSITELIB}/pandas/tests/frame/methods/test_is_homogeneous_dtype.py 1695${PYSITELIB}/pandas/tests/frame/methods/test_is_homogeneous_dtype.py
@@ -1412,59 +1700,71 @@ ${PYSITELIB}/pandas/tests/frame/methods/ @@ -1412,59 +1700,71 @@ ${PYSITELIB}/pandas/tests/frame/methods/
1412${PYSITELIB}/pandas/tests/frame/methods/test_isin.pyo 1700${PYSITELIB}/pandas/tests/frame/methods/test_isin.pyo
1413${PYSITELIB}/pandas/tests/frame/methods/test_join.py 1701${PYSITELIB}/pandas/tests/frame/methods/test_join.py
1414${PYSITELIB}/pandas/tests/frame/methods/test_join.pyc 1702${PYSITELIB}/pandas/tests/frame/methods/test_join.pyc
1415${PYSITELIB}/pandas/tests/frame/methods/test_join.pyo 1703${PYSITELIB}/pandas/tests/frame/methods/test_join.pyo
1416${PYSITELIB}/pandas/tests/frame/methods/test_matmul.py 1704${PYSITELIB}/pandas/tests/frame/methods/test_matmul.py
1417${PYSITELIB}/pandas/tests/frame/methods/test_matmul.pyc 1705${PYSITELIB}/pandas/tests/frame/methods/test_matmul.pyc
1418${PYSITELIB}/pandas/tests/frame/methods/test_matmul.pyo 1706${PYSITELIB}/pandas/tests/frame/methods/test_matmul.pyo
1419${PYSITELIB}/pandas/tests/frame/methods/test_nlargest.py 1707${PYSITELIB}/pandas/tests/frame/methods/test_nlargest.py
1420${PYSITELIB}/pandas/tests/frame/methods/test_nlargest.pyc 1708${PYSITELIB}/pandas/tests/frame/methods/test_nlargest.pyc
1421${PYSITELIB}/pandas/tests/frame/methods/test_nlargest.pyo 1709${PYSITELIB}/pandas/tests/frame/methods/test_nlargest.pyo
1422${PYSITELIB}/pandas/tests/frame/methods/test_pct_change.py 1710${PYSITELIB}/pandas/tests/frame/methods/test_pct_change.py
1423${PYSITELIB}/pandas/tests/frame/methods/test_pct_change.pyc 1711${PYSITELIB}/pandas/tests/frame/methods/test_pct_change.pyc
1424${PYSITELIB}/pandas/tests/frame/methods/test_pct_change.pyo 1712${PYSITELIB}/pandas/tests/frame/methods/test_pct_change.pyo
 1713${PYSITELIB}/pandas/tests/frame/methods/test_pipe.py
 1714${PYSITELIB}/pandas/tests/frame/methods/test_pipe.pyc
 1715${PYSITELIB}/pandas/tests/frame/methods/test_pipe.pyo
1425${PYSITELIB}/pandas/tests/frame/methods/test_pop.py 1716${PYSITELIB}/pandas/tests/frame/methods/test_pop.py
1426${PYSITELIB}/pandas/tests/frame/methods/test_pop.pyc 1717${PYSITELIB}/pandas/tests/frame/methods/test_pop.pyc
1427${PYSITELIB}/pandas/tests/frame/methods/test_pop.pyo 1718${PYSITELIB}/pandas/tests/frame/methods/test_pop.pyo
1428${PYSITELIB}/pandas/tests/frame/methods/test_quantile.py 1719${PYSITELIB}/pandas/tests/frame/methods/test_quantile.py
1429${PYSITELIB}/pandas/tests/frame/methods/test_quantile.pyc 1720${PYSITELIB}/pandas/tests/frame/methods/test_quantile.pyc
1430${PYSITELIB}/pandas/tests/frame/methods/test_quantile.pyo 1721${PYSITELIB}/pandas/tests/frame/methods/test_quantile.pyo
1431${PYSITELIB}/pandas/tests/frame/methods/test_rank.py 1722${PYSITELIB}/pandas/tests/frame/methods/test_rank.py
1432${PYSITELIB}/pandas/tests/frame/methods/test_rank.pyc 1723${PYSITELIB}/pandas/tests/frame/methods/test_rank.pyc
1433${PYSITELIB}/pandas/tests/frame/methods/test_rank.pyo 1724${PYSITELIB}/pandas/tests/frame/methods/test_rank.pyo
1434${PYSITELIB}/pandas/tests/frame/methods/test_reindex.py 1725${PYSITELIB}/pandas/tests/frame/methods/test_reindex.py
1435${PYSITELIB}/pandas/tests/frame/methods/test_reindex.pyc 1726${PYSITELIB}/pandas/tests/frame/methods/test_reindex.pyc
1436${PYSITELIB}/pandas/tests/frame/methods/test_reindex.pyo 1727${PYSITELIB}/pandas/tests/frame/methods/test_reindex.pyo
1437${PYSITELIB}/pandas/tests/frame/methods/test_reindex_like.py 1728${PYSITELIB}/pandas/tests/frame/methods/test_reindex_like.py
1438${PYSITELIB}/pandas/tests/frame/methods/test_reindex_like.pyc 1729${PYSITELIB}/pandas/tests/frame/methods/test_reindex_like.pyc
1439${PYSITELIB}/pandas/tests/frame/methods/test_reindex_like.pyo 1730${PYSITELIB}/pandas/tests/frame/methods/test_reindex_like.pyo
1440${PYSITELIB}/pandas/tests/frame/methods/test_rename.py 1731${PYSITELIB}/pandas/tests/frame/methods/test_rename.py
1441${PYSITELIB}/pandas/tests/frame/methods/test_rename.pyc 1732${PYSITELIB}/pandas/tests/frame/methods/test_rename.pyc
1442${PYSITELIB}/pandas/tests/frame/methods/test_rename.pyo 1733${PYSITELIB}/pandas/tests/frame/methods/test_rename.pyo
1443${PYSITELIB}/pandas/tests/frame/methods/test_rename_axis.py 1734${PYSITELIB}/pandas/tests/frame/methods/test_rename_axis.py
1444${PYSITELIB}/pandas/tests/frame/methods/test_rename_axis.pyc 1735${PYSITELIB}/pandas/tests/frame/methods/test_rename_axis.pyc
1445${PYSITELIB}/pandas/tests/frame/methods/test_rename_axis.pyo 1736${PYSITELIB}/pandas/tests/frame/methods/test_rename_axis.pyo
 1737${PYSITELIB}/pandas/tests/frame/methods/test_reorder_levels.py
 1738${PYSITELIB}/pandas/tests/frame/methods/test_reorder_levels.pyc
 1739${PYSITELIB}/pandas/tests/frame/methods/test_reorder_levels.pyo
1446${PYSITELIB}/pandas/tests/frame/methods/test_replace.py 1740${PYSITELIB}/pandas/tests/frame/methods/test_replace.py
1447${PYSITELIB}/pandas/tests/frame/methods/test_replace.pyc 1741${PYSITELIB}/pandas/tests/frame/methods/test_replace.pyc
1448${PYSITELIB}/pandas/tests/frame/methods/test_replace.pyo 1742${PYSITELIB}/pandas/tests/frame/methods/test_replace.pyo
1449${PYSITELIB}/pandas/tests/frame/methods/test_reset_index.py 1743${PYSITELIB}/pandas/tests/frame/methods/test_reset_index.py
1450${PYSITELIB}/pandas/tests/frame/methods/test_reset_index.pyc 1744${PYSITELIB}/pandas/tests/frame/methods/test_reset_index.pyc
1451${PYSITELIB}/pandas/tests/frame/methods/test_reset_index.pyo 1745${PYSITELIB}/pandas/tests/frame/methods/test_reset_index.pyo
1452${PYSITELIB}/pandas/tests/frame/methods/test_round.py 1746${PYSITELIB}/pandas/tests/frame/methods/test_round.py
1453${PYSITELIB}/pandas/tests/frame/methods/test_round.pyc 1747${PYSITELIB}/pandas/tests/frame/methods/test_round.pyc
1454${PYSITELIB}/pandas/tests/frame/methods/test_round.pyo 1748${PYSITELIB}/pandas/tests/frame/methods/test_round.pyo
 1749${PYSITELIB}/pandas/tests/frame/methods/test_sample.py
 1750${PYSITELIB}/pandas/tests/frame/methods/test_sample.pyc
 1751${PYSITELIB}/pandas/tests/frame/methods/test_sample.pyo
1455${PYSITELIB}/pandas/tests/frame/methods/test_select_dtypes.py 1752${PYSITELIB}/pandas/tests/frame/methods/test_select_dtypes.py
1456${PYSITELIB}/pandas/tests/frame/methods/test_select_dtypes.pyc 1753${PYSITELIB}/pandas/tests/frame/methods/test_select_dtypes.pyc
1457${PYSITELIB}/pandas/tests/frame/methods/test_select_dtypes.pyo 1754${PYSITELIB}/pandas/tests/frame/methods/test_select_dtypes.pyo
 1755${PYSITELIB}/pandas/tests/frame/methods/test_set_axis.py
 1756${PYSITELIB}/pandas/tests/frame/methods/test_set_axis.pyc
 1757${PYSITELIB}/pandas/tests/frame/methods/test_set_axis.pyo
1458${PYSITELIB}/pandas/tests/frame/methods/test_set_index.py 1758${PYSITELIB}/pandas/tests/frame/methods/test_set_index.py
1459${PYSITELIB}/pandas/tests/frame/methods/test_set_index.pyc 1759${PYSITELIB}/pandas/tests/frame/methods/test_set_index.pyc
1460${PYSITELIB}/pandas/tests/frame/methods/test_set_index.pyo 1760${PYSITELIB}/pandas/tests/frame/methods/test_set_index.pyo
1461${PYSITELIB}/pandas/tests/frame/methods/test_shift.py 1761${PYSITELIB}/pandas/tests/frame/methods/test_shift.py
1462${PYSITELIB}/pandas/tests/frame/methods/test_shift.pyc 1762${PYSITELIB}/pandas/tests/frame/methods/test_shift.pyc
1463${PYSITELIB}/pandas/tests/frame/methods/test_shift.pyo 1763${PYSITELIB}/pandas/tests/frame/methods/test_shift.pyo
1464${PYSITELIB}/pandas/tests/frame/methods/test_sort_index.py 1764${PYSITELIB}/pandas/tests/frame/methods/test_sort_index.py
1465${PYSITELIB}/pandas/tests/frame/methods/test_sort_index.pyc 1765${PYSITELIB}/pandas/tests/frame/methods/test_sort_index.pyc
1466${PYSITELIB}/pandas/tests/frame/methods/test_sort_index.pyo 1766${PYSITELIB}/pandas/tests/frame/methods/test_sort_index.pyo
1467${PYSITELIB}/pandas/tests/frame/methods/test_sort_values.py 1767${PYSITELIB}/pandas/tests/frame/methods/test_sort_values.py
1468${PYSITELIB}/pandas/tests/frame/methods/test_sort_values.pyc 1768${PYSITELIB}/pandas/tests/frame/methods/test_sort_values.pyc
1469${PYSITELIB}/pandas/tests/frame/methods/test_sort_values.pyo 1769${PYSITELIB}/pandas/tests/frame/methods/test_sort_values.pyo
1470${PYSITELIB}/pandas/tests/frame/methods/test_swapaxes.py 1770${PYSITELIB}/pandas/tests/frame/methods/test_swapaxes.py
@@ -1562,47 +1862,26 @@ ${PYSITELIB}/pandas/tests/frame/test_sub @@ -1562,47 +1862,26 @@ ${PYSITELIB}/pandas/tests/frame/test_sub
1562${PYSITELIB}/pandas/tests/frame/test_subclass.pyo 1862${PYSITELIB}/pandas/tests/frame/test_subclass.pyo
1563${PYSITELIB}/pandas/tests/frame/test_ufunc.py 1863${PYSITELIB}/pandas/tests/frame/test_ufunc.py
1564${PYSITELIB}/pandas/tests/frame/test_ufunc.pyc 1864${PYSITELIB}/pandas/tests/frame/test_ufunc.pyc
1565${PYSITELIB}/pandas/tests/frame/test_ufunc.pyo 1865${PYSITELIB}/pandas/tests/frame/test_ufunc.pyo
1566${PYSITELIB}/pandas/tests/frame/test_unary.py 1866${PYSITELIB}/pandas/tests/frame/test_unary.py
1567${PYSITELIB}/pandas/tests/frame/test_unary.pyc 1867${PYSITELIB}/pandas/tests/frame/test_unary.pyc
1568${PYSITELIB}/pandas/tests/frame/test_unary.pyo 1868${PYSITELIB}/pandas/tests/frame/test_unary.pyo
1569${PYSITELIB}/pandas/tests/frame/test_validate.py 1869${PYSITELIB}/pandas/tests/frame/test_validate.py
1570${PYSITELIB}/pandas/tests/frame/test_validate.pyc 1870${PYSITELIB}/pandas/tests/frame/test_validate.pyc
1571${PYSITELIB}/pandas/tests/frame/test_validate.pyo 1871${PYSITELIB}/pandas/tests/frame/test_validate.pyo
1572${PYSITELIB}/pandas/tests/generic/__init__.py 1872${PYSITELIB}/pandas/tests/generic/__init__.py
1573${PYSITELIB}/pandas/tests/generic/__init__.pyc 1873${PYSITELIB}/pandas/tests/generic/__init__.pyc
1574${PYSITELIB}/pandas/tests/generic/__init__.pyo 1874${PYSITELIB}/pandas/tests/generic/__init__.pyo
1575${PYSITELIB}/pandas/tests/generic/methods/__init__.py 
1576${PYSITELIB}/pandas/tests/generic/methods/__init__.pyc 
1577${PYSITELIB}/pandas/tests/generic/methods/__init__.pyo 
1578${PYSITELIB}/pandas/tests/generic/methods/test_dot.py 
1579${PYSITELIB}/pandas/tests/generic/methods/test_dot.pyc 
1580${PYSITELIB}/pandas/tests/generic/methods/test_dot.pyo 
1581${PYSITELIB}/pandas/tests/generic/methods/test_first_valid_index.py 
1582${PYSITELIB}/pandas/tests/generic/methods/test_first_valid_index.pyc 
1583${PYSITELIB}/pandas/tests/generic/methods/test_first_valid_index.pyo 
1584${PYSITELIB}/pandas/tests/generic/methods/test_pipe.py 
1585${PYSITELIB}/pandas/tests/generic/methods/test_pipe.pyc 
1586${PYSITELIB}/pandas/tests/generic/methods/test_pipe.pyo 
1587${PYSITELIB}/pandas/tests/generic/methods/test_reorder_levels.py 
1588${PYSITELIB}/pandas/tests/generic/methods/test_reorder_levels.pyc 
1589${PYSITELIB}/pandas/tests/generic/methods/test_reorder_levels.pyo 
1590${PYSITELIB}/pandas/tests/generic/methods/test_sample.py 
1591${PYSITELIB}/pandas/tests/generic/methods/test_sample.pyc 
1592${PYSITELIB}/pandas/tests/generic/methods/test_sample.pyo 
1593${PYSITELIB}/pandas/tests/generic/methods/test_set_axis.py 
1594${PYSITELIB}/pandas/tests/generic/methods/test_set_axis.pyc 
1595${PYSITELIB}/pandas/tests/generic/methods/test_set_axis.pyo 
1596${PYSITELIB}/pandas/tests/generic/test_duplicate_labels.py 1875${PYSITELIB}/pandas/tests/generic/test_duplicate_labels.py
1597${PYSITELIB}/pandas/tests/generic/test_duplicate_labels.pyc 1876${PYSITELIB}/pandas/tests/generic/test_duplicate_labels.pyc
1598${PYSITELIB}/pandas/tests/generic/test_duplicate_labels.pyo 1877${PYSITELIB}/pandas/tests/generic/test_duplicate_labels.pyo
1599${PYSITELIB}/pandas/tests/generic/test_finalize.py 1878${PYSITELIB}/pandas/tests/generic/test_finalize.py
1600${PYSITELIB}/pandas/tests/generic/test_finalize.pyc 1879${PYSITELIB}/pandas/tests/generic/test_finalize.pyc
1601${PYSITELIB}/pandas/tests/generic/test_finalize.pyo 1880${PYSITELIB}/pandas/tests/generic/test_finalize.pyo
1602${PYSITELIB}/pandas/tests/generic/test_frame.py 1881${PYSITELIB}/pandas/tests/generic/test_frame.py
1603${PYSITELIB}/pandas/tests/generic/test_frame.pyc 1882${PYSITELIB}/pandas/tests/generic/test_frame.pyc
1604${PYSITELIB}/pandas/tests/generic/test_frame.pyo 1883${PYSITELIB}/pandas/tests/generic/test_frame.pyo
1605${PYSITELIB}/pandas/tests/generic/test_generic.py 1884${PYSITELIB}/pandas/tests/generic/test_generic.py
1606${PYSITELIB}/pandas/tests/generic/test_generic.pyc 1885${PYSITELIB}/pandas/tests/generic/test_generic.pyc
1607${PYSITELIB}/pandas/tests/generic/test_generic.pyo 1886${PYSITELIB}/pandas/tests/generic/test_generic.pyo
1608${PYSITELIB}/pandas/tests/generic/test_label_or_level_utils.py 1887${PYSITELIB}/pandas/tests/generic/test_label_or_level_utils.py
@@ -1628,26 +1907,29 @@ ${PYSITELIB}/pandas/tests/groupby/aggreg @@ -1628,26 +1907,29 @@ ${PYSITELIB}/pandas/tests/groupby/aggreg
1628${PYSITELIB}/pandas/tests/groupby/aggregate/test_cython.pyo 1907${PYSITELIB}/pandas/tests/groupby/aggregate/test_cython.pyo
1629${PYSITELIB}/pandas/tests/groupby/aggregate/test_numba.py 1908${PYSITELIB}/pandas/tests/groupby/aggregate/test_numba.py
1630${PYSITELIB}/pandas/tests/groupby/aggregate/test_numba.pyc 1909${PYSITELIB}/pandas/tests/groupby/aggregate/test_numba.pyc
1631${PYSITELIB}/pandas/tests/groupby/aggregate/test_numba.pyo 1910${PYSITELIB}/pandas/tests/groupby/aggregate/test_numba.pyo
1632${PYSITELIB}/pandas/tests/groupby/aggregate/test_other.py 1911${PYSITELIB}/pandas/tests/groupby/aggregate/test_other.py
1633${PYSITELIB}/pandas/tests/groupby/aggregate/test_other.pyc 1912${PYSITELIB}/pandas/tests/groupby/aggregate/test_other.pyc
1634${PYSITELIB}/pandas/tests/groupby/aggregate/test_other.pyo 1913${PYSITELIB}/pandas/tests/groupby/aggregate/test_other.pyo
1635${PYSITELIB}/pandas/tests/groupby/conftest.py 1914${PYSITELIB}/pandas/tests/groupby/conftest.py
1636${PYSITELIB}/pandas/tests/groupby/conftest.pyc 1915${PYSITELIB}/pandas/tests/groupby/conftest.pyc
1637${PYSITELIB}/pandas/tests/groupby/conftest.pyo 1916${PYSITELIB}/pandas/tests/groupby/conftest.pyo
1638${PYSITELIB}/pandas/tests/groupby/test_allowlist.py 1917${PYSITELIB}/pandas/tests/groupby/test_allowlist.py
1639${PYSITELIB}/pandas/tests/groupby/test_allowlist.pyc 1918${PYSITELIB}/pandas/tests/groupby/test_allowlist.pyc
1640${PYSITELIB}/pandas/tests/groupby/test_allowlist.pyo 1919${PYSITELIB}/pandas/tests/groupby/test_allowlist.pyo
 1920${PYSITELIB}/pandas/tests/groupby/test_any_all.py
 1921${PYSITELIB}/pandas/tests/groupby/test_any_all.pyc
 1922${PYSITELIB}/pandas/tests/groupby/test_any_all.pyo
1641${PYSITELIB}/pandas/tests/groupby/test_apply.py 1923${PYSITELIB}/pandas/tests/groupby/test_apply.py
1642${PYSITELIB}/pandas/tests/groupby/test_apply.pyc 1924${PYSITELIB}/pandas/tests/groupby/test_apply.pyc
1643${PYSITELIB}/pandas/tests/groupby/test_apply.pyo 1925${PYSITELIB}/pandas/tests/groupby/test_apply.pyo
1644${PYSITELIB}/pandas/tests/groupby/test_apply_mutate.py 1926${PYSITELIB}/pandas/tests/groupby/test_apply_mutate.py
1645${PYSITELIB}/pandas/tests/groupby/test_apply_mutate.pyc 1927${PYSITELIB}/pandas/tests/groupby/test_apply_mutate.pyc
1646${PYSITELIB}/pandas/tests/groupby/test_apply_mutate.pyo 1928${PYSITELIB}/pandas/tests/groupby/test_apply_mutate.pyo
1647${PYSITELIB}/pandas/tests/groupby/test_bin_groupby.py 1929${PYSITELIB}/pandas/tests/groupby/test_bin_groupby.py
1648${PYSITELIB}/pandas/tests/groupby/test_bin_groupby.pyc 1930${PYSITELIB}/pandas/tests/groupby/test_bin_groupby.pyc
1649${PYSITELIB}/pandas/tests/groupby/test_bin_groupby.pyo 1931${PYSITELIB}/pandas/tests/groupby/test_bin_groupby.pyo
1650${PYSITELIB}/pandas/tests/groupby/test_categorical.py 1932${PYSITELIB}/pandas/tests/groupby/test_categorical.py
1651${PYSITELIB}/pandas/tests/groupby/test_categorical.pyc 1933${PYSITELIB}/pandas/tests/groupby/test_categorical.pyc
1652${PYSITELIB}/pandas/tests/groupby/test_categorical.pyo 1934${PYSITELIB}/pandas/tests/groupby/test_categorical.pyo
1653${PYSITELIB}/pandas/tests/groupby/test_counting.py 1935${PYSITELIB}/pandas/tests/groupby/test_counting.py
@@ -1670,26 +1952,29 @@ ${PYSITELIB}/pandas/tests/groupby/test_g @@ -1670,26 +1952,29 @@ ${PYSITELIB}/pandas/tests/groupby/test_g
1670${PYSITELIB}/pandas/tests/groupby/test_groupby_shift_diff.pyo 1952${PYSITELIB}/pandas/tests/groupby/test_groupby_shift_diff.pyo
1671${PYSITELIB}/pandas/tests/groupby/test_groupby_subclass.py 1953${PYSITELIB}/pandas/tests/groupby/test_groupby_subclass.py
1672${PYSITELIB}/pandas/tests/groupby/test_groupby_subclass.pyc 1954${PYSITELIB}/pandas/tests/groupby/test_groupby_subclass.pyc
1673${PYSITELIB}/pandas/tests/groupby/test_groupby_subclass.pyo 1955${PYSITELIB}/pandas/tests/groupby/test_groupby_subclass.pyo
1674${PYSITELIB}/pandas/tests/groupby/test_grouping.py 1956${PYSITELIB}/pandas/tests/groupby/test_grouping.py
1675${PYSITELIB}/pandas/tests/groupby/test_grouping.pyc 1957${PYSITELIB}/pandas/tests/groupby/test_grouping.pyc
1676${PYSITELIB}/pandas/tests/groupby/test_grouping.pyo 1958${PYSITELIB}/pandas/tests/groupby/test_grouping.pyo
1677${PYSITELIB}/pandas/tests/groupby/test_index_as_string.py 1959${PYSITELIB}/pandas/tests/groupby/test_index_as_string.py
1678${PYSITELIB}/pandas/tests/groupby/test_index_as_string.pyc 1960${PYSITELIB}/pandas/tests/groupby/test_index_as_string.pyc
1679${PYSITELIB}/pandas/tests/groupby/test_index_as_string.pyo 1961${PYSITELIB}/pandas/tests/groupby/test_index_as_string.pyo
1680${PYSITELIB}/pandas/tests/groupby/test_libgroupby.py 1962${PYSITELIB}/pandas/tests/groupby/test_libgroupby.py
1681${PYSITELIB}/pandas/tests/groupby/test_libgroupby.pyc 1963${PYSITELIB}/pandas/tests/groupby/test_libgroupby.pyc
1682${PYSITELIB}/pandas/tests/groupby/test_libgroupby.pyo 1964${PYSITELIB}/pandas/tests/groupby/test_libgroupby.pyo
 1965${PYSITELIB}/pandas/tests/groupby/test_min_max.py
 1966${PYSITELIB}/pandas/tests/groupby/test_min_max.pyc
 1967${PYSITELIB}/pandas/tests/groupby/test_min_max.pyo
1683${PYSITELIB}/pandas/tests/groupby/test_missing.py 1968${PYSITELIB}/pandas/tests/groupby/test_missing.py
1684${PYSITELIB}/pandas/tests/groupby/test_missing.pyc 1969${PYSITELIB}/pandas/tests/groupby/test_missing.pyc
1685${PYSITELIB}/pandas/tests/groupby/test_missing.pyo 1970${PYSITELIB}/pandas/tests/groupby/test_missing.pyo
1686${PYSITELIB}/pandas/tests/groupby/test_nth.py 1971${PYSITELIB}/pandas/tests/groupby/test_nth.py
1687${PYSITELIB}/pandas/tests/groupby/test_nth.pyc 1972${PYSITELIB}/pandas/tests/groupby/test_nth.pyc
1688${PYSITELIB}/pandas/tests/groupby/test_nth.pyo 1973${PYSITELIB}/pandas/tests/groupby/test_nth.pyo
1689${PYSITELIB}/pandas/tests/groupby/test_nunique.py 1974${PYSITELIB}/pandas/tests/groupby/test_nunique.py
1690${PYSITELIB}/pandas/tests/groupby/test_nunique.pyc 1975${PYSITELIB}/pandas/tests/groupby/test_nunique.pyc
1691${PYSITELIB}/pandas/tests/groupby/test_nunique.pyo 1976${PYSITELIB}/pandas/tests/groupby/test_nunique.pyo
1692${PYSITELIB}/pandas/tests/groupby/test_pipe.py 1977${PYSITELIB}/pandas/tests/groupby/test_pipe.py
1693${PYSITELIB}/pandas/tests/groupby/test_pipe.pyc 1978${PYSITELIB}/pandas/tests/groupby/test_pipe.pyc
1694${PYSITELIB}/pandas/tests/groupby/test_pipe.pyo 1979${PYSITELIB}/pandas/tests/groupby/test_pipe.pyo
1695${PYSITELIB}/pandas/tests/groupby/test_quantile.py 1980${PYSITELIB}/pandas/tests/groupby/test_quantile.py
@@ -1736,26 +2021,29 @@ ${PYSITELIB}/pandas/tests/indexes/base_c @@ -1736,26 +2021,29 @@ ${PYSITELIB}/pandas/tests/indexes/base_c
1736${PYSITELIB}/pandas/tests/indexes/base_class/test_indexing.pyo 2021${PYSITELIB}/pandas/tests/indexes/base_class/test_indexing.pyo
1737${PYSITELIB}/pandas/tests/indexes/base_class/test_reshape.py 2022${PYSITELIB}/pandas/tests/indexes/base_class/test_reshape.py
1738${PYSITELIB}/pandas/tests/indexes/base_class/test_reshape.pyc 2023${PYSITELIB}/pandas/tests/indexes/base_class/test_reshape.pyc
1739${PYSITELIB}/pandas/tests/indexes/base_class/test_reshape.pyo 2024${PYSITELIB}/pandas/tests/indexes/base_class/test_reshape.pyo
1740${PYSITELIB}/pandas/tests/indexes/base_class/test_setops.py 2025${PYSITELIB}/pandas/tests/indexes/base_class/test_setops.py
1741${PYSITELIB}/pandas/tests/indexes/base_class/test_setops.pyc 2026${PYSITELIB}/pandas/tests/indexes/base_class/test_setops.pyc
1742${PYSITELIB}/pandas/tests/indexes/base_class/test_setops.pyo 2027${PYSITELIB}/pandas/tests/indexes/base_class/test_setops.pyo
1743${PYSITELIB}/pandas/tests/indexes/base_class/test_where.py 2028${PYSITELIB}/pandas/tests/indexes/base_class/test_where.py
1744${PYSITELIB}/pandas/tests/indexes/base_class/test_where.pyc 2029${PYSITELIB}/pandas/tests/indexes/base_class/test_where.pyc
1745${PYSITELIB}/pandas/tests/indexes/base_class/test_where.pyo 2030${PYSITELIB}/pandas/tests/indexes/base_class/test_where.pyo
1746${PYSITELIB}/pandas/tests/indexes/categorical/__init__.py 2031${PYSITELIB}/pandas/tests/indexes/categorical/__init__.py
1747${PYSITELIB}/pandas/tests/indexes/categorical/__init__.pyc 2032${PYSITELIB}/pandas/tests/indexes/categorical/__init__.pyc
1748${PYSITELIB}/pandas/tests/indexes/categorical/__init__.pyo 2033${PYSITELIB}/pandas/tests/indexes/categorical/__init__.pyo
 2034${PYSITELIB}/pandas/tests/indexes/categorical/test_append.py
 2035${PYSITELIB}/pandas/tests/indexes/categorical/test_append.pyc
 2036${PYSITELIB}/pandas/tests/indexes/categorical/test_append.pyo
1749${PYSITELIB}/pandas/tests/indexes/categorical/test_astype.py 2037${PYSITELIB}/pandas/tests/indexes/categorical/test_astype.py
1750${PYSITELIB}/pandas/tests/indexes/categorical/test_astype.pyc 2038${PYSITELIB}/pandas/tests/indexes/categorical/test_astype.pyc
1751${PYSITELIB}/pandas/tests/indexes/categorical/test_astype.pyo 2039${PYSITELIB}/pandas/tests/indexes/categorical/test_astype.pyo
1752${PYSITELIB}/pandas/tests/indexes/categorical/test_category.py 2040${PYSITELIB}/pandas/tests/indexes/categorical/test_category.py
1753${PYSITELIB}/pandas/tests/indexes/categorical/test_category.pyc 2041${PYSITELIB}/pandas/tests/indexes/categorical/test_category.pyc
1754${PYSITELIB}/pandas/tests/indexes/categorical/test_category.pyo 2042${PYSITELIB}/pandas/tests/indexes/categorical/test_category.pyo
1755${PYSITELIB}/pandas/tests/indexes/categorical/test_constructors.py 2043${PYSITELIB}/pandas/tests/indexes/categorical/test_constructors.py
1756${PYSITELIB}/pandas/tests/indexes/categorical/test_constructors.pyc 2044${PYSITELIB}/pandas/tests/indexes/categorical/test_constructors.pyc
1757${PYSITELIB}/pandas/tests/indexes/categorical/test_constructors.pyo 2045${PYSITELIB}/pandas/tests/indexes/categorical/test_constructors.pyo
1758${PYSITELIB}/pandas/tests/indexes/categorical/test_equals.py 2046${PYSITELIB}/pandas/tests/indexes/categorical/test_equals.py
1759${PYSITELIB}/pandas/tests/indexes/categorical/test_equals.pyc 2047${PYSITELIB}/pandas/tests/indexes/categorical/test_equals.pyc
1760${PYSITELIB}/pandas/tests/indexes/categorical/test_equals.pyo 2048${PYSITELIB}/pandas/tests/indexes/categorical/test_equals.pyo
1761${PYSITELIB}/pandas/tests/indexes/categorical/test_fillna.py 2049${PYSITELIB}/pandas/tests/indexes/categorical/test_fillna.py
@@ -1772,95 +2060,143 @@ ${PYSITELIB}/pandas/tests/indexes/catego @@ -1772,95 +2060,143 @@ ${PYSITELIB}/pandas/tests/indexes/catego
1772${PYSITELIB}/pandas/tests/indexes/categorical/test_map.pyo 2060${PYSITELIB}/pandas/tests/indexes/categorical/test_map.pyo
1773${PYSITELIB}/pandas/tests/indexes/categorical/test_reindex.py 2061${PYSITELIB}/pandas/tests/indexes/categorical/test_reindex.py
1774${PYSITELIB}/pandas/tests/indexes/categorical/test_reindex.pyc 2062${PYSITELIB}/pandas/tests/indexes/categorical/test_reindex.pyc
1775${PYSITELIB}/pandas/tests/indexes/categorical/test_reindex.pyo 2063${PYSITELIB}/pandas/tests/indexes/categorical/test_reindex.pyo
1776${PYSITELIB}/pandas/tests/indexes/common.py 2064${PYSITELIB}/pandas/tests/indexes/common.py
1777${PYSITELIB}/pandas/tests/indexes/common.pyc 2065${PYSITELIB}/pandas/tests/indexes/common.pyc
1778${PYSITELIB}/pandas/tests/indexes/common.pyo 2066${PYSITELIB}/pandas/tests/indexes/common.pyo
1779${PYSITELIB}/pandas/tests/indexes/conftest.py 2067${PYSITELIB}/pandas/tests/indexes/conftest.py
1780${PYSITELIB}/pandas/tests/indexes/conftest.pyc 2068${PYSITELIB}/pandas/tests/indexes/conftest.pyc
1781${PYSITELIB}/pandas/tests/indexes/conftest.pyo 2069${PYSITELIB}/pandas/tests/indexes/conftest.pyo
1782${PYSITELIB}/pandas/tests/indexes/datetimelike.py 2070${PYSITELIB}/pandas/tests/indexes/datetimelike.py
1783${PYSITELIB}/pandas/tests/indexes/datetimelike.pyc 2071${PYSITELIB}/pandas/tests/indexes/datetimelike.pyc
1784${PYSITELIB}/pandas/tests/indexes/datetimelike.pyo 2072${PYSITELIB}/pandas/tests/indexes/datetimelike.pyo
 2073${PYSITELIB}/pandas/tests/indexes/datetimelike_/__init__.py
 2074${PYSITELIB}/pandas/tests/indexes/datetimelike_/__init__.pyc
 2075${PYSITELIB}/pandas/tests/indexes/datetimelike_/__init__.pyo
 2076${PYSITELIB}/pandas/tests/indexes/datetimelike_/test_drop_duplicates.py
 2077${PYSITELIB}/pandas/tests/indexes/datetimelike_/test_drop_duplicates.pyc
 2078${PYSITELIB}/pandas/tests/indexes/datetimelike_/test_drop_duplicates.pyo
 2079${PYSITELIB}/pandas/tests/indexes/datetimelike_/test_equals.py
 2080${PYSITELIB}/pandas/tests/indexes/datetimelike_/test_equals.pyc
 2081${PYSITELIB}/pandas/tests/indexes/datetimelike_/test_equals.pyo
 2082${PYSITELIB}/pandas/tests/indexes/datetimelike_/test_indexing.py
 2083${PYSITELIB}/pandas/tests/indexes/datetimelike_/test_indexing.pyc
 2084${PYSITELIB}/pandas/tests/indexes/datetimelike_/test_indexing.pyo
 2085${PYSITELIB}/pandas/tests/indexes/datetimelike_/test_nat.py
 2086${PYSITELIB}/pandas/tests/indexes/datetimelike_/test_nat.pyc
 2087${PYSITELIB}/pandas/tests/indexes/datetimelike_/test_nat.pyo
 2088${PYSITELIB}/pandas/tests/indexes/datetimelike_/test_sort_values.py
 2089${PYSITELIB}/pandas/tests/indexes/datetimelike_/test_sort_values.pyc
 2090${PYSITELIB}/pandas/tests/indexes/datetimelike_/test_sort_values.pyo
 2091${PYSITELIB}/pandas/tests/indexes/datetimelike_/test_value_counts.py
 2092${PYSITELIB}/pandas/tests/indexes/datetimelike_/test_value_counts.pyc
 2093${PYSITELIB}/pandas/tests/indexes/datetimelike_/test_value_counts.pyo
1785${PYSITELIB}/pandas/tests/indexes/datetimes/__init__.py 2094${PYSITELIB}/pandas/tests/indexes/datetimes/__init__.py
1786${PYSITELIB}/pandas/tests/indexes/datetimes/__init__.pyc 2095${PYSITELIB}/pandas/tests/indexes/datetimes/__init__.pyc
1787${PYSITELIB}/pandas/tests/indexes/datetimes/__init__.pyo 2096${PYSITELIB}/pandas/tests/indexes/datetimes/__init__.pyo
1788${PYSITELIB}/pandas/tests/indexes/datetimes/test_astype.py 2097${PYSITELIB}/pandas/tests/indexes/datetimes/methods/__init__.py
1789${PYSITELIB}/pandas/tests/indexes/datetimes/test_astype.pyc 2098${PYSITELIB}/pandas/tests/indexes/datetimes/methods/__init__.pyc
1790${PYSITELIB}/pandas/tests/indexes/datetimes/test_astype.pyo 2099${PYSITELIB}/pandas/tests/indexes/datetimes/methods/__init__.pyo
 2100${PYSITELIB}/pandas/tests/indexes/datetimes/methods/test_astype.py
 2101${PYSITELIB}/pandas/tests/indexes/datetimes/methods/test_astype.pyc
 2102${PYSITELIB}/pandas/tests/indexes/datetimes/methods/test_astype.pyo
 2103${PYSITELIB}/pandas/tests/indexes/datetimes/methods/test_factorize.py
 2104${PYSITELIB}/pandas/tests/indexes/datetimes/methods/test_factorize.pyc
 2105${PYSITELIB}/pandas/tests/indexes/datetimes/methods/test_factorize.pyo
 2106${PYSITELIB}/pandas/tests/indexes/datetimes/methods/test_fillna.py
 2107${PYSITELIB}/pandas/tests/indexes/datetimes/methods/test_fillna.pyc
 2108${PYSITELIB}/pandas/tests/indexes/datetimes/methods/test_fillna.pyo
 2109${PYSITELIB}/pandas/tests/indexes/datetimes/methods/test_insert.py
 2110${PYSITELIB}/pandas/tests/indexes/datetimes/methods/test_insert.pyc
 2111${PYSITELIB}/pandas/tests/indexes/datetimes/methods/test_insert.pyo
 2112${PYSITELIB}/pandas/tests/indexes/datetimes/methods/test_repeat.py
 2113${PYSITELIB}/pandas/tests/indexes/datetimes/methods/test_repeat.pyc
 2114${PYSITELIB}/pandas/tests/indexes/datetimes/methods/test_repeat.pyo
 2115${PYSITELIB}/pandas/tests/indexes/datetimes/methods/test_shift.py
 2116${PYSITELIB}/pandas/tests/indexes/datetimes/methods/test_shift.pyc
 2117${PYSITELIB}/pandas/tests/indexes/datetimes/methods/test_shift.pyo
 2118${PYSITELIB}/pandas/tests/indexes/datetimes/methods/test_snap.py
 2119${PYSITELIB}/pandas/tests/indexes/datetimes/methods/test_snap.pyc
 2120${PYSITELIB}/pandas/tests/indexes/datetimes/methods/test_snap.pyo
 2121${PYSITELIB}/pandas/tests/indexes/datetimes/methods/test_to_frame.py
 2122${PYSITELIB}/pandas/tests/indexes/datetimes/methods/test_to_frame.pyc
 2123${PYSITELIB}/pandas/tests/indexes/datetimes/methods/test_to_frame.pyo
 2124${PYSITELIB}/pandas/tests/indexes/datetimes/methods/test_to_period.py
 2125${PYSITELIB}/pandas/tests/indexes/datetimes/methods/test_to_period.pyc
 2126${PYSITELIB}/pandas/tests/indexes/datetimes/methods/test_to_period.pyo
 2127${PYSITELIB}/pandas/tests/indexes/datetimes/methods/test_to_series.py
 2128${PYSITELIB}/pandas/tests/indexes/datetimes/methods/test_to_series.pyc
 2129${PYSITELIB}/pandas/tests/indexes/datetimes/methods/test_to_series.pyo
 2130${PYSITELIB}/pandas/tests/indexes/datetimes/test_asof.py
 2131${PYSITELIB}/pandas/tests/indexes/datetimes/test_asof.pyc
 2132${PYSITELIB}/pandas/tests/indexes/datetimes/test_asof.pyo
1791${PYSITELIB}/pandas/tests/indexes/datetimes/test_constructors.py 2133${PYSITELIB}/pandas/tests/indexes/datetimes/test_constructors.py
1792${PYSITELIB}/pandas/tests/indexes/datetimes/test_constructors.pyc 2134${PYSITELIB}/pandas/tests/indexes/datetimes/test_constructors.pyc
1793${PYSITELIB}/pandas/tests/indexes/datetimes/test_constructors.pyo 2135${PYSITELIB}/pandas/tests/indexes/datetimes/test_constructors.pyo
1794${PYSITELIB}/pandas/tests/indexes/datetimes/test_date_range.py 2136${PYSITELIB}/pandas/tests/indexes/datetimes/test_date_range.py
1795${PYSITELIB}/pandas/tests/indexes/datetimes/test_date_range.pyc 2137${PYSITELIB}/pandas/tests/indexes/datetimes/test_date_range.pyc
1796${PYSITELIB}/pandas/tests/indexes/datetimes/test_date_range.pyo 2138${PYSITELIB}/pandas/tests/indexes/datetimes/test_date_range.pyo
1797${PYSITELIB}/pandas/tests/indexes/datetimes/test_datetime.py 2139${PYSITELIB}/pandas/tests/indexes/datetimes/test_datetime.py
1798${PYSITELIB}/pandas/tests/indexes/datetimes/test_datetime.pyc 2140${PYSITELIB}/pandas/tests/indexes/datetimes/test_datetime.pyc
1799${PYSITELIB}/pandas/tests/indexes/datetimes/test_datetime.pyo 2141${PYSITELIB}/pandas/tests/indexes/datetimes/test_datetime.pyo
1800${PYSITELIB}/pandas/tests/indexes/datetimes/test_datetimelike.py 2142${PYSITELIB}/pandas/tests/indexes/datetimes/test_datetimelike.py
1801${PYSITELIB}/pandas/tests/indexes/datetimes/test_datetimelike.pyc 2143${PYSITELIB}/pandas/tests/indexes/datetimes/test_datetimelike.pyc
1802${PYSITELIB}/pandas/tests/indexes/datetimes/test_datetimelike.pyo 2144${PYSITELIB}/pandas/tests/indexes/datetimes/test_datetimelike.pyo
1803${PYSITELIB}/pandas/tests/indexes/datetimes/test_delete.py 2145${PYSITELIB}/pandas/tests/indexes/datetimes/test_delete.py
1804${PYSITELIB}/pandas/tests/indexes/datetimes/test_delete.pyc 2146${PYSITELIB}/pandas/tests/indexes/datetimes/test_delete.pyc
1805${PYSITELIB}/pandas/tests/indexes/datetimes/test_delete.pyo 2147${PYSITELIB}/pandas/tests/indexes/datetimes/test_delete.pyo
1806${PYSITELIB}/pandas/tests/indexes/datetimes/test_fillna.py 
1807${PYSITELIB}/pandas/tests/indexes/datetimes/test_fillna.pyc 
1808${PYSITELIB}/pandas/tests/indexes/datetimes/test_fillna.pyo 
1809${PYSITELIB}/pandas/tests/indexes/datetimes/test_formats.py 2148${PYSITELIB}/pandas/tests/indexes/datetimes/test_formats.py
1810${PYSITELIB}/pandas/tests/indexes/datetimes/test_formats.pyc 2149${PYSITELIB}/pandas/tests/indexes/datetimes/test_formats.pyc
1811${PYSITELIB}/pandas/tests/indexes/datetimes/test_formats.pyo 2150${PYSITELIB}/pandas/tests/indexes/datetimes/test_formats.pyo
1812${PYSITELIB}/pandas/tests/indexes/datetimes/test_indexing.py 2151${PYSITELIB}/pandas/tests/indexes/datetimes/test_indexing.py
1813${PYSITELIB}/pandas/tests/indexes/datetimes/test_indexing.pyc 2152${PYSITELIB}/pandas/tests/indexes/datetimes/test_indexing.pyc
1814${PYSITELIB}/pandas/tests/indexes/datetimes/test_indexing.pyo 2153${PYSITELIB}/pandas/tests/indexes/datetimes/test_indexing.pyo
1815${PYSITELIB}/pandas/tests/indexes/datetimes/test_insert.py 
1816${PYSITELIB}/pandas/tests/indexes/datetimes/test_insert.pyc 
1817${PYSITELIB}/pandas/tests/indexes/datetimes/test_insert.pyo 
1818${PYSITELIB}/pandas/tests/indexes/datetimes/test_join.py 2154${PYSITELIB}/pandas/tests/indexes/datetimes/test_join.py
1819${PYSITELIB}/pandas/tests/indexes/datetimes/test_join.pyc 2155${PYSITELIB}/pandas/tests/indexes/datetimes/test_join.pyc
1820${PYSITELIB}/pandas/tests/indexes/datetimes/test_join.pyo 2156${PYSITELIB}/pandas/tests/indexes/datetimes/test_join.pyo
1821${PYSITELIB}/pandas/tests/indexes/datetimes/test_map.py 2157${PYSITELIB}/pandas/tests/indexes/datetimes/test_map.py
1822${PYSITELIB}/pandas/tests/indexes/datetimes/test_map.pyc 2158${PYSITELIB}/pandas/tests/indexes/datetimes/test_map.pyc
1823${PYSITELIB}/pandas/tests/indexes/datetimes/test_map.pyo 2159${PYSITELIB}/pandas/tests/indexes/datetimes/test_map.pyo
1824${PYSITELIB}/pandas/tests/indexes/datetimes/test_misc.py 2160${PYSITELIB}/pandas/tests/indexes/datetimes/test_misc.py
1825${PYSITELIB}/pandas/tests/indexes/datetimes/test_misc.pyc 2161${PYSITELIB}/pandas/tests/indexes/datetimes/test_misc.pyc
1826${PYSITELIB}/pandas/tests/indexes/datetimes/test_misc.pyo 2162${PYSITELIB}/pandas/tests/indexes/datetimes/test_misc.pyo
 2163${PYSITELIB}/pandas/tests/indexes/datetimes/test_npfuncs.py
 2164${PYSITELIB}/pandas/tests/indexes/datetimes/test_npfuncs.pyc
 2165${PYSITELIB}/pandas/tests/indexes/datetimes/test_npfuncs.pyo
1827${PYSITELIB}/pandas/tests/indexes/datetimes/test_ops.py 2166${PYSITELIB}/pandas/tests/indexes/datetimes/test_ops.py
1828${PYSITELIB}/pandas/tests/indexes/datetimes/test_ops.pyc 2167${PYSITELIB}/pandas/tests/indexes/datetimes/test_ops.pyc
1829${PYSITELIB}/pandas/tests/indexes/datetimes/test_ops.pyo 2168${PYSITELIB}/pandas/tests/indexes/datetimes/test_ops.pyo
1830${PYSITELIB}/pandas/tests/indexes/datetimes/test_partial_slicing.py 2169${PYSITELIB}/pandas/tests/indexes/datetimes/test_partial_slicing.py
1831${PYSITELIB}/pandas/tests/indexes/datetimes/test_partial_slicing.pyc 2170${PYSITELIB}/pandas/tests/indexes/datetimes/test_partial_slicing.pyc
1832${PYSITELIB}/pandas/tests/indexes/datetimes/test_partial_slicing.pyo 2171${PYSITELIB}/pandas/tests/indexes/datetimes/test_partial_slicing.pyo
1833${PYSITELIB}/pandas/tests/indexes/datetimes/test_pickle.py 2172${PYSITELIB}/pandas/tests/indexes/datetimes/test_pickle.py
1834${PYSITELIB}/pandas/tests/indexes/datetimes/test_pickle.pyc 2173${PYSITELIB}/pandas/tests/indexes/datetimes/test_pickle.pyc
1835${PYSITELIB}/pandas/tests/indexes/datetimes/test_pickle.pyo 2174${PYSITELIB}/pandas/tests/indexes/datetimes/test_pickle.pyo
 2175${PYSITELIB}/pandas/tests/indexes/datetimes/test_reindex.py
 2176${PYSITELIB}/pandas/tests/indexes/datetimes/test_reindex.pyc
 2177${PYSITELIB}/pandas/tests/indexes/datetimes/test_reindex.pyo
1836${PYSITELIB}/pandas/tests/indexes/datetimes/test_scalar_compat.py 2178${PYSITELIB}/pandas/tests/indexes/datetimes/test_scalar_compat.py
1837${PYSITELIB}/pandas/tests/indexes/datetimes/test_scalar_compat.pyc 2179${PYSITELIB}/pandas/tests/indexes/datetimes/test_scalar_compat.pyc
1838${PYSITELIB}/pandas/tests/indexes/datetimes/test_scalar_compat.pyo 2180${PYSITELIB}/pandas/tests/indexes/datetimes/test_scalar_compat.pyo
1839${PYSITELIB}/pandas/tests/indexes/datetimes/test_setops.py 2181${PYSITELIB}/pandas/tests/indexes/datetimes/test_setops.py
1840${PYSITELIB}/pandas/tests/indexes/datetimes/test_setops.pyc 2182${PYSITELIB}/pandas/tests/indexes/datetimes/test_setops.pyc
1841${PYSITELIB}/pandas/tests/indexes/datetimes/test_setops.pyo 2183${PYSITELIB}/pandas/tests/indexes/datetimes/test_setops.pyo
1842${PYSITELIB}/pandas/tests/indexes/datetimes/test_shift.py 
1843${PYSITELIB}/pandas/tests/indexes/datetimes/test_shift.pyc 
1844${PYSITELIB}/pandas/tests/indexes/datetimes/test_shift.pyo 
1845${PYSITELIB}/pandas/tests/indexes/datetimes/test_snap.py 
1846${PYSITELIB}/pandas/tests/indexes/datetimes/test_snap.pyc 
1847${PYSITELIB}/pandas/tests/indexes/datetimes/test_snap.pyo 
1848${PYSITELIB}/pandas/tests/indexes/datetimes/test_timezones.py 2184${PYSITELIB}/pandas/tests/indexes/datetimes/test_timezones.py
1849${PYSITELIB}/pandas/tests/indexes/datetimes/test_timezones.pyc 2185${PYSITELIB}/pandas/tests/indexes/datetimes/test_timezones.pyc
1850${PYSITELIB}/pandas/tests/indexes/datetimes/test_timezones.pyo 2186${PYSITELIB}/pandas/tests/indexes/datetimes/test_timezones.pyo
1851${PYSITELIB}/pandas/tests/indexes/datetimes/test_to_period.py 2187${PYSITELIB}/pandas/tests/indexes/datetimes/test_unique.py
1852${PYSITELIB}/pandas/tests/indexes/datetimes/test_to_period.pyc 2188${PYSITELIB}/pandas/tests/indexes/datetimes/test_unique.pyc
1853${PYSITELIB}/pandas/tests/indexes/datetimes/test_to_period.pyo 2189${PYSITELIB}/pandas/tests/indexes/datetimes/test_unique.pyo
1854${PYSITELIB}/pandas/tests/indexes/interval/__init__.py 2190${PYSITELIB}/pandas/tests/indexes/interval/__init__.py
1855${PYSITELIB}/pandas/tests/indexes/interval/__init__.pyc 2191${PYSITELIB}/pandas/tests/indexes/interval/__init__.pyc
1856${PYSITELIB}/pandas/tests/indexes/interval/__init__.pyo 2192${PYSITELIB}/pandas/tests/indexes/interval/__init__.pyo
1857${PYSITELIB}/pandas/tests/indexes/interval/test_astype.py 2193${PYSITELIB}/pandas/tests/indexes/interval/test_astype.py
1858${PYSITELIB}/pandas/tests/indexes/interval/test_astype.pyc 2194${PYSITELIB}/pandas/tests/indexes/interval/test_astype.pyc
1859${PYSITELIB}/pandas/tests/indexes/interval/test_astype.pyo 2195${PYSITELIB}/pandas/tests/indexes/interval/test_astype.pyo
1860${PYSITELIB}/pandas/tests/indexes/interval/test_base.py 2196${PYSITELIB}/pandas/tests/indexes/interval/test_base.py
1861${PYSITELIB}/pandas/tests/indexes/interval/test_base.pyc 2197${PYSITELIB}/pandas/tests/indexes/interval/test_base.pyc
1862${PYSITELIB}/pandas/tests/indexes/interval/test_base.pyo 2198${PYSITELIB}/pandas/tests/indexes/interval/test_base.pyo
1863${PYSITELIB}/pandas/tests/indexes/interval/test_constructors.py 2199${PYSITELIB}/pandas/tests/indexes/interval/test_constructors.py
1864${PYSITELIB}/pandas/tests/indexes/interval/test_constructors.pyc 2200${PYSITELIB}/pandas/tests/indexes/interval/test_constructors.pyc
1865${PYSITELIB}/pandas/tests/indexes/interval/test_constructors.pyo 2201${PYSITELIB}/pandas/tests/indexes/interval/test_constructors.pyo
1866${PYSITELIB}/pandas/tests/indexes/interval/test_equals.py 2202${PYSITELIB}/pandas/tests/indexes/interval/test_equals.py
@@ -1970,47 +2306,77 @@ ${PYSITELIB}/pandas/tests/indexes/multi/ @@ -1970,47 +2306,77 @@ ${PYSITELIB}/pandas/tests/indexes/multi/
1970${PYSITELIB}/pandas/tests/indexes/multi/test_take.pyo 2306${PYSITELIB}/pandas/tests/indexes/multi/test_take.pyo
1971${PYSITELIB}/pandas/tests/indexes/numeric/__init__.py 2307${PYSITELIB}/pandas/tests/indexes/numeric/__init__.py
1972${PYSITELIB}/pandas/tests/indexes/numeric/__init__.pyc 2308${PYSITELIB}/pandas/tests/indexes/numeric/__init__.pyc
1973${PYSITELIB}/pandas/tests/indexes/numeric/__init__.pyo 2309${PYSITELIB}/pandas/tests/indexes/numeric/__init__.pyo
1974${PYSITELIB}/pandas/tests/indexes/numeric/test_astype.py 2310${PYSITELIB}/pandas/tests/indexes/numeric/test_astype.py
1975${PYSITELIB}/pandas/tests/indexes/numeric/test_astype.pyc 2311${PYSITELIB}/pandas/tests/indexes/numeric/test_astype.pyc
1976${PYSITELIB}/pandas/tests/indexes/numeric/test_astype.pyo 2312${PYSITELIB}/pandas/tests/indexes/numeric/test_astype.pyo
1977${PYSITELIB}/pandas/tests/indexes/numeric/test_indexing.py 2313${PYSITELIB}/pandas/tests/indexes/numeric/test_indexing.py
1978${PYSITELIB}/pandas/tests/indexes/numeric/test_indexing.pyc 2314${PYSITELIB}/pandas/tests/indexes/numeric/test_indexing.pyc
1979${PYSITELIB}/pandas/tests/indexes/numeric/test_indexing.pyo 2315${PYSITELIB}/pandas/tests/indexes/numeric/test_indexing.pyo
1980${PYSITELIB}/pandas/tests/indexes/numeric/test_join.py 2316${PYSITELIB}/pandas/tests/indexes/numeric/test_join.py
1981${PYSITELIB}/pandas/tests/indexes/numeric/test_join.pyc 2317${PYSITELIB}/pandas/tests/indexes/numeric/test_join.pyc
1982${PYSITELIB}/pandas/tests/indexes/numeric/test_join.pyo 2318${PYSITELIB}/pandas/tests/indexes/numeric/test_join.pyo
 2319${PYSITELIB}/pandas/tests/indexes/numeric/test_numeric.py
 2320${PYSITELIB}/pandas/tests/indexes/numeric/test_numeric.pyc
 2321${PYSITELIB}/pandas/tests/indexes/numeric/test_numeric.pyo
1983${PYSITELIB}/pandas/tests/indexes/numeric/test_setops.py 2322${PYSITELIB}/pandas/tests/indexes/numeric/test_setops.py
1984${PYSITELIB}/pandas/tests/indexes/numeric/test_setops.pyc 2323${PYSITELIB}/pandas/tests/indexes/numeric/test_setops.pyc
1985${PYSITELIB}/pandas/tests/indexes/numeric/test_setops.pyo 2324${PYSITELIB}/pandas/tests/indexes/numeric/test_setops.pyo
 2325${PYSITELIB}/pandas/tests/indexes/object/__init__.py
 2326${PYSITELIB}/pandas/tests/indexes/object/__init__.pyc
 2327${PYSITELIB}/pandas/tests/indexes/object/__init__.pyo
 2328${PYSITELIB}/pandas/tests/indexes/object/test_astype.py
 2329${PYSITELIB}/pandas/tests/indexes/object/test_astype.pyc
 2330${PYSITELIB}/pandas/tests/indexes/object/test_astype.pyo
 2331${PYSITELIB}/pandas/tests/indexes/object/test_indexing.py
 2332${PYSITELIB}/pandas/tests/indexes/object/test_indexing.pyc
 2333${PYSITELIB}/pandas/tests/indexes/object/test_indexing.pyo
1986${PYSITELIB}/pandas/tests/indexes/period/__init__.py 2334${PYSITELIB}/pandas/tests/indexes/period/__init__.py
1987${PYSITELIB}/pandas/tests/indexes/period/__init__.pyc 2335${PYSITELIB}/pandas/tests/indexes/period/__init__.pyc
1988${PYSITELIB}/pandas/tests/indexes/period/__init__.pyo 2336${PYSITELIB}/pandas/tests/indexes/period/__init__.pyo
1989${PYSITELIB}/pandas/tests/indexes/period/test_asfreq.py 2337${PYSITELIB}/pandas/tests/indexes/period/methods/__init__.py
1990${PYSITELIB}/pandas/tests/indexes/period/test_asfreq.pyc 2338${PYSITELIB}/pandas/tests/indexes/period/methods/__init__.pyc
1991${PYSITELIB}/pandas/tests/indexes/period/test_asfreq.pyo 2339${PYSITELIB}/pandas/tests/indexes/period/methods/__init__.pyo
1992${PYSITELIB}/pandas/tests/indexes/period/test_astype.py 2340${PYSITELIB}/pandas/tests/indexes/period/methods/test_asfreq.py
1993${PYSITELIB}/pandas/tests/indexes/period/test_astype.pyc 2341${PYSITELIB}/pandas/tests/indexes/period/methods/test_asfreq.pyc
1994${PYSITELIB}/pandas/tests/indexes/period/test_astype.pyo 2342${PYSITELIB}/pandas/tests/indexes/period/methods/test_asfreq.pyo
 2343${PYSITELIB}/pandas/tests/indexes/period/methods/test_astype.py
 2344${PYSITELIB}/pandas/tests/indexes/period/methods/test_astype.pyc
 2345${PYSITELIB}/pandas/tests/indexes/period/methods/test_astype.pyo
 2346${PYSITELIB}/pandas/tests/indexes/period/methods/test_factorize.py
 2347${PYSITELIB}/pandas/tests/indexes/period/methods/test_factorize.pyc
 2348${PYSITELIB}/pandas/tests/indexes/period/methods/test_factorize.pyo
 2349${PYSITELIB}/pandas/tests/indexes/period/methods/test_fillna.py
 2350${PYSITELIB}/pandas/tests/indexes/period/methods/test_fillna.pyc
 2351${PYSITELIB}/pandas/tests/indexes/period/methods/test_fillna.pyo
 2352${PYSITELIB}/pandas/tests/indexes/period/methods/test_insert.py
 2353${PYSITELIB}/pandas/tests/indexes/period/methods/test_insert.pyc
 2354${PYSITELIB}/pandas/tests/indexes/period/methods/test_insert.pyo
 2355${PYSITELIB}/pandas/tests/indexes/period/methods/test_is_full.py
 2356${PYSITELIB}/pandas/tests/indexes/period/methods/test_is_full.pyc
 2357${PYSITELIB}/pandas/tests/indexes/period/methods/test_is_full.pyo
 2358${PYSITELIB}/pandas/tests/indexes/period/methods/test_repeat.py
 2359${PYSITELIB}/pandas/tests/indexes/period/methods/test_repeat.pyc
 2360${PYSITELIB}/pandas/tests/indexes/period/methods/test_repeat.pyo
 2361${PYSITELIB}/pandas/tests/indexes/period/methods/test_shift.py
 2362${PYSITELIB}/pandas/tests/indexes/period/methods/test_shift.pyc
 2363${PYSITELIB}/pandas/tests/indexes/period/methods/test_shift.pyo
 2364${PYSITELIB}/pandas/tests/indexes/period/methods/test_to_timestamp.py
 2365${PYSITELIB}/pandas/tests/indexes/period/methods/test_to_timestamp.pyc
 2366${PYSITELIB}/pandas/tests/indexes/period/methods/test_to_timestamp.pyo
1995${PYSITELIB}/pandas/tests/indexes/period/test_constructors.py 2367${PYSITELIB}/pandas/tests/indexes/period/test_constructors.py
1996${PYSITELIB}/pandas/tests/indexes/period/test_constructors.pyc 2368${PYSITELIB}/pandas/tests/indexes/period/test_constructors.pyc
1997${PYSITELIB}/pandas/tests/indexes/period/test_constructors.pyo 2369${PYSITELIB}/pandas/tests/indexes/period/test_constructors.pyo
1998${PYSITELIB}/pandas/tests/indexes/period/test_factorize.py 
1999${PYSITELIB}/pandas/tests/indexes/period/test_factorize.pyc 
2000${PYSITELIB}/pandas/tests/indexes/period/test_factorize.pyo 
2001${PYSITELIB}/pandas/tests/indexes/period/test_fillna.py 
2002${PYSITELIB}/pandas/tests/indexes/period/test_fillna.pyc 
2003${PYSITELIB}/pandas/tests/indexes/period/test_fillna.pyo 
2004${PYSITELIB}/pandas/tests/indexes/period/test_formats.py 2370${PYSITELIB}/pandas/tests/indexes/period/test_formats.py
2005${PYSITELIB}/pandas/tests/indexes/period/test_formats.pyc 2371${PYSITELIB}/pandas/tests/indexes/period/test_formats.pyc
2006${PYSITELIB}/pandas/tests/indexes/period/test_formats.pyo 2372${PYSITELIB}/pandas/tests/indexes/period/test_formats.pyo
2007${PYSITELIB}/pandas/tests/indexes/period/test_indexing.py 2373${PYSITELIB}/pandas/tests/indexes/period/test_indexing.py
2008${PYSITELIB}/pandas/tests/indexes/period/test_indexing.pyc 2374${PYSITELIB}/pandas/tests/indexes/period/test_indexing.pyc
2009${PYSITELIB}/pandas/tests/indexes/period/test_indexing.pyo 2375${PYSITELIB}/pandas/tests/indexes/period/test_indexing.pyo
2010${PYSITELIB}/pandas/tests/indexes/period/test_join.py 2376${PYSITELIB}/pandas/tests/indexes/period/test_join.py
2011${PYSITELIB}/pandas/tests/indexes/period/test_join.pyc 2377${PYSITELIB}/pandas/tests/indexes/period/test_join.pyc
2012${PYSITELIB}/pandas/tests/indexes/period/test_join.pyo 2378${PYSITELIB}/pandas/tests/indexes/period/test_join.pyo
2013${PYSITELIB}/pandas/tests/indexes/period/test_monotonic.py 2379${PYSITELIB}/pandas/tests/indexes/period/test_monotonic.py
2014${PYSITELIB}/pandas/tests/indexes/period/test_monotonic.pyc 2380${PYSITELIB}/pandas/tests/indexes/period/test_monotonic.pyc
2015${PYSITELIB}/pandas/tests/indexes/period/test_monotonic.pyo 2381${PYSITELIB}/pandas/tests/indexes/period/test_monotonic.pyo
2016${PYSITELIB}/pandas/tests/indexes/period/test_ops.py 2382${PYSITELIB}/pandas/tests/indexes/period/test_ops.py
@@ -2024,32 +2390,26 @@ ${PYSITELIB}/pandas/tests/indexes/period @@ -2024,32 +2390,26 @@ ${PYSITELIB}/pandas/tests/indexes/period
2024${PYSITELIB}/pandas/tests/indexes/period/test_period.pyo 2390${PYSITELIB}/pandas/tests/indexes/period/test_period.pyo
2025${PYSITELIB}/pandas/tests/indexes/period/test_period_range.py 2391${PYSITELIB}/pandas/tests/indexes/period/test_period_range.py
2026${PYSITELIB}/pandas/tests/indexes/period/test_period_range.pyc 2392${PYSITELIB}/pandas/tests/indexes/period/test_period_range.pyc
2027${PYSITELIB}/pandas/tests/indexes/period/test_period_range.pyo 2393${PYSITELIB}/pandas/tests/indexes/period/test_period_range.pyo
2028${PYSITELIB}/pandas/tests/indexes/period/test_scalar_compat.py 2394${PYSITELIB}/pandas/tests/indexes/period/test_scalar_compat.py
2029${PYSITELIB}/pandas/tests/indexes/period/test_scalar_compat.pyc 2395${PYSITELIB}/pandas/tests/indexes/period/test_scalar_compat.pyc
2030${PYSITELIB}/pandas/tests/indexes/period/test_scalar_compat.pyo 2396${PYSITELIB}/pandas/tests/indexes/period/test_scalar_compat.pyo
2031${PYSITELIB}/pandas/tests/indexes/period/test_searchsorted.py 2397${PYSITELIB}/pandas/tests/indexes/period/test_searchsorted.py
2032${PYSITELIB}/pandas/tests/indexes/period/test_searchsorted.pyc 2398${PYSITELIB}/pandas/tests/indexes/period/test_searchsorted.pyc
2033${PYSITELIB}/pandas/tests/indexes/period/test_searchsorted.pyo 2399${PYSITELIB}/pandas/tests/indexes/period/test_searchsorted.pyo
2034${PYSITELIB}/pandas/tests/indexes/period/test_setops.py 2400${PYSITELIB}/pandas/tests/indexes/period/test_setops.py
2035${PYSITELIB}/pandas/tests/indexes/period/test_setops.pyc 2401${PYSITELIB}/pandas/tests/indexes/period/test_setops.pyc
2036${PYSITELIB}/pandas/tests/indexes/period/test_setops.pyo 2402${PYSITELIB}/pandas/tests/indexes/period/test_setops.pyo
2037${PYSITELIB}/pandas/tests/indexes/period/test_shift.py 
2038${PYSITELIB}/pandas/tests/indexes/period/test_shift.pyc 
2039${PYSITELIB}/pandas/tests/indexes/period/test_shift.pyo 
2040${PYSITELIB}/pandas/tests/indexes/period/test_to_timestamp.py 
2041${PYSITELIB}/pandas/tests/indexes/period/test_to_timestamp.pyc 
2042${PYSITELIB}/pandas/tests/indexes/period/test_to_timestamp.pyo 
2043${PYSITELIB}/pandas/tests/indexes/period/test_tools.py 2403${PYSITELIB}/pandas/tests/indexes/period/test_tools.py
2044${PYSITELIB}/pandas/tests/indexes/period/test_tools.pyc 2404${PYSITELIB}/pandas/tests/indexes/period/test_tools.pyc
2045${PYSITELIB}/pandas/tests/indexes/period/test_tools.pyo 2405${PYSITELIB}/pandas/tests/indexes/period/test_tools.pyo
2046${PYSITELIB}/pandas/tests/indexes/ranges/__init__.py 2406${PYSITELIB}/pandas/tests/indexes/ranges/__init__.py
2047${PYSITELIB}/pandas/tests/indexes/ranges/__init__.pyc 2407${PYSITELIB}/pandas/tests/indexes/ranges/__init__.pyc
2048${PYSITELIB}/pandas/tests/indexes/ranges/__init__.pyo 2408${PYSITELIB}/pandas/tests/indexes/ranges/__init__.pyo
2049${PYSITELIB}/pandas/tests/indexes/ranges/test_constructors.py 2409${PYSITELIB}/pandas/tests/indexes/ranges/test_constructors.py
2050${PYSITELIB}/pandas/tests/indexes/ranges/test_constructors.pyc 2410${PYSITELIB}/pandas/tests/indexes/ranges/test_constructors.pyc
2051${PYSITELIB}/pandas/tests/indexes/ranges/test_constructors.pyo 2411${PYSITELIB}/pandas/tests/indexes/ranges/test_constructors.pyo
2052${PYSITELIB}/pandas/tests/indexes/ranges/test_indexing.py 2412${PYSITELIB}/pandas/tests/indexes/ranges/test_indexing.py
2053${PYSITELIB}/pandas/tests/indexes/ranges/test_indexing.pyc 2413${PYSITELIB}/pandas/tests/indexes/ranges/test_indexing.pyc
2054${PYSITELIB}/pandas/tests/indexes/ranges/test_indexing.pyo 2414${PYSITELIB}/pandas/tests/indexes/ranges/test_indexing.pyo
2055${PYSITELIB}/pandas/tests/indexes/ranges/test_join.py 2415${PYSITELIB}/pandas/tests/indexes/ranges/test_join.py
@@ -2060,95 +2420,95 @@ ${PYSITELIB}/pandas/tests/indexes/ranges @@ -2060,95 +2420,95 @@ ${PYSITELIB}/pandas/tests/indexes/ranges
2060${PYSITELIB}/pandas/tests/indexes/ranges/test_range.pyo 2420${PYSITELIB}/pandas/tests/indexes/ranges/test_range.pyo
2061${PYSITELIB}/pandas/tests/indexes/ranges/test_setops.py 2421${PYSITELIB}/pandas/tests/indexes/ranges/test_setops.py
2062${PYSITELIB}/pandas/tests/indexes/ranges/test_setops.pyc 2422${PYSITELIB}/pandas/tests/indexes/ranges/test_setops.pyc
2063${PYSITELIB}/pandas/tests/indexes/ranges/test_setops.pyo 2423${PYSITELIB}/pandas/tests/indexes/ranges/test_setops.pyo
2064${PYSITELIB}/pandas/tests/indexes/test_any_index.py 2424${PYSITELIB}/pandas/tests/indexes/test_any_index.py
2065${PYSITELIB}/pandas/tests/indexes/test_any_index.pyc 2425${PYSITELIB}/pandas/tests/indexes/test_any_index.pyc
2066${PYSITELIB}/pandas/tests/indexes/test_any_index.pyo 2426${PYSITELIB}/pandas/tests/indexes/test_any_index.pyo
2067${PYSITELIB}/pandas/tests/indexes/test_base.py 2427${PYSITELIB}/pandas/tests/indexes/test_base.py
2068${PYSITELIB}/pandas/tests/indexes/test_base.pyc 2428${PYSITELIB}/pandas/tests/indexes/test_base.pyc
2069${PYSITELIB}/pandas/tests/indexes/test_base.pyo 2429${PYSITELIB}/pandas/tests/indexes/test_base.pyo
2070${PYSITELIB}/pandas/tests/indexes/test_common.py 2430${PYSITELIB}/pandas/tests/indexes/test_common.py
2071${PYSITELIB}/pandas/tests/indexes/test_common.pyc 2431${PYSITELIB}/pandas/tests/indexes/test_common.pyc
2072${PYSITELIB}/pandas/tests/indexes/test_common.pyo 2432${PYSITELIB}/pandas/tests/indexes/test_common.pyo
2073${PYSITELIB}/pandas/tests/indexes/test_datetimelike.py 
2074${PYSITELIB}/pandas/tests/indexes/test_datetimelike.pyc 
2075${PYSITELIB}/pandas/tests/indexes/test_datetimelike.pyo 
2076${PYSITELIB}/pandas/tests/indexes/test_engines.py 2433${PYSITELIB}/pandas/tests/indexes/test_engines.py
2077${PYSITELIB}/pandas/tests/indexes/test_engines.pyc 2434${PYSITELIB}/pandas/tests/indexes/test_engines.pyc
2078${PYSITELIB}/pandas/tests/indexes/test_engines.pyo 2435${PYSITELIB}/pandas/tests/indexes/test_engines.pyo
2079${PYSITELIB}/pandas/tests/indexes/test_frozen.py 2436${PYSITELIB}/pandas/tests/indexes/test_frozen.py
2080${PYSITELIB}/pandas/tests/indexes/test_frozen.pyc 2437${PYSITELIB}/pandas/tests/indexes/test_frozen.pyc
2081${PYSITELIB}/pandas/tests/indexes/test_frozen.pyo 2438${PYSITELIB}/pandas/tests/indexes/test_frozen.pyo
2082${PYSITELIB}/pandas/tests/indexes/test_index_new.py 2439${PYSITELIB}/pandas/tests/indexes/test_index_new.py
2083${PYSITELIB}/pandas/tests/indexes/test_index_new.pyc 2440${PYSITELIB}/pandas/tests/indexes/test_index_new.pyc
2084${PYSITELIB}/pandas/tests/indexes/test_index_new.pyo 2441${PYSITELIB}/pandas/tests/indexes/test_index_new.pyo
2085${PYSITELIB}/pandas/tests/indexes/test_indexing.py 2442${PYSITELIB}/pandas/tests/indexes/test_indexing.py
2086${PYSITELIB}/pandas/tests/indexes/test_indexing.pyc 2443${PYSITELIB}/pandas/tests/indexes/test_indexing.pyc
2087${PYSITELIB}/pandas/tests/indexes/test_indexing.pyo 2444${PYSITELIB}/pandas/tests/indexes/test_indexing.pyo
2088${PYSITELIB}/pandas/tests/indexes/test_numeric.py 
2089${PYSITELIB}/pandas/tests/indexes/test_numeric.pyc 
2090${PYSITELIB}/pandas/tests/indexes/test_numeric.pyo 
2091${PYSITELIB}/pandas/tests/indexes/test_numpy_compat.py 2445${PYSITELIB}/pandas/tests/indexes/test_numpy_compat.py
2092${PYSITELIB}/pandas/tests/indexes/test_numpy_compat.pyc 2446${PYSITELIB}/pandas/tests/indexes/test_numpy_compat.pyc
2093${PYSITELIB}/pandas/tests/indexes/test_numpy_compat.pyo 2447${PYSITELIB}/pandas/tests/indexes/test_numpy_compat.pyo
2094${PYSITELIB}/pandas/tests/indexes/test_setops.py 2448${PYSITELIB}/pandas/tests/indexes/test_setops.py
2095${PYSITELIB}/pandas/tests/indexes/test_setops.pyc 2449${PYSITELIB}/pandas/tests/indexes/test_setops.pyc
2096${PYSITELIB}/pandas/tests/indexes/test_setops.pyo 2450${PYSITELIB}/pandas/tests/indexes/test_setops.pyo
2097${PYSITELIB}/pandas/tests/indexes/timedeltas/__init__.py 2451${PYSITELIB}/pandas/tests/indexes/timedeltas/__init__.py
2098${PYSITELIB}/pandas/tests/indexes/timedeltas/__init__.pyc 2452${PYSITELIB}/pandas/tests/indexes/timedeltas/__init__.pyc
2099${PYSITELIB}/pandas/tests/indexes/timedeltas/__init__.pyo 2453${PYSITELIB}/pandas/tests/indexes/timedeltas/__init__.pyo
2100${PYSITELIB}/pandas/tests/indexes/timedeltas/test_astype.py 2454${PYSITELIB}/pandas/tests/indexes/timedeltas/methods/__init__.py
2101${PYSITELIB}/pandas/tests/indexes/timedeltas/test_astype.pyc 2455${PYSITELIB}/pandas/tests/indexes/timedeltas/methods/__init__.pyc
2102${PYSITELIB}/pandas/tests/indexes/timedeltas/test_astype.pyo 2456${PYSITELIB}/pandas/tests/indexes/timedeltas/methods/__init__.pyo
 2457${PYSITELIB}/pandas/tests/indexes/timedeltas/methods/test_astype.py
 2458${PYSITELIB}/pandas/tests/indexes/timedeltas/methods/test_astype.pyc
 2459${PYSITELIB}/pandas/tests/indexes/timedeltas/methods/test_astype.pyo
 2460${PYSITELIB}/pandas/tests/indexes/timedeltas/methods/test_factorize.py
 2461${PYSITELIB}/pandas/tests/indexes/timedeltas/methods/test_factorize.pyc
 2462${PYSITELIB}/pandas/tests/indexes/timedeltas/methods/test_factorize.pyo
 2463${PYSITELIB}/pandas/tests/indexes/timedeltas/methods/test_fillna.py
 2464${PYSITELIB}/pandas/tests/indexes/timedeltas/methods/test_fillna.pyc
 2465${PYSITELIB}/pandas/tests/indexes/timedeltas/methods/test_fillna.pyo
 2466${PYSITELIB}/pandas/tests/indexes/timedeltas/methods/test_insert.py
 2467${PYSITELIB}/pandas/tests/indexes/timedeltas/methods/test_insert.pyc
 2468${PYSITELIB}/pandas/tests/indexes/timedeltas/methods/test_insert.pyo
 2469${PYSITELIB}/pandas/tests/indexes/timedeltas/methods/test_repeat.py
 2470${PYSITELIB}/pandas/tests/indexes/timedeltas/methods/test_repeat.pyc
 2471${PYSITELIB}/pandas/tests/indexes/timedeltas/methods/test_repeat.pyo
 2472${PYSITELIB}/pandas/tests/indexes/timedeltas/methods/test_shift.py
 2473${PYSITELIB}/pandas/tests/indexes/timedeltas/methods/test_shift.pyc
 2474${PYSITELIB}/pandas/tests/indexes/timedeltas/methods/test_shift.pyo
2103${PYSITELIB}/pandas/tests/indexes/timedeltas/test_constructors.py 2475${PYSITELIB}/pandas/tests/indexes/timedeltas/test_constructors.py
2104${PYSITELIB}/pandas/tests/indexes/timedeltas/test_constructors.pyc 2476${PYSITELIB}/pandas/tests/indexes/timedeltas/test_constructors.pyc
2105${PYSITELIB}/pandas/tests/indexes/timedeltas/test_constructors.pyo 2477${PYSITELIB}/pandas/tests/indexes/timedeltas/test_constructors.pyo
2106${PYSITELIB}/pandas/tests/indexes/timedeltas/test_delete.py 2478${PYSITELIB}/pandas/tests/indexes/timedeltas/test_delete.py
2107${PYSITELIB}/pandas/tests/indexes/timedeltas/test_delete.pyc 2479${PYSITELIB}/pandas/tests/indexes/timedeltas/test_delete.pyc
2108${PYSITELIB}/pandas/tests/indexes/timedeltas/test_delete.pyo 2480${PYSITELIB}/pandas/tests/indexes/timedeltas/test_delete.pyo
2109${PYSITELIB}/pandas/tests/indexes/timedeltas/test_fillna.py 
2110${PYSITELIB}/pandas/tests/indexes/timedeltas/test_fillna.pyc 
2111${PYSITELIB}/pandas/tests/indexes/timedeltas/test_fillna.pyo 
2112${PYSITELIB}/pandas/tests/indexes/timedeltas/test_formats.py 2481${PYSITELIB}/pandas/tests/indexes/timedeltas/test_formats.py
2113${PYSITELIB}/pandas/tests/indexes/timedeltas/test_formats.pyc 2482${PYSITELIB}/pandas/tests/indexes/timedeltas/test_formats.pyc
2114${PYSITELIB}/pandas/tests/indexes/timedeltas/test_formats.pyo 2483${PYSITELIB}/pandas/tests/indexes/timedeltas/test_formats.pyo
2115${PYSITELIB}/pandas/tests/indexes/timedeltas/test_indexing.py 2484${PYSITELIB}/pandas/tests/indexes/timedeltas/test_indexing.py
2116${PYSITELIB}/pandas/tests/indexes/timedeltas/test_indexing.pyc 2485${PYSITELIB}/pandas/tests/indexes/timedeltas/test_indexing.pyc
2117${PYSITELIB}/pandas/tests/indexes/timedeltas/test_indexing.pyo 2486${PYSITELIB}/pandas/tests/indexes/timedeltas/test_indexing.pyo
2118${PYSITELIB}/pandas/tests/indexes/timedeltas/test_insert.py 
2119${PYSITELIB}/pandas/tests/indexes/timedeltas/test_insert.pyc 
2120${PYSITELIB}/pandas/tests/indexes/timedeltas/test_insert.pyo 
2121${PYSITELIB}/pandas/tests/indexes/timedeltas/test_join.py 2487${PYSITELIB}/pandas/tests/indexes/timedeltas/test_join.py
2122${PYSITELIB}/pandas/tests/indexes/timedeltas/test_join.pyc 2488${PYSITELIB}/pandas/tests/indexes/timedeltas/test_join.pyc
2123${PYSITELIB}/pandas/tests/indexes/timedeltas/test_join.pyo 2489${PYSITELIB}/pandas/tests/indexes/timedeltas/test_join.pyo
2124${PYSITELIB}/pandas/tests/indexes/timedeltas/test_ops.py 2490${PYSITELIB}/pandas/tests/indexes/timedeltas/test_ops.py
2125${PYSITELIB}/pandas/tests/indexes/timedeltas/test_ops.pyc 2491${PYSITELIB}/pandas/tests/indexes/timedeltas/test_ops.pyc
2126${PYSITELIB}/pandas/tests/indexes/timedeltas/test_ops.pyo 2492${PYSITELIB}/pandas/tests/indexes/timedeltas/test_ops.pyo
2127${PYSITELIB}/pandas/tests/indexes/timedeltas/test_partial_slicing.py 
2128${PYSITELIB}/pandas/tests/indexes/timedeltas/test_partial_slicing.pyc 
2129${PYSITELIB}/pandas/tests/indexes/timedeltas/test_partial_slicing.pyo 
2130${PYSITELIB}/pandas/tests/indexes/timedeltas/test_scalar_compat.py 2493${PYSITELIB}/pandas/tests/indexes/timedeltas/test_scalar_compat.py
2131${PYSITELIB}/pandas/tests/indexes/timedeltas/test_scalar_compat.pyc 2494${PYSITELIB}/pandas/tests/indexes/timedeltas/test_scalar_compat.pyc
2132${PYSITELIB}/pandas/tests/indexes/timedeltas/test_scalar_compat.pyo 2495${PYSITELIB}/pandas/tests/indexes/timedeltas/test_scalar_compat.pyo
2133${PYSITELIB}/pandas/tests/indexes/timedeltas/test_searchsorted.py 2496${PYSITELIB}/pandas/tests/indexes/timedeltas/test_searchsorted.py
2134${PYSITELIB}/pandas/tests/indexes/timedeltas/test_searchsorted.pyc 2497${PYSITELIB}/pandas/tests/indexes/timedeltas/test_searchsorted.pyc
2135${PYSITELIB}/pandas/tests/indexes/timedeltas/test_searchsorted.pyo 2498${PYSITELIB}/pandas/tests/indexes/timedeltas/test_searchsorted.pyo
2136${PYSITELIB}/pandas/tests/indexes/timedeltas/test_setops.py 2499${PYSITELIB}/pandas/tests/indexes/timedeltas/test_setops.py
2137${PYSITELIB}/pandas/tests/indexes/timedeltas/test_setops.pyc 2500${PYSITELIB}/pandas/tests/indexes/timedeltas/test_setops.pyc
2138${PYSITELIB}/pandas/tests/indexes/timedeltas/test_setops.pyo 2501${PYSITELIB}/pandas/tests/indexes/timedeltas/test_setops.pyo
2139${PYSITELIB}/pandas/tests/indexes/timedeltas/test_shift.py 
2140${PYSITELIB}/pandas/tests/indexes/timedeltas/test_shift.pyc 
2141${PYSITELIB}/pandas/tests/indexes/timedeltas/test_shift.pyo 
2142${PYSITELIB}/pandas/tests/indexes/timedeltas/test_timedelta.py 2502${PYSITELIB}/pandas/tests/indexes/timedeltas/test_timedelta.py
2143${PYSITELIB}/pandas/tests/indexes/timedeltas/test_timedelta.pyc 2503${PYSITELIB}/pandas/tests/indexes/timedeltas/test_timedelta.pyc
2144${PYSITELIB}/pandas/tests/indexes/timedeltas/test_timedelta.pyo 2504${PYSITELIB}/pandas/tests/indexes/timedeltas/test_timedelta.pyo
2145${PYSITELIB}/pandas/tests/indexes/timedeltas/test_timedelta_range.py 2505${PYSITELIB}/pandas/tests/indexes/timedeltas/test_timedelta_range.py
2146${PYSITELIB}/pandas/tests/indexes/timedeltas/test_timedelta_range.pyc 2506${PYSITELIB}/pandas/tests/indexes/timedeltas/test_timedelta_range.pyc
2147${PYSITELIB}/pandas/tests/indexes/timedeltas/test_timedelta_range.pyo 2507${PYSITELIB}/pandas/tests/indexes/timedeltas/test_timedelta_range.pyo
2148${PYSITELIB}/pandas/tests/indexing/__init__.py 2508${PYSITELIB}/pandas/tests/indexing/__init__.py
2149${PYSITELIB}/pandas/tests/indexing/__init__.pyc 2509${PYSITELIB}/pandas/tests/indexing/__init__.pyc
2150${PYSITELIB}/pandas/tests/indexing/__init__.pyo 2510${PYSITELIB}/pandas/tests/indexing/__init__.pyo
2151${PYSITELIB}/pandas/tests/indexing/common.py 2511${PYSITELIB}/pandas/tests/indexing/common.py
2152${PYSITELIB}/pandas/tests/indexing/common.pyc 2512${PYSITELIB}/pandas/tests/indexing/common.pyc
2153${PYSITELIB}/pandas/tests/indexing/common.pyo 2513${PYSITELIB}/pandas/tests/indexing/common.pyo
2154${PYSITELIB}/pandas/tests/indexing/interval/__init__.py 2514${PYSITELIB}/pandas/tests/indexing/interval/__init__.py
@@ -2168,32 +2528,26 @@ ${PYSITELIB}/pandas/tests/indexing/multi @@ -2168,32 +2528,26 @@ ${PYSITELIB}/pandas/tests/indexing/multi
2168${PYSITELIB}/pandas/tests/indexing/multiindex/test_chaining_and_caching.pyo 2528${PYSITELIB}/pandas/tests/indexing/multiindex/test_chaining_and_caching.pyo
2169${PYSITELIB}/pandas/tests/indexing/multiindex/test_datetime.py 2529${PYSITELIB}/pandas/tests/indexing/multiindex/test_datetime.py
2170${PYSITELIB}/pandas/tests/indexing/multiindex/test_datetime.pyc 2530${PYSITELIB}/pandas/tests/indexing/multiindex/test_datetime.pyc
2171${PYSITELIB}/pandas/tests/indexing/multiindex/test_datetime.pyo 2531${PYSITELIB}/pandas/tests/indexing/multiindex/test_datetime.pyo
2172${PYSITELIB}/pandas/tests/indexing/multiindex/test_getitem.py 2532${PYSITELIB}/pandas/tests/indexing/multiindex/test_getitem.py
2173${PYSITELIB}/pandas/tests/indexing/multiindex/test_getitem.pyc 2533${PYSITELIB}/pandas/tests/indexing/multiindex/test_getitem.pyc
2174${PYSITELIB}/pandas/tests/indexing/multiindex/test_getitem.pyo 2534${PYSITELIB}/pandas/tests/indexing/multiindex/test_getitem.pyo
2175${PYSITELIB}/pandas/tests/indexing/multiindex/test_iloc.py 2535${PYSITELIB}/pandas/tests/indexing/multiindex/test_iloc.py
2176${PYSITELIB}/pandas/tests/indexing/multiindex/test_iloc.pyc 2536${PYSITELIB}/pandas/tests/indexing/multiindex/test_iloc.pyc
2177${PYSITELIB}/pandas/tests/indexing/multiindex/test_iloc.pyo 2537${PYSITELIB}/pandas/tests/indexing/multiindex/test_iloc.pyo
2178${PYSITELIB}/pandas/tests/indexing/multiindex/test_indexing_slow.py 2538${PYSITELIB}/pandas/tests/indexing/multiindex/test_indexing_slow.py
2179${PYSITELIB}/pandas/tests/indexing/multiindex/test_indexing_slow.pyc 2539${PYSITELIB}/pandas/tests/indexing/multiindex/test_indexing_slow.pyc
2180${PYSITELIB}/pandas/tests/indexing/multiindex/test_indexing_slow.pyo 2540${PYSITELIB}/pandas/tests/indexing/multiindex/test_indexing_slow.pyo
2181${PYSITELIB}/pandas/tests/indexing/multiindex/test_insert.py 
2182${PYSITELIB}/pandas/tests/indexing/multiindex/test_insert.pyc 
2183${PYSITELIB}/pandas/tests/indexing/multiindex/test_insert.pyo 
2184${PYSITELIB}/pandas/tests/indexing/multiindex/test_ix.py 
2185${PYSITELIB}/pandas/tests/indexing/multiindex/test_ix.pyc 
2186${PYSITELIB}/pandas/tests/indexing/multiindex/test_ix.pyo 
2187${PYSITELIB}/pandas/tests/indexing/multiindex/test_loc.py 2541${PYSITELIB}/pandas/tests/indexing/multiindex/test_loc.py
2188${PYSITELIB}/pandas/tests/indexing/multiindex/test_loc.pyc 2542${PYSITELIB}/pandas/tests/indexing/multiindex/test_loc.pyc
2189${PYSITELIB}/pandas/tests/indexing/multiindex/test_loc.pyo 2543${PYSITELIB}/pandas/tests/indexing/multiindex/test_loc.pyo
2190${PYSITELIB}/pandas/tests/indexing/multiindex/test_multiindex.py 2544${PYSITELIB}/pandas/tests/indexing/multiindex/test_multiindex.py
2191${PYSITELIB}/pandas/tests/indexing/multiindex/test_multiindex.pyc 2545${PYSITELIB}/pandas/tests/indexing/multiindex/test_multiindex.pyc
2192${PYSITELIB}/pandas/tests/indexing/multiindex/test_multiindex.pyo 2546${PYSITELIB}/pandas/tests/indexing/multiindex/test_multiindex.pyo
2193${PYSITELIB}/pandas/tests/indexing/multiindex/test_partial.py 2547${PYSITELIB}/pandas/tests/indexing/multiindex/test_partial.py
2194${PYSITELIB}/pandas/tests/indexing/multiindex/test_partial.pyc 2548${PYSITELIB}/pandas/tests/indexing/multiindex/test_partial.pyc
2195${PYSITELIB}/pandas/tests/indexing/multiindex/test_partial.pyo 2549${PYSITELIB}/pandas/tests/indexing/multiindex/test_partial.pyo
2196${PYSITELIB}/pandas/tests/indexing/multiindex/test_setitem.py 2550${PYSITELIB}/pandas/tests/indexing/multiindex/test_setitem.py
2197${PYSITELIB}/pandas/tests/indexing/multiindex/test_setitem.pyc 2551${PYSITELIB}/pandas/tests/indexing/multiindex/test_setitem.pyc
2198${PYSITELIB}/pandas/tests/indexing/multiindex/test_setitem.pyo 2552${PYSITELIB}/pandas/tests/indexing/multiindex/test_setitem.pyo
2199${PYSITELIB}/pandas/tests/indexing/multiindex/test_slice.py 2553${PYSITELIB}/pandas/tests/indexing/multiindex/test_slice.py
@@ -2240,35 +2594,52 @@ ${PYSITELIB}/pandas/tests/indexing/test_ @@ -2240,35 +2594,52 @@ ${PYSITELIB}/pandas/tests/indexing/test_
2240${PYSITELIB}/pandas/tests/indexing/test_loc.pyo 2594${PYSITELIB}/pandas/tests/indexing/test_loc.pyo
2241${PYSITELIB}/pandas/tests/indexing/test_na_indexing.py 2595${PYSITELIB}/pandas/tests/indexing/test_na_indexing.py
2242${PYSITELIB}/pandas/tests/indexing/test_na_indexing.pyc 2596${PYSITELIB}/pandas/tests/indexing/test_na_indexing.pyc
2243${PYSITELIB}/pandas/tests/indexing/test_na_indexing.pyo 2597${PYSITELIB}/pandas/tests/indexing/test_na_indexing.pyo
2244${PYSITELIB}/pandas/tests/indexing/test_partial.py 2598${PYSITELIB}/pandas/tests/indexing/test_partial.py
2245${PYSITELIB}/pandas/tests/indexing/test_partial.pyc 2599${PYSITELIB}/pandas/tests/indexing/test_partial.pyc
2246${PYSITELIB}/pandas/tests/indexing/test_partial.pyo 2600${PYSITELIB}/pandas/tests/indexing/test_partial.pyo
2247${PYSITELIB}/pandas/tests/indexing/test_scalar.py 2601${PYSITELIB}/pandas/tests/indexing/test_scalar.py
2248${PYSITELIB}/pandas/tests/indexing/test_scalar.pyc 2602${PYSITELIB}/pandas/tests/indexing/test_scalar.pyc
2249${PYSITELIB}/pandas/tests/indexing/test_scalar.pyo 2603${PYSITELIB}/pandas/tests/indexing/test_scalar.pyo
2250${PYSITELIB}/pandas/tests/internals/__init__.py 2604${PYSITELIB}/pandas/tests/internals/__init__.py
2251${PYSITELIB}/pandas/tests/internals/__init__.pyc 2605${PYSITELIB}/pandas/tests/internals/__init__.pyc
2252${PYSITELIB}/pandas/tests/internals/__init__.pyo 2606${PYSITELIB}/pandas/tests/internals/__init__.pyo
 2607${PYSITELIB}/pandas/tests/internals/test_api.py
 2608${PYSITELIB}/pandas/tests/internals/test_api.pyc
 2609${PYSITELIB}/pandas/tests/internals/test_api.pyo
2253${PYSITELIB}/pandas/tests/internals/test_internals.py 2610${PYSITELIB}/pandas/tests/internals/test_internals.py
2254${PYSITELIB}/pandas/tests/internals/test_internals.pyc 2611${PYSITELIB}/pandas/tests/internals/test_internals.pyc
2255${PYSITELIB}/pandas/tests/internals/test_internals.pyo 2612${PYSITELIB}/pandas/tests/internals/test_internals.pyo
 2613${PYSITELIB}/pandas/tests/internals/test_managers.py
 2614${PYSITELIB}/pandas/tests/internals/test_managers.pyc
 2615${PYSITELIB}/pandas/tests/internals/test_managers.pyo
2256${PYSITELIB}/pandas/tests/io/__init__.py 2616${PYSITELIB}/pandas/tests/io/__init__.py
2257${PYSITELIB}/pandas/tests/io/__init__.pyc 2617${PYSITELIB}/pandas/tests/io/__init__.pyc
2258${PYSITELIB}/pandas/tests/io/__init__.pyo 2618${PYSITELIB}/pandas/tests/io/__init__.pyo
2259${PYSITELIB}/pandas/tests/io/conftest.py 2619${PYSITELIB}/pandas/tests/io/conftest.py
2260${PYSITELIB}/pandas/tests/io/conftest.pyc 2620${PYSITELIB}/pandas/tests/io/conftest.pyc
2261${PYSITELIB}/pandas/tests/io/conftest.pyo 2621${PYSITELIB}/pandas/tests/io/conftest.pyo
 2622${PYSITELIB}/pandas/tests/io/data/fixed_width/fixed_width_format.txt
 2623${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
 2625${PYSITELIB}/pandas/tests/io/data/parquet/simple.parquet
 2626${PYSITELIB}/pandas/tests/io/data/pickle/test_mi_py27.pkl
 2627${PYSITELIB}/pandas/tests/io/data/pickle/test_py27.pkl
 2628${PYSITELIB}/pandas/tests/io/data/xml/baby_names.xml
 2629${PYSITELIB}/pandas/tests/io/data/xml/books.xml
 2630${PYSITELIB}/pandas/tests/io/data/xml/cta_rail_lines.kml
 2631${PYSITELIB}/pandas/tests/io/data/xml/flatten_doc.xsl
 2632${PYSITELIB}/pandas/tests/io/data/xml/row_field_output.xsl
2262${PYSITELIB}/pandas/tests/io/excel/__init__.py 2633${PYSITELIB}/pandas/tests/io/excel/__init__.py
2263${PYSITELIB}/pandas/tests/io/excel/__init__.pyc 2634${PYSITELIB}/pandas/tests/io/excel/__init__.pyc
2264${PYSITELIB}/pandas/tests/io/excel/__init__.pyo 2635${PYSITELIB}/pandas/tests/io/excel/__init__.pyo
2265${PYSITELIB}/pandas/tests/io/excel/conftest.py 2636${PYSITELIB}/pandas/tests/io/excel/conftest.py
2266${PYSITELIB}/pandas/tests/io/excel/conftest.pyc 2637${PYSITELIB}/pandas/tests/io/excel/conftest.pyc
2267${PYSITELIB}/pandas/tests/io/excel/conftest.pyo 2638${PYSITELIB}/pandas/tests/io/excel/conftest.pyo
2268${PYSITELIB}/pandas/tests/io/excel/test_odf.py 2639${PYSITELIB}/pandas/tests/io/excel/test_odf.py
2269${PYSITELIB}/pandas/tests/io/excel/test_odf.pyc 2640${PYSITELIB}/pandas/tests/io/excel/test_odf.pyc
2270${PYSITELIB}/pandas/tests/io/excel/test_odf.pyo 2641${PYSITELIB}/pandas/tests/io/excel/test_odf.pyo
2271${PYSITELIB}/pandas/tests/io/excel/test_odswriter.py 2642${PYSITELIB}/pandas/tests/io/excel/test_odswriter.py
2272${PYSITELIB}/pandas/tests/io/excel/test_odswriter.pyc 2643${PYSITELIB}/pandas/tests/io/excel/test_odswriter.pyc
2273${PYSITELIB}/pandas/tests/io/excel/test_odswriter.pyo 2644${PYSITELIB}/pandas/tests/io/excel/test_odswriter.pyo
2274${PYSITELIB}/pandas/tests/io/excel/test_openpyxl.py 2645${PYSITELIB}/pandas/tests/io/excel/test_openpyxl.py
@@ -2285,47 +2656,74 @@ ${PYSITELIB}/pandas/tests/io/excel/test_ @@ -2285,47 +2656,74 @@ ${PYSITELIB}/pandas/tests/io/excel/test_
2285${PYSITELIB}/pandas/tests/io/excel/test_writers.pyo 2656${PYSITELIB}/pandas/tests/io/excel/test_writers.pyo
2286${PYSITELIB}/pandas/tests/io/excel/test_xlrd.py 2657${PYSITELIB}/pandas/tests/io/excel/test_xlrd.py
2287${PYSITELIB}/pandas/tests/io/excel/test_xlrd.pyc 2658${PYSITELIB}/pandas/tests/io/excel/test_xlrd.pyc
2288${PYSITELIB}/pandas/tests/io/excel/test_xlrd.pyo 2659${PYSITELIB}/pandas/tests/io/excel/test_xlrd.pyo
2289${PYSITELIB}/pandas/tests/io/excel/test_xlsxwriter.py 2660${PYSITELIB}/pandas/tests/io/excel/test_xlsxwriter.py
2290${PYSITELIB}/pandas/tests/io/excel/test_xlsxwriter.pyc 2661${PYSITELIB}/pandas/tests/io/excel/test_xlsxwriter.pyc
2291${PYSITELIB}/pandas/tests/io/excel/test_xlsxwriter.pyo 2662${PYSITELIB}/pandas/tests/io/excel/test_xlsxwriter.pyo
2292${PYSITELIB}/pandas/tests/io/excel/test_xlwt.py 2663${PYSITELIB}/pandas/tests/io/excel/test_xlwt.py
2293${PYSITELIB}/pandas/tests/io/excel/test_xlwt.pyc 2664${PYSITELIB}/pandas/tests/io/excel/test_xlwt.pyc
2294${PYSITELIB}/pandas/tests/io/excel/test_xlwt.pyo 2665${PYSITELIB}/pandas/tests/io/excel/test_xlwt.pyo
2295${PYSITELIB}/pandas/tests/io/formats/__init__.py 2666${PYSITELIB}/pandas/tests/io/formats/__init__.py
2296${PYSITELIB}/pandas/tests/io/formats/__init__.pyc 2667${PYSITELIB}/pandas/tests/io/formats/__init__.pyc
2297${PYSITELIB}/pandas/tests/io/formats/__init__.pyo 2668${PYSITELIB}/pandas/tests/io/formats/__init__.pyo
 2669${PYSITELIB}/pandas/tests/io/formats/style/__init__.py
 2670${PYSITELIB}/pandas/tests/io/formats/style/__init__.pyc
 2671${PYSITELIB}/pandas/tests/io/formats/style/__init__.pyo
 2672${PYSITELIB}/pandas/tests/io/formats/style/test_align.py
 2673${PYSITELIB}/pandas/tests/io/formats/style/test_align.pyc
 2674${PYSITELIB}/pandas/tests/io/formats/style/test_align.pyo
 2675${PYSITELIB}/pandas/tests/io/formats/style/test_format.py
 2676${PYSITELIB}/pandas/tests/io/formats/style/test_format.pyc
 2677${PYSITELIB}/pandas/tests/io/formats/style/test_format.pyo
 2678${PYSITELIB}/pandas/tests/io/formats/style/test_highlight.py
 2679${PYSITELIB}/pandas/tests/io/formats/style/test_highlight.pyc
 2680${PYSITELIB}/pandas/tests/io/formats/style/test_highlight.pyo
 2681${PYSITELIB}/pandas/tests/io/formats/style/test_html.py
 2682${PYSITELIB}/pandas/tests/io/formats/style/test_html.pyc
 2683${PYSITELIB}/pandas/tests/io/formats/style/test_html.pyo
 2684${PYSITELIB}/pandas/tests/io/formats/style/test_matplotlib.py
 2685${PYSITELIB}/pandas/tests/io/formats/style/test_matplotlib.pyc
 2686${PYSITELIB}/pandas/tests/io/formats/style/test_matplotlib.pyo
 2687${PYSITELIB}/pandas/tests/io/formats/style/test_non_unique.py
 2688${PYSITELIB}/pandas/tests/io/formats/style/test_non_unique.pyc
 2689${PYSITELIB}/pandas/tests/io/formats/style/test_non_unique.pyo
 2690${PYSITELIB}/pandas/tests/io/formats/style/test_style.py
 2691${PYSITELIB}/pandas/tests/io/formats/style/test_style.pyc
 2692${PYSITELIB}/pandas/tests/io/formats/style/test_style.pyo
 2693${PYSITELIB}/pandas/tests/io/formats/style/test_to_latex.py
 2694${PYSITELIB}/pandas/tests/io/formats/style/test_to_latex.pyc
 2695${PYSITELIB}/pandas/tests/io/formats/style/test_to_latex.pyo
 2696${PYSITELIB}/pandas/tests/io/formats/style/test_tooltip.py
 2697${PYSITELIB}/pandas/tests/io/formats/style/test_tooltip.pyc
 2698${PYSITELIB}/pandas/tests/io/formats/style/test_tooltip.pyo
2298${PYSITELIB}/pandas/tests/io/formats/test_console.py 2699${PYSITELIB}/pandas/tests/io/formats/test_console.py
2299${PYSITELIB}/pandas/tests/io/formats/test_console.pyc 2700${PYSITELIB}/pandas/tests/io/formats/test_console.pyc
2300${PYSITELIB}/pandas/tests/io/formats/test_console.pyo 2701${PYSITELIB}/pandas/tests/io/formats/test_console.pyo
2301${PYSITELIB}/pandas/tests/io/formats/test_css.py 2702${PYSITELIB}/pandas/tests/io/formats/test_css.py
2302${PYSITELIB}/pandas/tests/io/formats/test_css.pyc 2703${PYSITELIB}/pandas/tests/io/formats/test_css.pyc
2303${PYSITELIB}/pandas/tests/io/formats/test_css.pyo 2704${PYSITELIB}/pandas/tests/io/formats/test_css.pyo
2304${PYSITELIB}/pandas/tests/io/formats/test_eng_formatting.py 2705${PYSITELIB}/pandas/tests/io/formats/test_eng_formatting.py
2305${PYSITELIB}/pandas/tests/io/formats/test_eng_formatting.pyc 2706${PYSITELIB}/pandas/tests/io/formats/test_eng_formatting.pyc
2306${PYSITELIB}/pandas/tests/io/formats/test_eng_formatting.pyo 2707${PYSITELIB}/pandas/tests/io/formats/test_eng_formatting.pyo
2307${PYSITELIB}/pandas/tests/io/formats/test_format.py 2708${PYSITELIB}/pandas/tests/io/formats/test_format.py
2308${PYSITELIB}/pandas/tests/io/formats/test_format.pyc 2709${PYSITELIB}/pandas/tests/io/formats/test_format.pyc
2309${PYSITELIB}/pandas/tests/io/formats/test_format.pyo 2710${PYSITELIB}/pandas/tests/io/formats/test_format.pyo
2310${PYSITELIB}/pandas/tests/io/formats/test_info.py 2711${PYSITELIB}/pandas/tests/io/formats/test_info.py
2311${PYSITELIB}/pandas/tests/io/formats/test_info.pyc 2712${PYSITELIB}/pandas/tests/io/formats/test_info.pyc
2312${PYSITELIB}/pandas/tests/io/formats/test_info.pyo 2713${PYSITELIB}/pandas/tests/io/formats/test_info.pyo
2313${PYSITELIB}/pandas/tests/io/formats/test_printing.py 2714${PYSITELIB}/pandas/tests/io/formats/test_printing.py
2314${PYSITELIB}/pandas/tests/io/formats/test_printing.pyc 2715${PYSITELIB}/pandas/tests/io/formats/test_printing.pyc
2315${PYSITELIB}/pandas/tests/io/formats/test_printing.pyo 2716${PYSITELIB}/pandas/tests/io/formats/test_printing.pyo
2316${PYSITELIB}/pandas/tests/io/formats/test_style.py 
2317${PYSITELIB}/pandas/tests/io/formats/test_style.pyc 
2318${PYSITELIB}/pandas/tests/io/formats/test_style.pyo 
2319${PYSITELIB}/pandas/tests/io/formats/test_to_csv.py 2717${PYSITELIB}/pandas/tests/io/formats/test_to_csv.py
2320${PYSITELIB}/pandas/tests/io/formats/test_to_csv.pyc 2718${PYSITELIB}/pandas/tests/io/formats/test_to_csv.pyc
2321${PYSITELIB}/pandas/tests/io/formats/test_to_csv.pyo 2719${PYSITELIB}/pandas/tests/io/formats/test_to_csv.pyo
2322${PYSITELIB}/pandas/tests/io/formats/test_to_excel.py 2720${PYSITELIB}/pandas/tests/io/formats/test_to_excel.py
2323${PYSITELIB}/pandas/tests/io/formats/test_to_excel.pyc 2721${PYSITELIB}/pandas/tests/io/formats/test_to_excel.pyc
2324${PYSITELIB}/pandas/tests/io/formats/test_to_excel.pyo 2722${PYSITELIB}/pandas/tests/io/formats/test_to_excel.pyo
2325${PYSITELIB}/pandas/tests/io/formats/test_to_html.py 2723${PYSITELIB}/pandas/tests/io/formats/test_to_html.py
2326${PYSITELIB}/pandas/tests/io/formats/test_to_html.pyc 2724${PYSITELIB}/pandas/tests/io/formats/test_to_html.pyc
2327${PYSITELIB}/pandas/tests/io/formats/test_to_html.pyo 2725${PYSITELIB}/pandas/tests/io/formats/test_to_html.pyo
2328${PYSITELIB}/pandas/tests/io/formats/test_to_latex.py 2726${PYSITELIB}/pandas/tests/io/formats/test_to_latex.py
2329${PYSITELIB}/pandas/tests/io/formats/test_to_latex.pyc 2727${PYSITELIB}/pandas/tests/io/formats/test_to_latex.pyc
2330${PYSITELIB}/pandas/tests/io/formats/test_to_latex.pyo 2728${PYSITELIB}/pandas/tests/io/formats/test_to_latex.pyo
2331${PYSITELIB}/pandas/tests/io/formats/test_to_markdown.py 2729${PYSITELIB}/pandas/tests/io/formats/test_to_markdown.py
@@ -2357,50 +2755,95 @@ ${PYSITELIB}/pandas/tests/io/json/test_n @@ -2357,50 +2755,95 @@ ${PYSITELIB}/pandas/tests/io/json/test_n
2357${PYSITELIB}/pandas/tests/io/json/test_normalize.pyo 2755${PYSITELIB}/pandas/tests/io/json/test_normalize.pyo
2358${PYSITELIB}/pandas/tests/io/json/test_pandas.py 2756${PYSITELIB}/pandas/tests/io/json/test_pandas.py
2359${PYSITELIB}/pandas/tests/io/json/test_pandas.pyc 2757${PYSITELIB}/pandas/tests/io/json/test_pandas.pyc
2360${PYSITELIB}/pandas/tests/io/json/test_pandas.pyo 2758${PYSITELIB}/pandas/tests/io/json/test_pandas.pyo
2361${PYSITELIB}/pandas/tests/io/json/test_readlines.py 2759${PYSITELIB}/pandas/tests/io/json/test_readlines.py
2362${PYSITELIB}/pandas/tests/io/json/test_readlines.pyc 2760${PYSITELIB}/pandas/tests/io/json/test_readlines.pyc
2363${PYSITELIB}/pandas/tests/io/json/test_readlines.pyo 2761${PYSITELIB}/pandas/tests/io/json/test_readlines.pyo
2364${PYSITELIB}/pandas/tests/io/json/test_ujson.py 2762${PYSITELIB}/pandas/tests/io/json/test_ujson.py
2365${PYSITELIB}/pandas/tests/io/json/test_ujson.pyc 2763${PYSITELIB}/pandas/tests/io/json/test_ujson.pyc
2366${PYSITELIB}/pandas/tests/io/json/test_ujson.pyo 2764${PYSITELIB}/pandas/tests/io/json/test_ujson.pyo
2367${PYSITELIB}/pandas/tests/io/parser/__init__.py 2765${PYSITELIB}/pandas/tests/io/parser/__init__.py
2368${PYSITELIB}/pandas/tests/io/parser/__init__.pyc 2766${PYSITELIB}/pandas/tests/io/parser/__init__.pyc
2369${PYSITELIB}/pandas/tests/io/parser/__init__.pyo 2767${PYSITELIB}/pandas/tests/io/parser/__init__.pyo
 2768${PYSITELIB}/pandas/tests/io/parser/common/__init__.py
 2769${PYSITELIB}/pandas/tests/io/parser/common/__init__.pyc
 2770${PYSITELIB}/pandas/tests/io/parser/common/__init__.pyo
 2771${PYSITELIB}/pandas/tests/io/parser/common/test_chunksize.py
 2772${PYSITELIB}/pandas/tests/io/parser/common/test_chunksize.pyc
 2773${PYSITELIB}/pandas/tests/io/parser/common/test_chunksize.pyo
 2774${PYSITELIB}/pandas/tests/io/parser/common/test_common_basic.py
 2775${PYSITELIB}/pandas/tests/io/parser/common/test_common_basic.pyc
 2776${PYSITELIB}/pandas/tests/io/parser/common/test_common_basic.pyo
 2777${PYSITELIB}/pandas/tests/io/parser/common/test_data_list.py
 2778${PYSITELIB}/pandas/tests/io/parser/common/test_data_list.pyc
 2779${PYSITELIB}/pandas/tests/io/parser/common/test_data_list.pyo
 2780${PYSITELIB}/pandas/tests/io/parser/common/test_decimal.py
 2781${PYSITELIB}/pandas/tests/io/parser/common/test_decimal.pyc
 2782${PYSITELIB}/pandas/tests/io/parser/common/test_decimal.pyo
 2783${PYSITELIB}/pandas/tests/io/parser/common/test_file_buffer_url.py
 2784${PYSITELIB}/pandas/tests/io/parser/common/test_file_buffer_url.pyc
 2785${PYSITELIB}/pandas/tests/io/parser/common/test_file_buffer_url.pyo
 2786${PYSITELIB}/pandas/tests/io/parser/common/test_float.py
 2787${PYSITELIB}/pandas/tests/io/parser/common/test_float.pyc
 2788${PYSITELIB}/pandas/tests/io/parser/common/test_float.pyo
 2789${PYSITELIB}/pandas/tests/io/parser/common/test_index.py
 2790${PYSITELIB}/pandas/tests/io/parser/common/test_index.pyc
 2791${PYSITELIB}/pandas/tests/io/parser/common/test_index.pyo
 2792${PYSITELIB}/pandas/tests/io/parser/common/test_inf.py
 2793${PYSITELIB}/pandas/tests/io/parser/common/test_inf.pyc
 2794${PYSITELIB}/pandas/tests/io/parser/common/test_inf.pyo
 2795${PYSITELIB}/pandas/tests/io/parser/common/test_ints.py
 2796${PYSITELIB}/pandas/tests/io/parser/common/test_ints.pyc
 2797${PYSITELIB}/pandas/tests/io/parser/common/test_ints.pyo
 2798${PYSITELIB}/pandas/tests/io/parser/common/test_iterator.py
 2799${PYSITELIB}/pandas/tests/io/parser/common/test_iterator.pyc
 2800${PYSITELIB}/pandas/tests/io/parser/common/test_iterator.pyo
 2801${PYSITELIB}/pandas/tests/io/parser/common/test_read_errors.py
 2802${PYSITELIB}/pandas/tests/io/parser/common/test_read_errors.pyc
 2803${PYSITELIB}/pandas/tests/io/parser/common/test_read_errors.pyo
 2804${PYSITELIB}/pandas/tests/io/parser/common/test_verbose.py
 2805${PYSITELIB}/pandas/tests/io/parser/common/test_verbose.pyc
 2806${PYSITELIB}/pandas/tests/io/parser/common/test_verbose.pyo
2370${PYSITELIB}/pandas/tests/io/parser/conftest.py 2807${PYSITELIB}/pandas/tests/io/parser/conftest.py
2371${PYSITELIB}/pandas/tests/io/parser/conftest.pyc 2808${PYSITELIB}/pandas/tests/io/parser/conftest.pyc
2372${PYSITELIB}/pandas/tests/io/parser/conftest.pyo 2809${PYSITELIB}/pandas/tests/io/parser/conftest.pyo
 2810${PYSITELIB}/pandas/tests/io/parser/dtypes/__init__.py
 2811${PYSITELIB}/pandas/tests/io/parser/dtypes/__init__.pyc
 2812${PYSITELIB}/pandas/tests/io/parser/dtypes/__init__.pyo
 2813${PYSITELIB}/pandas/tests/io/parser/dtypes/test_categorical.py
 2814${PYSITELIB}/pandas/tests/io/parser/dtypes/test_categorical.pyc
 2815${PYSITELIB}/pandas/tests/io/parser/dtypes/test_categorical.pyo
 2816${PYSITELIB}/pandas/tests/io/parser/dtypes/test_dtypes_basic.py
 2817${PYSITELIB}/pandas/tests/io/parser/dtypes/test_dtypes_basic.pyc
 2818${PYSITELIB}/pandas/tests/io/parser/dtypes/test_dtypes_basic.pyo
 2819${PYSITELIB}/pandas/tests/io/parser/dtypes/test_empty.py
 2820${PYSITELIB}/pandas/tests/io/parser/dtypes/test_empty.pyc
 2821${PYSITELIB}/pandas/tests/io/parser/dtypes/test_empty.pyo
2373${PYSITELIB}/pandas/tests/io/parser/test_c_parser_only.py 2822${PYSITELIB}/pandas/tests/io/parser/test_c_parser_only.py
2374${PYSITELIB}/pandas/tests/io/parser/test_c_parser_only.pyc 2823${PYSITELIB}/pandas/tests/io/parser/test_c_parser_only.pyc
2375${PYSITELIB}/pandas/tests/io/parser/test_c_parser_only.pyo 2824${PYSITELIB}/pandas/tests/io/parser/test_c_parser_only.pyo
2376${PYSITELIB}/pandas/tests/io/parser/test_comment.py 2825${PYSITELIB}/pandas/tests/io/parser/test_comment.py
2377${PYSITELIB}/pandas/tests/io/parser/test_comment.pyc 2826${PYSITELIB}/pandas/tests/io/parser/test_comment.pyc
2378${PYSITELIB}/pandas/tests/io/parser/test_comment.pyo 2827${PYSITELIB}/pandas/tests/io/parser/test_comment.pyo
2379${PYSITELIB}/pandas/tests/io/parser/test_common.py 
2380${PYSITELIB}/pandas/tests/io/parser/test_common.pyc 
2381${PYSITELIB}/pandas/tests/io/parser/test_common.pyo 
2382${PYSITELIB}/pandas/tests/io/parser/test_compression.py 2828${PYSITELIB}/pandas/tests/io/parser/test_compression.py
2383${PYSITELIB}/pandas/tests/io/parser/test_compression.pyc 2829${PYSITELIB}/pandas/tests/io/parser/test_compression.pyc
2384${PYSITELIB}/pandas/tests/io/parser/test_compression.pyo 2830${PYSITELIB}/pandas/tests/io/parser/test_compression.pyo
2385${PYSITELIB}/pandas/tests/io/parser/test_converters.py 2831${PYSITELIB}/pandas/tests/io/parser/test_converters.py
2386${PYSITELIB}/pandas/tests/io/parser/test_converters.pyc 2832${PYSITELIB}/pandas/tests/io/parser/test_converters.pyc
2387${PYSITELIB}/pandas/tests/io/parser/test_converters.pyo 2833${PYSITELIB}/pandas/tests/io/parser/test_converters.pyo
2388${PYSITELIB}/pandas/tests/io/parser/test_dialect.py 2834${PYSITELIB}/pandas/tests/io/parser/test_dialect.py
2389${PYSITELIB}/pandas/tests/io/parser/test_dialect.pyc 2835${PYSITELIB}/pandas/tests/io/parser/test_dialect.pyc
2390${PYSITELIB}/pandas/tests/io/parser/test_dialect.pyo 2836${PYSITELIB}/pandas/tests/io/parser/test_dialect.pyo
2391${PYSITELIB}/pandas/tests/io/parser/test_dtypes.py 
2392${PYSITELIB}/pandas/tests/io/parser/test_dtypes.pyc 
2393${PYSITELIB}/pandas/tests/io/parser/test_dtypes.pyo 
2394${PYSITELIB}/pandas/tests/io/parser/test_encoding.py 2837${PYSITELIB}/pandas/tests/io/parser/test_encoding.py
2395${PYSITELIB}/pandas/tests/io/parser/test_encoding.pyc 2838${PYSITELIB}/pandas/tests/io/parser/test_encoding.pyc
2396${PYSITELIB}/pandas/tests/io/parser/test_encoding.pyo 2839${PYSITELIB}/pandas/tests/io/parser/test_encoding.pyo
2397${PYSITELIB}/pandas/tests/io/parser/test_header.py 2840${PYSITELIB}/pandas/tests/io/parser/test_header.py
2398${PYSITELIB}/pandas/tests/io/parser/test_header.pyc 2841${PYSITELIB}/pandas/tests/io/parser/test_header.pyc
2399${PYSITELIB}/pandas/tests/io/parser/test_header.pyo 2842${PYSITELIB}/pandas/tests/io/parser/test_header.pyo
2400${PYSITELIB}/pandas/tests/io/parser/test_index_col.py 2843${PYSITELIB}/pandas/tests/io/parser/test_index_col.py
2401${PYSITELIB}/pandas/tests/io/parser/test_index_col.pyc 2844${PYSITELIB}/pandas/tests/io/parser/test_index_col.pyc
2402${PYSITELIB}/pandas/tests/io/parser/test_index_col.pyo 2845${PYSITELIB}/pandas/tests/io/parser/test_index_col.pyo
2403${PYSITELIB}/pandas/tests/io/parser/test_mangle_dupes.py 2846${PYSITELIB}/pandas/tests/io/parser/test_mangle_dupes.py
2404${PYSITELIB}/pandas/tests/io/parser/test_mangle_dupes.pyc 2847${PYSITELIB}/pandas/tests/io/parser/test_mangle_dupes.pyc
2405${PYSITELIB}/pandas/tests/io/parser/test_mangle_dupes.pyo 2848${PYSITELIB}/pandas/tests/io/parser/test_mangle_dupes.pyo
2406${PYSITELIB}/pandas/tests/io/parser/test_multi_thread.py 2849${PYSITELIB}/pandas/tests/io/parser/test_multi_thread.py
@@ -2423,50 +2866,95 @@ ${PYSITELIB}/pandas/tests/io/parser/test @@ -2423,50 +2866,95 @@ ${PYSITELIB}/pandas/tests/io/parser/test
2423${PYSITELIB}/pandas/tests/io/parser/test_quoting.pyo 2866${PYSITELIB}/pandas/tests/io/parser/test_quoting.pyo
2424${PYSITELIB}/pandas/tests/io/parser/test_read_fwf.py 2867${PYSITELIB}/pandas/tests/io/parser/test_read_fwf.py
2425${PYSITELIB}/pandas/tests/io/parser/test_read_fwf.pyc 2868${PYSITELIB}/pandas/tests/io/parser/test_read_fwf.pyc
2426${PYSITELIB}/pandas/tests/io/parser/test_read_fwf.pyo 2869${PYSITELIB}/pandas/tests/io/parser/test_read_fwf.pyo
2427${PYSITELIB}/pandas/tests/io/parser/test_skiprows.py 2870${PYSITELIB}/pandas/tests/io/parser/test_skiprows.py
2428${PYSITELIB}/pandas/tests/io/parser/test_skiprows.pyc 2871${PYSITELIB}/pandas/tests/io/parser/test_skiprows.pyc
2429${PYSITELIB}/pandas/tests/io/parser/test_skiprows.pyo 2872${PYSITELIB}/pandas/tests/io/parser/test_skiprows.pyo
2430${PYSITELIB}/pandas/tests/io/parser/test_textreader.py 2873${PYSITELIB}/pandas/tests/io/parser/test_textreader.py
2431${PYSITELIB}/pandas/tests/io/parser/test_textreader.pyc 2874${PYSITELIB}/pandas/tests/io/parser/test_textreader.pyc
2432${PYSITELIB}/pandas/tests/io/parser/test_textreader.pyo 2875${PYSITELIB}/pandas/tests/io/parser/test_textreader.pyo
2433${PYSITELIB}/pandas/tests/io/parser/test_unsupported.py 2876${PYSITELIB}/pandas/tests/io/parser/test_unsupported.py
2434${PYSITELIB}/pandas/tests/io/parser/test_unsupported.pyc 2877${PYSITELIB}/pandas/tests/io/parser/test_unsupported.pyc
2435${PYSITELIB}/pandas/tests/io/parser/test_unsupported.pyo 2878${PYSITELIB}/pandas/tests/io/parser/test_unsupported.pyo
2436${PYSITELIB}/pandas/tests/io/parser/test_usecols.py 2879${PYSITELIB}/pandas/tests/io/parser/usecols/__init__.py
2437${PYSITELIB}/pandas/tests/io/parser/test_usecols.pyc 2880${PYSITELIB}/pandas/tests/io/parser/usecols/__init__.pyc
2438${PYSITELIB}/pandas/tests/io/parser/test_usecols.pyo 2881${PYSITELIB}/pandas/tests/io/parser/usecols/__init__.pyo
 2882${PYSITELIB}/pandas/tests/io/parser/usecols/test_parse_dates.py
 2883${PYSITELIB}/pandas/tests/io/parser/usecols/test_parse_dates.pyc
 2884${PYSITELIB}/pandas/tests/io/parser/usecols/test_parse_dates.pyo
 2885${PYSITELIB}/pandas/tests/io/parser/usecols/test_strings.py
 2886${PYSITELIB}/pandas/tests/io/parser/usecols/test_strings.pyc
 2887${PYSITELIB}/pandas/tests/io/parser/usecols/test_strings.pyo
 2888${PYSITELIB}/pandas/tests/io/parser/usecols/test_usecols_basic.py
 2889${PYSITELIB}/pandas/tests/io/parser/usecols/test_usecols_basic.pyc
 2890${PYSITELIB}/pandas/tests/io/parser/usecols/test_usecols_basic.pyo
2439${PYSITELIB}/pandas/tests/io/pytables/__init__.py 2891${PYSITELIB}/pandas/tests/io/pytables/__init__.py
2440${PYSITELIB}/pandas/tests/io/pytables/__init__.pyc 2892${PYSITELIB}/pandas/tests/io/pytables/__init__.pyc
2441${PYSITELIB}/pandas/tests/io/pytables/__init__.pyo 2893${PYSITELIB}/pandas/tests/io/pytables/__init__.pyo
2442${PYSITELIB}/pandas/tests/io/pytables/common.py 2894${PYSITELIB}/pandas/tests/io/pytables/common.py
2443${PYSITELIB}/pandas/tests/io/pytables/common.pyc 2895${PYSITELIB}/pandas/tests/io/pytables/common.pyc
2444${PYSITELIB}/pandas/tests/io/pytables/common.pyo 2896${PYSITELIB}/pandas/tests/io/pytables/common.pyo
2445${PYSITELIB}/pandas/tests/io/pytables/conftest.py 2897${PYSITELIB}/pandas/tests/io/pytables/conftest.py
2446${PYSITELIB}/pandas/tests/io/pytables/conftest.pyc 2898${PYSITELIB}/pandas/tests/io/pytables/conftest.pyc
2447${PYSITELIB}/pandas/tests/io/pytables/conftest.pyo 2899${PYSITELIB}/pandas/tests/io/pytables/conftest.pyo
 2900${PYSITELIB}/pandas/tests/io/pytables/test_append.py
 2901${PYSITELIB}/pandas/tests/io/pytables/test_append.pyc
 2902${PYSITELIB}/pandas/tests/io/pytables/test_append.pyo
 2903${PYSITELIB}/pandas/tests/io/pytables/test_categorical.py
 2904${PYSITELIB}/pandas/tests/io/pytables/test_categorical.pyc
 2905${PYSITELIB}/pandas/tests/io/pytables/test_categorical.pyo
2448${PYSITELIB}/pandas/tests/io/pytables/test_compat.py 2906${PYSITELIB}/pandas/tests/io/pytables/test_compat.py
2449${PYSITELIB}/pandas/tests/io/pytables/test_compat.pyc 2907${PYSITELIB}/pandas/tests/io/pytables/test_compat.pyc
2450${PYSITELIB}/pandas/tests/io/pytables/test_compat.pyo 2908${PYSITELIB}/pandas/tests/io/pytables/test_compat.pyo
2451${PYSITELIB}/pandas/tests/io/pytables/test_complex.py 2909${PYSITELIB}/pandas/tests/io/pytables/test_complex.py
2452${PYSITELIB}/pandas/tests/io/pytables/test_complex.pyc 2910${PYSITELIB}/pandas/tests/io/pytables/test_complex.pyc
2453${PYSITELIB}/pandas/tests/io/pytables/test_complex.pyo 2911${PYSITELIB}/pandas/tests/io/pytables/test_complex.pyo
 2912${PYSITELIB}/pandas/tests/io/pytables/test_errors.py
 2913${PYSITELIB}/pandas/tests/io/pytables/test_errors.pyc
 2914${PYSITELIB}/pandas/tests/io/pytables/test_errors.pyo
 2915${PYSITELIB}/pandas/tests/io/pytables/test_file_handling.py
 2916${PYSITELIB}/pandas/tests/io/pytables/test_file_handling.pyc
 2917${PYSITELIB}/pandas/tests/io/pytables/test_file_handling.pyo
 2918${PYSITELIB}/pandas/tests/io/pytables/test_keys.py
 2919${PYSITELIB}/pandas/tests/io/pytables/test_keys.pyc
 2920${PYSITELIB}/pandas/tests/io/pytables/test_keys.pyo
 2921${PYSITELIB}/pandas/tests/io/pytables/test_put.py
 2922${PYSITELIB}/pandas/tests/io/pytables/test_put.pyc
 2923${PYSITELIB}/pandas/tests/io/pytables/test_put.pyo
2454${PYSITELIB}/pandas/tests/io/pytables/test_pytables_missing.py 2924${PYSITELIB}/pandas/tests/io/pytables/test_pytables_missing.py
2455${PYSITELIB}/pandas/tests/io/pytables/test_pytables_missing.pyc 2925${PYSITELIB}/pandas/tests/io/pytables/test_pytables_missing.pyc
2456${PYSITELIB}/pandas/tests/io/pytables/test_pytables_missing.pyo 2926${PYSITELIB}/pandas/tests/io/pytables/test_pytables_missing.pyo
 2927${PYSITELIB}/pandas/tests/io/pytables/test_read.py
 2928${PYSITELIB}/pandas/tests/io/pytables/test_read.pyc
 2929${PYSITELIB}/pandas/tests/io/pytables/test_read.pyo
 2930${PYSITELIB}/pandas/tests/io/pytables/test_retain_attributes.py
 2931${PYSITELIB}/pandas/tests/io/pytables/test_retain_attributes.pyc
 2932${PYSITELIB}/pandas/tests/io/pytables/test_retain_attributes.pyo
 2933${PYSITELIB}/pandas/tests/io/pytables/test_round_trip.py
 2934${PYSITELIB}/pandas/tests/io/pytables/test_round_trip.pyc
 2935${PYSITELIB}/pandas/tests/io/pytables/test_round_trip.pyo
 2936${PYSITELIB}/pandas/tests/io/pytables/test_select.py
 2937${PYSITELIB}/pandas/tests/io/pytables/test_select.pyc
 2938${PYSITELIB}/pandas/tests/io/pytables/test_select.pyo
2457${PYSITELIB}/pandas/tests/io/pytables/test_store.py 2939${PYSITELIB}/pandas/tests/io/pytables/test_store.py
2458${PYSITELIB}/pandas/tests/io/pytables/test_store.pyc 2940${PYSITELIB}/pandas/tests/io/pytables/test_store.pyc
2459${PYSITELIB}/pandas/tests/io/pytables/test_store.pyo 2941${PYSITELIB}/pandas/tests/io/pytables/test_store.pyo
 2942${PYSITELIB}/pandas/tests/io/pytables/test_subclass.py
 2943${PYSITELIB}/pandas/tests/io/pytables/test_subclass.pyc
 2944${PYSITELIB}/pandas/tests/io/pytables/test_subclass.pyo
 2945${PYSITELIB}/pandas/tests/io/pytables/test_time_series.py
 2946${PYSITELIB}/pandas/tests/io/pytables/test_time_series.pyc
 2947${PYSITELIB}/pandas/tests/io/pytables/test_time_series.pyo
2460${PYSITELIB}/pandas/tests/io/pytables/test_timezones.py 2948${PYSITELIB}/pandas/tests/io/pytables/test_timezones.py
2461${PYSITELIB}/pandas/tests/io/pytables/test_timezones.pyc 2949${PYSITELIB}/pandas/tests/io/pytables/test_timezones.pyc
2462${PYSITELIB}/pandas/tests/io/pytables/test_timezones.pyo 2950${PYSITELIB}/pandas/tests/io/pytables/test_timezones.pyo
2463${PYSITELIB}/pandas/tests/io/sas/__init__.py 2951${PYSITELIB}/pandas/tests/io/sas/__init__.py
2464${PYSITELIB}/pandas/tests/io/sas/__init__.pyc 2952${PYSITELIB}/pandas/tests/io/sas/__init__.pyc
2465${PYSITELIB}/pandas/tests/io/sas/__init__.pyo 2953${PYSITELIB}/pandas/tests/io/sas/__init__.pyo
2466${PYSITELIB}/pandas/tests/io/sas/test_sas.py 2954${PYSITELIB}/pandas/tests/io/sas/test_sas.py
2467${PYSITELIB}/pandas/tests/io/sas/test_sas.pyc 2955${PYSITELIB}/pandas/tests/io/sas/test_sas.pyc
2468${PYSITELIB}/pandas/tests/io/sas/test_sas.pyo 2956${PYSITELIB}/pandas/tests/io/sas/test_sas.pyo
2469${PYSITELIB}/pandas/tests/io/sas/test_sas7bdat.py 2957${PYSITELIB}/pandas/tests/io/sas/test_sas7bdat.py
2470${PYSITELIB}/pandas/tests/io/sas/test_sas7bdat.pyc 2958${PYSITELIB}/pandas/tests/io/sas/test_sas7bdat.pyc
2471${PYSITELIB}/pandas/tests/io/sas/test_sas7bdat.pyo 2959${PYSITELIB}/pandas/tests/io/sas/test_sas7bdat.pyo
2472${PYSITELIB}/pandas/tests/io/sas/test_xport.py 2960${PYSITELIB}/pandas/tests/io/sas/test_xport.py
@@ -2510,26 +2998,35 @@ ${PYSITELIB}/pandas/tests/io/test_pickle @@ -2510,26 +2998,35 @@ ${PYSITELIB}/pandas/tests/io/test_pickle
2510${PYSITELIB}/pandas/tests/io/test_pickle.pyo 2998${PYSITELIB}/pandas/tests/io/test_pickle.pyo
2511${PYSITELIB}/pandas/tests/io/test_s3.py 2999${PYSITELIB}/pandas/tests/io/test_s3.py
2512${PYSITELIB}/pandas/tests/io/test_s3.pyc 3000${PYSITELIB}/pandas/tests/io/test_s3.pyc
2513${PYSITELIB}/pandas/tests/io/test_s3.pyo 3001${PYSITELIB}/pandas/tests/io/test_s3.pyo
2514${PYSITELIB}/pandas/tests/io/test_spss.py 3002${PYSITELIB}/pandas/tests/io/test_spss.py
2515${PYSITELIB}/pandas/tests/io/test_spss.pyc 3003${PYSITELIB}/pandas/tests/io/test_spss.pyc
2516${PYSITELIB}/pandas/tests/io/test_spss.pyo 3004${PYSITELIB}/pandas/tests/io/test_spss.pyo
2517${PYSITELIB}/pandas/tests/io/test_sql.py 3005${PYSITELIB}/pandas/tests/io/test_sql.py
2518${PYSITELIB}/pandas/tests/io/test_sql.pyc 3006${PYSITELIB}/pandas/tests/io/test_sql.pyc
2519${PYSITELIB}/pandas/tests/io/test_sql.pyo 3007${PYSITELIB}/pandas/tests/io/test_sql.pyo
2520${PYSITELIB}/pandas/tests/io/test_stata.py 3008${PYSITELIB}/pandas/tests/io/test_stata.py
2521${PYSITELIB}/pandas/tests/io/test_stata.pyc 3009${PYSITELIB}/pandas/tests/io/test_stata.pyc
2522${PYSITELIB}/pandas/tests/io/test_stata.pyo 3010${PYSITELIB}/pandas/tests/io/test_stata.pyo
 3011${PYSITELIB}/pandas/tests/io/test_user_agent.py
 3012${PYSITELIB}/pandas/tests/io/test_user_agent.pyc
 3013${PYSITELIB}/pandas/tests/io/test_user_agent.pyo
 3014${PYSITELIB}/pandas/tests/io/xml/test_to_xml.py
 3015${PYSITELIB}/pandas/tests/io/xml/test_to_xml.pyc
 3016${PYSITELIB}/pandas/tests/io/xml/test_to_xml.pyo
 3017${PYSITELIB}/pandas/tests/io/xml/test_xml.py
 3018${PYSITELIB}/pandas/tests/io/xml/test_xml.pyc
 3019${PYSITELIB}/pandas/tests/io/xml/test_xml.pyo
2523${PYSITELIB}/pandas/tests/libs/__init__.py 3020${PYSITELIB}/pandas/tests/libs/__init__.py
2524${PYSITELIB}/pandas/tests/libs/__init__.pyc 3021${PYSITELIB}/pandas/tests/libs/__init__.pyc
2525${PYSITELIB}/pandas/tests/libs/__init__.pyo 3022${PYSITELIB}/pandas/tests/libs/__init__.pyo
2526${PYSITELIB}/pandas/tests/libs/test_hashtable.py 3023${PYSITELIB}/pandas/tests/libs/test_hashtable.py
2527${PYSITELIB}/pandas/tests/libs/test_hashtable.pyc 3024${PYSITELIB}/pandas/tests/libs/test_hashtable.pyc
2528${PYSITELIB}/pandas/tests/libs/test_hashtable.pyo 3025${PYSITELIB}/pandas/tests/libs/test_hashtable.pyo
2529${PYSITELIB}/pandas/tests/libs/test_join.py 3026${PYSITELIB}/pandas/tests/libs/test_join.py
2530${PYSITELIB}/pandas/tests/libs/test_join.pyc 3027${PYSITELIB}/pandas/tests/libs/test_join.pyc
2531${PYSITELIB}/pandas/tests/libs/test_join.pyo 3028${PYSITELIB}/pandas/tests/libs/test_join.pyo
2532${PYSITELIB}/pandas/tests/libs/test_lib.py 3029${PYSITELIB}/pandas/tests/libs/test_lib.py
2533${PYSITELIB}/pandas/tests/libs/test_lib.pyc 3030${PYSITELIB}/pandas/tests/libs/test_lib.pyc
2534${PYSITELIB}/pandas/tests/libs/test_lib.pyo 3031${PYSITELIB}/pandas/tests/libs/test_lib.pyo
2535${PYSITELIB}/pandas/tests/plotting/__init__.py 3032${PYSITELIB}/pandas/tests/plotting/__init__.py
@@ -2540,26 +3037,29 @@ ${PYSITELIB}/pandas/tests/plotting/commo @@ -2540,26 +3037,29 @@ ${PYSITELIB}/pandas/tests/plotting/commo
2540${PYSITELIB}/pandas/tests/plotting/common.pyo 3037${PYSITELIB}/pandas/tests/plotting/common.pyo
2541${PYSITELIB}/pandas/tests/plotting/frame/__init__.py 3038${PYSITELIB}/pandas/tests/plotting/frame/__init__.py
2542${PYSITELIB}/pandas/tests/plotting/frame/__init__.pyc 3039${PYSITELIB}/pandas/tests/plotting/frame/__init__.pyc
2543${PYSITELIB}/pandas/tests/plotting/frame/__init__.pyo 3040${PYSITELIB}/pandas/tests/plotting/frame/__init__.pyo
2544${PYSITELIB}/pandas/tests/plotting/frame/test_frame.py 3041${PYSITELIB}/pandas/tests/plotting/frame/test_frame.py
2545${PYSITELIB}/pandas/tests/plotting/frame/test_frame.pyc 3042${PYSITELIB}/pandas/tests/plotting/frame/test_frame.pyc
2546${PYSITELIB}/pandas/tests/plotting/frame/test_frame.pyo 3043${PYSITELIB}/pandas/tests/plotting/frame/test_frame.pyo
2547${PYSITELIB}/pandas/tests/plotting/frame/test_frame_color.py 3044${PYSITELIB}/pandas/tests/plotting/frame/test_frame_color.py
2548${PYSITELIB}/pandas/tests/plotting/frame/test_frame_color.pyc 3045${PYSITELIB}/pandas/tests/plotting/frame/test_frame_color.pyc
2549${PYSITELIB}/pandas/tests/plotting/frame/test_frame_color.pyo 3046${PYSITELIB}/pandas/tests/plotting/frame/test_frame_color.pyo
2550${PYSITELIB}/pandas/tests/plotting/frame/test_frame_groupby.py 3047${PYSITELIB}/pandas/tests/plotting/frame/test_frame_groupby.py
2551${PYSITELIB}/pandas/tests/plotting/frame/test_frame_groupby.pyc 3048${PYSITELIB}/pandas/tests/plotting/frame/test_frame_groupby.pyc
2552${PYSITELIB}/pandas/tests/plotting/frame/test_frame_groupby.pyo 3049${PYSITELIB}/pandas/tests/plotting/frame/test_frame_groupby.pyo
 3050${PYSITELIB}/pandas/tests/plotting/frame/test_frame_legend.py
 3051${PYSITELIB}/pandas/tests/plotting/frame/test_frame_legend.pyc
 3052${PYSITELIB}/pandas/tests/plotting/frame/test_frame_legend.pyo
2553${PYSITELIB}/pandas/tests/plotting/frame/test_frame_subplots.py 3053${PYSITELIB}/pandas/tests/plotting/frame/test_frame_subplots.py
2554${PYSITELIB}/pandas/tests/plotting/frame/test_frame_subplots.pyc 3054${PYSITELIB}/pandas/tests/plotting/frame/test_frame_subplots.pyc
2555${PYSITELIB}/pandas/tests/plotting/frame/test_frame_subplots.pyo 3055${PYSITELIB}/pandas/tests/plotting/frame/test_frame_subplots.pyo
2556${PYSITELIB}/pandas/tests/plotting/test_backend.py 3056${PYSITELIB}/pandas/tests/plotting/test_backend.py
2557${PYSITELIB}/pandas/tests/plotting/test_backend.pyc 3057${PYSITELIB}/pandas/tests/plotting/test_backend.pyc
2558${PYSITELIB}/pandas/tests/plotting/test_backend.pyo 3058${PYSITELIB}/pandas/tests/plotting/test_backend.pyo
2559${PYSITELIB}/pandas/tests/plotting/test_boxplot_method.py 3059${PYSITELIB}/pandas/tests/plotting/test_boxplot_method.py
2560${PYSITELIB}/pandas/tests/plotting/test_boxplot_method.pyc 3060${PYSITELIB}/pandas/tests/plotting/test_boxplot_method.pyc
2561${PYSITELIB}/pandas/tests/plotting/test_boxplot_method.pyo 3061${PYSITELIB}/pandas/tests/plotting/test_boxplot_method.pyo
2562${PYSITELIB}/pandas/tests/plotting/test_common.py 3062${PYSITELIB}/pandas/tests/plotting/test_common.py
2563${PYSITELIB}/pandas/tests/plotting/test_common.pyc 3063${PYSITELIB}/pandas/tests/plotting/test_common.pyc
2564${PYSITELIB}/pandas/tests/plotting/test_common.pyo 3064${PYSITELIB}/pandas/tests/plotting/test_common.pyo
2565${PYSITELIB}/pandas/tests/plotting/test_converter.py 3065${PYSITELIB}/pandas/tests/plotting/test_converter.py
@@ -2792,62 +3292,47 @@ ${PYSITELIB}/pandas/tests/series/accesso @@ -2792,62 +3292,47 @@ ${PYSITELIB}/pandas/tests/series/accesso
2792${PYSITELIB}/pandas/tests/series/accessors/__init__.pyo 3292${PYSITELIB}/pandas/tests/series/accessors/__init__.pyo
2793${PYSITELIB}/pandas/tests/series/accessors/test_cat_accessor.py 3293${PYSITELIB}/pandas/tests/series/accessors/test_cat_accessor.py
2794${PYSITELIB}/pandas/tests/series/accessors/test_cat_accessor.pyc 3294${PYSITELIB}/pandas/tests/series/accessors/test_cat_accessor.pyc
2795${PYSITELIB}/pandas/tests/series/accessors/test_cat_accessor.pyo 3295${PYSITELIB}/pandas/tests/series/accessors/test_cat_accessor.pyo
2796${PYSITELIB}/pandas/tests/series/accessors/test_dt_accessor.py 3296${PYSITELIB}/pandas/tests/series/accessors/test_dt_accessor.py
2797${PYSITELIB}/pandas/tests/series/accessors/test_dt_accessor.pyc 3297${PYSITELIB}/pandas/tests/series/accessors/test_dt_accessor.pyc
2798${PYSITELIB}/pandas/tests/series/accessors/test_dt_accessor.pyo 3298${PYSITELIB}/pandas/tests/series/accessors/test_dt_accessor.pyo
2799${PYSITELIB}/pandas/tests/series/accessors/test_sparse_accessor.py 3299${PYSITELIB}/pandas/tests/series/accessors/test_sparse_accessor.py
2800${PYSITELIB}/pandas/tests/series/accessors/test_sparse_accessor.pyc 3300${PYSITELIB}/pandas/tests/series/accessors/test_sparse_accessor.pyc
2801${PYSITELIB}/pandas/tests/series/accessors/test_sparse_accessor.pyo 3301${PYSITELIB}/pandas/tests/series/accessors/test_sparse_accessor.pyo
2802${PYSITELIB}/pandas/tests/series/accessors/test_str_accessor.py 3302${PYSITELIB}/pandas/tests/series/accessors/test_str_accessor.py
2803${PYSITELIB}/pandas/tests/series/accessors/test_str_accessor.pyc 3303${PYSITELIB}/pandas/tests/series/accessors/test_str_accessor.pyc
2804${PYSITELIB}/pandas/tests/series/accessors/test_str_accessor.pyo 3304${PYSITELIB}/pandas/tests/series/accessors/test_str_accessor.pyo
2805${PYSITELIB}/pandas/tests/series/apply/__init__.py 
2806${PYSITELIB}/pandas/tests/series/apply/__init__.pyc 
2807${PYSITELIB}/pandas/tests/series/apply/__init__.pyo 
2808${PYSITELIB}/pandas/tests/series/apply/test_apply_relabeling.py 
2809${PYSITELIB}/pandas/tests/series/apply/test_apply_relabeling.pyc 
2810${PYSITELIB}/pandas/tests/series/apply/test_apply_relabeling.pyo 
2811${PYSITELIB}/pandas/tests/series/apply/test_series_apply.py 
2812${PYSITELIB}/pandas/tests/series/apply/test_series_apply.pyc 
2813${PYSITELIB}/pandas/tests/series/apply/test_series_apply.pyo 
2814${PYSITELIB}/pandas/tests/series/apply/test_series_transform.py 
2815${PYSITELIB}/pandas/tests/series/apply/test_series_transform.pyc 
2816${PYSITELIB}/pandas/tests/series/apply/test_series_transform.pyo 
2817${PYSITELIB}/pandas/tests/series/indexing/__init__.py 3305${PYSITELIB}/pandas/tests/series/indexing/__init__.py
2818${PYSITELIB}/pandas/tests/series/indexing/__init__.pyc 3306${PYSITELIB}/pandas/tests/series/indexing/__init__.pyc
2819${PYSITELIB}/pandas/tests/series/indexing/__init__.pyo 3307${PYSITELIB}/pandas/tests/series/indexing/__init__.pyo
2820${PYSITELIB}/pandas/tests/series/indexing/test_datetime.py 3308${PYSITELIB}/pandas/tests/series/indexing/test_datetime.py
2821${PYSITELIB}/pandas/tests/series/indexing/test_datetime.pyc 3309${PYSITELIB}/pandas/tests/series/indexing/test_datetime.pyc
2822${PYSITELIB}/pandas/tests/series/indexing/test_datetime.pyo 3310${PYSITELIB}/pandas/tests/series/indexing/test_datetime.pyo
2823${PYSITELIB}/pandas/tests/series/indexing/test_delitem.py 3311${PYSITELIB}/pandas/tests/series/indexing/test_delitem.py
2824${PYSITELIB}/pandas/tests/series/indexing/test_delitem.pyc 3312${PYSITELIB}/pandas/tests/series/indexing/test_delitem.pyc
2825${PYSITELIB}/pandas/tests/series/indexing/test_delitem.pyo 3313${PYSITELIB}/pandas/tests/series/indexing/test_delitem.pyo
2826${PYSITELIB}/pandas/tests/series/indexing/test_get.py 3314${PYSITELIB}/pandas/tests/series/indexing/test_get.py
2827${PYSITELIB}/pandas/tests/series/indexing/test_get.pyc 3315${PYSITELIB}/pandas/tests/series/indexing/test_get.pyc
2828${PYSITELIB}/pandas/tests/series/indexing/test_get.pyo 3316${PYSITELIB}/pandas/tests/series/indexing/test_get.pyo
2829${PYSITELIB}/pandas/tests/series/indexing/test_getitem.py 3317${PYSITELIB}/pandas/tests/series/indexing/test_getitem.py
2830${PYSITELIB}/pandas/tests/series/indexing/test_getitem.pyc 3318${PYSITELIB}/pandas/tests/series/indexing/test_getitem.pyc
2831${PYSITELIB}/pandas/tests/series/indexing/test_getitem.pyo 3319${PYSITELIB}/pandas/tests/series/indexing/test_getitem.pyo
2832${PYSITELIB}/pandas/tests/series/indexing/test_indexing.py 3320${PYSITELIB}/pandas/tests/series/indexing/test_indexing.py
2833${PYSITELIB}/pandas/tests/series/indexing/test_indexing.pyc 3321${PYSITELIB}/pandas/tests/series/indexing/test_indexing.pyc
2834${PYSITELIB}/pandas/tests/series/indexing/test_indexing.pyo 3322${PYSITELIB}/pandas/tests/series/indexing/test_indexing.pyo
2835${PYSITELIB}/pandas/tests/series/indexing/test_mask.py 3323${PYSITELIB}/pandas/tests/series/indexing/test_mask.py
2836${PYSITELIB}/pandas/tests/series/indexing/test_mask.pyc 3324${PYSITELIB}/pandas/tests/series/indexing/test_mask.pyc
2837${PYSITELIB}/pandas/tests/series/indexing/test_mask.pyo 3325${PYSITELIB}/pandas/tests/series/indexing/test_mask.pyo
2838${PYSITELIB}/pandas/tests/series/indexing/test_numeric.py 
2839${PYSITELIB}/pandas/tests/series/indexing/test_numeric.pyc 
2840${PYSITELIB}/pandas/tests/series/indexing/test_numeric.pyo 
2841${PYSITELIB}/pandas/tests/series/indexing/test_set_value.py 3326${PYSITELIB}/pandas/tests/series/indexing/test_set_value.py
2842${PYSITELIB}/pandas/tests/series/indexing/test_set_value.pyc 3327${PYSITELIB}/pandas/tests/series/indexing/test_set_value.pyc
2843${PYSITELIB}/pandas/tests/series/indexing/test_set_value.pyo 3328${PYSITELIB}/pandas/tests/series/indexing/test_set_value.pyo
2844${PYSITELIB}/pandas/tests/series/indexing/test_setitem.py 3329${PYSITELIB}/pandas/tests/series/indexing/test_setitem.py
2845${PYSITELIB}/pandas/tests/series/indexing/test_setitem.pyc 3330${PYSITELIB}/pandas/tests/series/indexing/test_setitem.pyc
2846${PYSITELIB}/pandas/tests/series/indexing/test_setitem.pyo 3331${PYSITELIB}/pandas/tests/series/indexing/test_setitem.pyo
2847${PYSITELIB}/pandas/tests/series/indexing/test_take.py 3332${PYSITELIB}/pandas/tests/series/indexing/test_take.py
2848${PYSITELIB}/pandas/tests/series/indexing/test_take.pyc 3333${PYSITELIB}/pandas/tests/series/indexing/test_take.pyc
2849${PYSITELIB}/pandas/tests/series/indexing/test_take.pyo 3334${PYSITELIB}/pandas/tests/series/indexing/test_take.pyo
2850${PYSITELIB}/pandas/tests/series/indexing/test_where.py 3335${PYSITELIB}/pandas/tests/series/indexing/test_where.py
2851${PYSITELIB}/pandas/tests/series/indexing/test_where.pyc 3336${PYSITELIB}/pandas/tests/series/indexing/test_where.pyc
2852${PYSITELIB}/pandas/tests/series/indexing/test_where.pyo 3337${PYSITELIB}/pandas/tests/series/indexing/test_where.pyo
2853${PYSITELIB}/pandas/tests/series/indexing/test_xs.py 3338${PYSITELIB}/pandas/tests/series/indexing/test_xs.py
@@ -2912,26 +3397,29 @@ ${PYSITELIB}/pandas/tests/series/methods @@ -2912,26 +3397,29 @@ ${PYSITELIB}/pandas/tests/series/methods
2912${PYSITELIB}/pandas/tests/series/methods/test_describe.pyo 3397${PYSITELIB}/pandas/tests/series/methods/test_describe.pyo
2913${PYSITELIB}/pandas/tests/series/methods/test_diff.py 3398${PYSITELIB}/pandas/tests/series/methods/test_diff.py
2914${PYSITELIB}/pandas/tests/series/methods/test_diff.pyc 3399${PYSITELIB}/pandas/tests/series/methods/test_diff.pyc
2915${PYSITELIB}/pandas/tests/series/methods/test_diff.pyo 3400${PYSITELIB}/pandas/tests/series/methods/test_diff.pyo
2916${PYSITELIB}/pandas/tests/series/methods/test_drop.py 3401${PYSITELIB}/pandas/tests/series/methods/test_drop.py
2917${PYSITELIB}/pandas/tests/series/methods/test_drop.pyc 3402${PYSITELIB}/pandas/tests/series/methods/test_drop.pyc
2918${PYSITELIB}/pandas/tests/series/methods/test_drop.pyo 3403${PYSITELIB}/pandas/tests/series/methods/test_drop.pyo
2919${PYSITELIB}/pandas/tests/series/methods/test_drop_duplicates.py 3404${PYSITELIB}/pandas/tests/series/methods/test_drop_duplicates.py
2920${PYSITELIB}/pandas/tests/series/methods/test_drop_duplicates.pyc 3405${PYSITELIB}/pandas/tests/series/methods/test_drop_duplicates.pyc
2921${PYSITELIB}/pandas/tests/series/methods/test_drop_duplicates.pyo 3406${PYSITELIB}/pandas/tests/series/methods/test_drop_duplicates.pyo
2922${PYSITELIB}/pandas/tests/series/methods/test_dropna.py 3407${PYSITELIB}/pandas/tests/series/methods/test_dropna.py
2923${PYSITELIB}/pandas/tests/series/methods/test_dropna.pyc 3408${PYSITELIB}/pandas/tests/series/methods/test_dropna.pyc
2924${PYSITELIB}/pandas/tests/series/methods/test_dropna.pyo 3409${PYSITELIB}/pandas/tests/series/methods/test_dropna.pyo
 3410${PYSITELIB}/pandas/tests/series/methods/test_dtypes.py
 3411${PYSITELIB}/pandas/tests/series/methods/test_dtypes.pyc
 3412${PYSITELIB}/pandas/tests/series/methods/test_dtypes.pyo
2925${PYSITELIB}/pandas/tests/series/methods/test_duplicated.py 3413${PYSITELIB}/pandas/tests/series/methods/test_duplicated.py
2926${PYSITELIB}/pandas/tests/series/methods/test_duplicated.pyc 3414${PYSITELIB}/pandas/tests/series/methods/test_duplicated.pyc
2927${PYSITELIB}/pandas/tests/series/methods/test_duplicated.pyo 3415${PYSITELIB}/pandas/tests/series/methods/test_duplicated.pyo
2928${PYSITELIB}/pandas/tests/series/methods/test_equals.py 3416${PYSITELIB}/pandas/tests/series/methods/test_equals.py
2929${PYSITELIB}/pandas/tests/series/methods/test_equals.pyc 3417${PYSITELIB}/pandas/tests/series/methods/test_equals.pyc
2930${PYSITELIB}/pandas/tests/series/methods/test_equals.pyo 3418${PYSITELIB}/pandas/tests/series/methods/test_equals.pyo
2931${PYSITELIB}/pandas/tests/series/methods/test_explode.py 3419${PYSITELIB}/pandas/tests/series/methods/test_explode.py
2932${PYSITELIB}/pandas/tests/series/methods/test_explode.pyc 3420${PYSITELIB}/pandas/tests/series/methods/test_explode.pyc
2933${PYSITELIB}/pandas/tests/series/methods/test_explode.pyo 3421${PYSITELIB}/pandas/tests/series/methods/test_explode.pyo
2934${PYSITELIB}/pandas/tests/series/methods/test_fillna.py 3422${PYSITELIB}/pandas/tests/series/methods/test_fillna.py
2935${PYSITELIB}/pandas/tests/series/methods/test_fillna.pyc 3423${PYSITELIB}/pandas/tests/series/methods/test_fillna.pyc
2936${PYSITELIB}/pandas/tests/series/methods/test_fillna.pyo 3424${PYSITELIB}/pandas/tests/series/methods/test_fillna.pyo
2937${PYSITELIB}/pandas/tests/series/methods/test_get_numeric_data.py 3425${PYSITELIB}/pandas/tests/series/methods/test_get_numeric_data.py
@@ -2939,41 +3427,47 @@ ${PYSITELIB}/pandas/tests/series/methods @@ -2939,41 +3427,47 @@ ${PYSITELIB}/pandas/tests/series/methods
2939${PYSITELIB}/pandas/tests/series/methods/test_get_numeric_data.pyo 3427${PYSITELIB}/pandas/tests/series/methods/test_get_numeric_data.pyo
2940${PYSITELIB}/pandas/tests/series/methods/test_head_tail.py 3428${PYSITELIB}/pandas/tests/series/methods/test_head_tail.py
2941${PYSITELIB}/pandas/tests/series/methods/test_head_tail.pyc 3429${PYSITELIB}/pandas/tests/series/methods/test_head_tail.pyc
2942${PYSITELIB}/pandas/tests/series/methods/test_head_tail.pyo 3430${PYSITELIB}/pandas/tests/series/methods/test_head_tail.pyo
2943${PYSITELIB}/pandas/tests/series/methods/test_infer_objects.py 3431${PYSITELIB}/pandas/tests/series/methods/test_infer_objects.py
2944${PYSITELIB}/pandas/tests/series/methods/test_infer_objects.pyc 3432${PYSITELIB}/pandas/tests/series/methods/test_infer_objects.pyc
2945${PYSITELIB}/pandas/tests/series/methods/test_infer_objects.pyo 3433${PYSITELIB}/pandas/tests/series/methods/test_infer_objects.pyo
2946${PYSITELIB}/pandas/tests/series/methods/test_interpolate.py 3434${PYSITELIB}/pandas/tests/series/methods/test_interpolate.py
2947${PYSITELIB}/pandas/tests/series/methods/test_interpolate.pyc 3435${PYSITELIB}/pandas/tests/series/methods/test_interpolate.pyc
2948${PYSITELIB}/pandas/tests/series/methods/test_interpolate.pyo 3436${PYSITELIB}/pandas/tests/series/methods/test_interpolate.pyo
2949${PYSITELIB}/pandas/tests/series/methods/test_is_monotonic.py 3437${PYSITELIB}/pandas/tests/series/methods/test_is_monotonic.py
2950${PYSITELIB}/pandas/tests/series/methods/test_is_monotonic.pyc 3438${PYSITELIB}/pandas/tests/series/methods/test_is_monotonic.pyc
2951${PYSITELIB}/pandas/tests/series/methods/test_is_monotonic.pyo 3439${PYSITELIB}/pandas/tests/series/methods/test_is_monotonic.pyo
 3440${PYSITELIB}/pandas/tests/series/methods/test_is_unique.py
 3441${PYSITELIB}/pandas/tests/series/methods/test_is_unique.pyc
 3442${PYSITELIB}/pandas/tests/series/methods/test_is_unique.pyo
2952${PYSITELIB}/pandas/tests/series/methods/test_isin.py 3443${PYSITELIB}/pandas/tests/series/methods/test_isin.py
2953${PYSITELIB}/pandas/tests/series/methods/test_isin.pyc 3444${PYSITELIB}/pandas/tests/series/methods/test_isin.pyc
2954${PYSITELIB}/pandas/tests/series/methods/test_isin.pyo 3445${PYSITELIB}/pandas/tests/series/methods/test_isin.pyo
2955${PYSITELIB}/pandas/tests/series/methods/test_isna.py 3446${PYSITELIB}/pandas/tests/series/methods/test_isna.py
2956${PYSITELIB}/pandas/tests/series/methods/test_isna.pyc 3447${PYSITELIB}/pandas/tests/series/methods/test_isna.pyc
2957${PYSITELIB}/pandas/tests/series/methods/test_isna.pyo 3448${PYSITELIB}/pandas/tests/series/methods/test_isna.pyo
2958${PYSITELIB}/pandas/tests/series/methods/test_item.py 3449${PYSITELIB}/pandas/tests/series/methods/test_item.py
2959${PYSITELIB}/pandas/tests/series/methods/test_item.pyc 3450${PYSITELIB}/pandas/tests/series/methods/test_item.pyc
2960${PYSITELIB}/pandas/tests/series/methods/test_item.pyo 3451${PYSITELIB}/pandas/tests/series/methods/test_item.pyo
2961${PYSITELIB}/pandas/tests/series/methods/test_matmul.py 3452${PYSITELIB}/pandas/tests/series/methods/test_matmul.py
2962${PYSITELIB}/pandas/tests/series/methods/test_matmul.pyc 3453${PYSITELIB}/pandas/tests/series/methods/test_matmul.pyc
2963${PYSITELIB}/pandas/tests/series/methods/test_matmul.pyo 3454${PYSITELIB}/pandas/tests/series/methods/test_matmul.pyo
2964${PYSITELIB}/pandas/tests/series/methods/test_nlargest.py 3455${PYSITELIB}/pandas/tests/series/methods/test_nlargest.py
2965${PYSITELIB}/pandas/tests/series/methods/test_nlargest.pyc 3456${PYSITELIB}/pandas/tests/series/methods/test_nlargest.pyc
2966${PYSITELIB}/pandas/tests/series/methods/test_nlargest.pyo 3457${PYSITELIB}/pandas/tests/series/methods/test_nlargest.pyo
 3458${PYSITELIB}/pandas/tests/series/methods/test_nunique.py
 3459${PYSITELIB}/pandas/tests/series/methods/test_nunique.pyc
 3460${PYSITELIB}/pandas/tests/series/methods/test_nunique.pyo
2967${PYSITELIB}/pandas/tests/series/methods/test_pct_change.py 3461${PYSITELIB}/pandas/tests/series/methods/test_pct_change.py
2968${PYSITELIB}/pandas/tests/series/methods/test_pct_change.pyc 3462${PYSITELIB}/pandas/tests/series/methods/test_pct_change.pyc
2969${PYSITELIB}/pandas/tests/series/methods/test_pct_change.pyo 3463${PYSITELIB}/pandas/tests/series/methods/test_pct_change.pyo
2970${PYSITELIB}/pandas/tests/series/methods/test_pop.py 3464${PYSITELIB}/pandas/tests/series/methods/test_pop.py
2971${PYSITELIB}/pandas/tests/series/methods/test_pop.pyc 3465${PYSITELIB}/pandas/tests/series/methods/test_pop.pyc
2972${PYSITELIB}/pandas/tests/series/methods/test_pop.pyo 3466${PYSITELIB}/pandas/tests/series/methods/test_pop.pyo
2973${PYSITELIB}/pandas/tests/series/methods/test_quantile.py 3467${PYSITELIB}/pandas/tests/series/methods/test_quantile.py
2974${PYSITELIB}/pandas/tests/series/methods/test_quantile.pyc 3468${PYSITELIB}/pandas/tests/series/methods/test_quantile.pyc
2975${PYSITELIB}/pandas/tests/series/methods/test_quantile.pyo 3469${PYSITELIB}/pandas/tests/series/methods/test_quantile.pyo
2976${PYSITELIB}/pandas/tests/series/methods/test_rank.py 3470${PYSITELIB}/pandas/tests/series/methods/test_rank.py
2977${PYSITELIB}/pandas/tests/series/methods/test_rank.pyc 3471${PYSITELIB}/pandas/tests/series/methods/test_rank.pyc
2978${PYSITELIB}/pandas/tests/series/methods/test_rank.pyo 3472${PYSITELIB}/pandas/tests/series/methods/test_rank.pyo
2979${PYSITELIB}/pandas/tests/series/methods/test_reindex.py 3473${PYSITELIB}/pandas/tests/series/methods/test_reindex.py
@@ -3023,26 +3517,29 @@ ${PYSITELIB}/pandas/tests/series/methods @@ -3023,26 +3517,29 @@ ${PYSITELIB}/pandas/tests/series/methods
3023${PYSITELIB}/pandas/tests/series/methods/test_to_dict.pyo 3517${PYSITELIB}/pandas/tests/series/methods/test_to_dict.pyo
3024${PYSITELIB}/pandas/tests/series/methods/test_to_frame.py 3518${PYSITELIB}/pandas/tests/series/methods/test_to_frame.py
3025${PYSITELIB}/pandas/tests/series/methods/test_to_frame.pyc 3519${PYSITELIB}/pandas/tests/series/methods/test_to_frame.pyc
3026${PYSITELIB}/pandas/tests/series/methods/test_to_frame.pyo 3520${PYSITELIB}/pandas/tests/series/methods/test_to_frame.pyo
3027${PYSITELIB}/pandas/tests/series/methods/test_truncate.py 3521${PYSITELIB}/pandas/tests/series/methods/test_truncate.py
3028${PYSITELIB}/pandas/tests/series/methods/test_truncate.pyc 3522${PYSITELIB}/pandas/tests/series/methods/test_truncate.pyc
3029${PYSITELIB}/pandas/tests/series/methods/test_truncate.pyo 3523${PYSITELIB}/pandas/tests/series/methods/test_truncate.pyo
3030${PYSITELIB}/pandas/tests/series/methods/test_tz_convert.py 3524${PYSITELIB}/pandas/tests/series/methods/test_tz_convert.py
3031${PYSITELIB}/pandas/tests/series/methods/test_tz_convert.pyc 3525${PYSITELIB}/pandas/tests/series/methods/test_tz_convert.pyc
3032${PYSITELIB}/pandas/tests/series/methods/test_tz_convert.pyo 3526${PYSITELIB}/pandas/tests/series/methods/test_tz_convert.pyo
3033${PYSITELIB}/pandas/tests/series/methods/test_tz_localize.py 3527${PYSITELIB}/pandas/tests/series/methods/test_tz_localize.py
3034${PYSITELIB}/pandas/tests/series/methods/test_tz_localize.pyc 3528${PYSITELIB}/pandas/tests/series/methods/test_tz_localize.pyc
3035${PYSITELIB}/pandas/tests/series/methods/test_tz_localize.pyo 3529${PYSITELIB}/pandas/tests/series/methods/test_tz_localize.pyo
 3530${PYSITELIB}/pandas/tests/series/methods/test_unique.py
 3531${PYSITELIB}/pandas/tests/series/methods/test_unique.pyc
 3532${PYSITELIB}/pandas/tests/series/methods/test_unique.pyo
3036${PYSITELIB}/pandas/tests/series/methods/test_unstack.py 3533${PYSITELIB}/pandas/tests/series/methods/test_unstack.py
3037${PYSITELIB}/pandas/tests/series/methods/test_unstack.pyc 3534${PYSITELIB}/pandas/tests/series/methods/test_unstack.pyc
3038${PYSITELIB}/pandas/tests/series/methods/test_unstack.pyo 3535${PYSITELIB}/pandas/tests/series/methods/test_unstack.pyo
3039${PYSITELIB}/pandas/tests/series/methods/test_update.py 3536${PYSITELIB}/pandas/tests/series/methods/test_update.py
3040${PYSITELIB}/pandas/tests/series/methods/test_update.pyc 3537${PYSITELIB}/pandas/tests/series/methods/test_update.pyc
3041${PYSITELIB}/pandas/tests/series/methods/test_update.pyo 3538${PYSITELIB}/pandas/tests/series/methods/test_update.pyo
3042${PYSITELIB}/pandas/tests/series/methods/test_value_counts.py 3539${PYSITELIB}/pandas/tests/series/methods/test_value_counts.py
3043${PYSITELIB}/pandas/tests/series/methods/test_value_counts.pyc 3540${PYSITELIB}/pandas/tests/series/methods/test_value_counts.pyc
3044${PYSITELIB}/pandas/tests/series/methods/test_value_counts.pyo 3541${PYSITELIB}/pandas/tests/series/methods/test_value_counts.pyo
3045${PYSITELIB}/pandas/tests/series/methods/test_values.py 3542${PYSITELIB}/pandas/tests/series/methods/test_values.py
3046${PYSITELIB}/pandas/tests/series/methods/test_values.pyc 3543${PYSITELIB}/pandas/tests/series/methods/test_values.pyc
3047${PYSITELIB}/pandas/tests/series/methods/test_values.pyo 3544${PYSITELIB}/pandas/tests/series/methods/test_values.pyo
3048${PYSITELIB}/pandas/tests/series/methods/test_view.py 3545${PYSITELIB}/pandas/tests/series/methods/test_view.py
@@ -3050,32 +3547,26 @@ ${PYSITELIB}/pandas/tests/series/methods @@ -3050,32 +3547,26 @@ ${PYSITELIB}/pandas/tests/series/methods
3050${PYSITELIB}/pandas/tests/series/methods/test_view.pyo 3547${PYSITELIB}/pandas/tests/series/methods/test_view.pyo
3051${PYSITELIB}/pandas/tests/series/test_api.py 3548${PYSITELIB}/pandas/tests/series/test_api.py
3052${PYSITELIB}/pandas/tests/series/test_api.pyc 3549${PYSITELIB}/pandas/tests/series/test_api.pyc
3053${PYSITELIB}/pandas/tests/series/test_api.pyo 3550${PYSITELIB}/pandas/tests/series/test_api.pyo
3054${PYSITELIB}/pandas/tests/series/test_arithmetic.py 3551${PYSITELIB}/pandas/tests/series/test_arithmetic.py
3055${PYSITELIB}/pandas/tests/series/test_arithmetic.pyc 3552${PYSITELIB}/pandas/tests/series/test_arithmetic.pyc
3056${PYSITELIB}/pandas/tests/series/test_arithmetic.pyo 3553${PYSITELIB}/pandas/tests/series/test_arithmetic.pyo
3057${PYSITELIB}/pandas/tests/series/test_constructors.py 3554${PYSITELIB}/pandas/tests/series/test_constructors.py
3058${PYSITELIB}/pandas/tests/series/test_constructors.pyc 3555${PYSITELIB}/pandas/tests/series/test_constructors.pyc
3059${PYSITELIB}/pandas/tests/series/test_constructors.pyo 3556${PYSITELIB}/pandas/tests/series/test_constructors.pyo
3060${PYSITELIB}/pandas/tests/series/test_cumulative.py 3557${PYSITELIB}/pandas/tests/series/test_cumulative.py
3061${PYSITELIB}/pandas/tests/series/test_cumulative.pyc 3558${PYSITELIB}/pandas/tests/series/test_cumulative.pyc
3062${PYSITELIB}/pandas/tests/series/test_cumulative.pyo 3559${PYSITELIB}/pandas/tests/series/test_cumulative.pyo
3063${PYSITELIB}/pandas/tests/series/test_dtypes.py 
3064${PYSITELIB}/pandas/tests/series/test_dtypes.pyc 
3065${PYSITELIB}/pandas/tests/series/test_dtypes.pyo 
3066${PYSITELIB}/pandas/tests/series/test_duplicates.py 
3067${PYSITELIB}/pandas/tests/series/test_duplicates.pyc 
3068${PYSITELIB}/pandas/tests/series/test_duplicates.pyo 
3069${PYSITELIB}/pandas/tests/series/test_iteration.py 3560${PYSITELIB}/pandas/tests/series/test_iteration.py
3070${PYSITELIB}/pandas/tests/series/test_iteration.pyc 3561${PYSITELIB}/pandas/tests/series/test_iteration.pyc
3071${PYSITELIB}/pandas/tests/series/test_iteration.pyo 3562${PYSITELIB}/pandas/tests/series/test_iteration.pyo
3072${PYSITELIB}/pandas/tests/series/test_logical_ops.py 3563${PYSITELIB}/pandas/tests/series/test_logical_ops.py
3073${PYSITELIB}/pandas/tests/series/test_logical_ops.pyc 3564${PYSITELIB}/pandas/tests/series/test_logical_ops.pyc
3074${PYSITELIB}/pandas/tests/series/test_logical_ops.pyo 3565${PYSITELIB}/pandas/tests/series/test_logical_ops.pyo
3075${PYSITELIB}/pandas/tests/series/test_missing.py 3566${PYSITELIB}/pandas/tests/series/test_missing.py
3076${PYSITELIB}/pandas/tests/series/test_missing.pyc 3567${PYSITELIB}/pandas/tests/series/test_missing.pyc
3077${PYSITELIB}/pandas/tests/series/test_missing.pyo 3568${PYSITELIB}/pandas/tests/series/test_missing.pyo
3078${PYSITELIB}/pandas/tests/series/test_npfuncs.py 3569${PYSITELIB}/pandas/tests/series/test_npfuncs.py
3079${PYSITELIB}/pandas/tests/series/test_npfuncs.pyc 3570${PYSITELIB}/pandas/tests/series/test_npfuncs.pyc
3080${PYSITELIB}/pandas/tests/series/test_npfuncs.pyo 3571${PYSITELIB}/pandas/tests/series/test_npfuncs.pyo
3081${PYSITELIB}/pandas/tests/series/test_reductions.py 3572${PYSITELIB}/pandas/tests/series/test_reductions.py
@@ -3086,26 +3577,59 @@ ${PYSITELIB}/pandas/tests/series/test_re @@ -3086,26 +3577,59 @@ ${PYSITELIB}/pandas/tests/series/test_re
3086${PYSITELIB}/pandas/tests/series/test_repr.pyo 3577${PYSITELIB}/pandas/tests/series/test_repr.pyo
3087${PYSITELIB}/pandas/tests/series/test_subclass.py 3578${PYSITELIB}/pandas/tests/series/test_subclass.py
3088${PYSITELIB}/pandas/tests/series/test_subclass.pyc 3579${PYSITELIB}/pandas/tests/series/test_subclass.pyc
3089${PYSITELIB}/pandas/tests/series/test_subclass.pyo 3580${PYSITELIB}/pandas/tests/series/test_subclass.pyo
3090${PYSITELIB}/pandas/tests/series/test_ufunc.py 3581${PYSITELIB}/pandas/tests/series/test_ufunc.py
3091${PYSITELIB}/pandas/tests/series/test_ufunc.pyc 3582${PYSITELIB}/pandas/tests/series/test_ufunc.pyc
3092${PYSITELIB}/pandas/tests/series/test_ufunc.pyo 3583${PYSITELIB}/pandas/tests/series/test_ufunc.pyo
3093${PYSITELIB}/pandas/tests/series/test_unary.py 3584${PYSITELIB}/pandas/tests/series/test_unary.py
3094${PYSITELIB}/pandas/tests/series/test_unary.pyc 3585${PYSITELIB}/pandas/tests/series/test_unary.pyc
3095${PYSITELIB}/pandas/tests/series/test_unary.pyo 3586${PYSITELIB}/pandas/tests/series/test_unary.pyo
3096${PYSITELIB}/pandas/tests/series/test_validate.py 3587${PYSITELIB}/pandas/tests/series/test_validate.py
3097${PYSITELIB}/pandas/tests/series/test_validate.pyc 3588${PYSITELIB}/pandas/tests/series/test_validate.pyc
3098${PYSITELIB}/pandas/tests/series/test_validate.pyo 3589${PYSITELIB}/pandas/tests/series/test_validate.pyo
 3590${PYSITELIB}/pandas/tests/strings/__init__.py
 3591${PYSITELIB}/pandas/tests/strings/__init__.pyc
 3592${PYSITELIB}/pandas/tests/strings/__init__.pyo
 3593${PYSITELIB}/pandas/tests/strings/conftest.py
 3594${PYSITELIB}/pandas/tests/strings/conftest.pyc
 3595${PYSITELIB}/pandas/tests/strings/conftest.pyo
 3596${PYSITELIB}/pandas/tests/strings/test_api.py
 3597${PYSITELIB}/pandas/tests/strings/test_api.pyc
 3598${PYSITELIB}/pandas/tests/strings/test_api.pyo
 3599${PYSITELIB}/pandas/tests/strings/test_case_justify.py
 3600${PYSITELIB}/pandas/tests/strings/test_case_justify.pyc
 3601${PYSITELIB}/pandas/tests/strings/test_case_justify.pyo
 3602${PYSITELIB}/pandas/tests/strings/test_cat.py
 3603${PYSITELIB}/pandas/tests/strings/test_cat.pyc
 3604${PYSITELIB}/pandas/tests/strings/test_cat.pyo
 3605${PYSITELIB}/pandas/tests/strings/test_extract.py
 3606${PYSITELIB}/pandas/tests/strings/test_extract.pyc
 3607${PYSITELIB}/pandas/tests/strings/test_extract.pyo
 3608${PYSITELIB}/pandas/tests/strings/test_find_replace.py
 3609${PYSITELIB}/pandas/tests/strings/test_find_replace.pyc
 3610${PYSITELIB}/pandas/tests/strings/test_find_replace.pyo
 3611${PYSITELIB}/pandas/tests/strings/test_get_dummies.py
 3612${PYSITELIB}/pandas/tests/strings/test_get_dummies.pyc
 3613${PYSITELIB}/pandas/tests/strings/test_get_dummies.pyo
 3614${PYSITELIB}/pandas/tests/strings/test_split_partition.py
 3615${PYSITELIB}/pandas/tests/strings/test_split_partition.pyc
 3616${PYSITELIB}/pandas/tests/strings/test_split_partition.pyo
 3617${PYSITELIB}/pandas/tests/strings/test_string_array.py
 3618${PYSITELIB}/pandas/tests/strings/test_string_array.pyc
 3619${PYSITELIB}/pandas/tests/strings/test_string_array.pyo
 3620${PYSITELIB}/pandas/tests/strings/test_strings.py
 3621${PYSITELIB}/pandas/tests/strings/test_strings.pyc
 3622${PYSITELIB}/pandas/tests/strings/test_strings.pyo
3099${PYSITELIB}/pandas/tests/test_aggregation.py 3623${PYSITELIB}/pandas/tests/test_aggregation.py
3100${PYSITELIB}/pandas/tests/test_aggregation.pyc 3624${PYSITELIB}/pandas/tests/test_aggregation.pyc
3101${PYSITELIB}/pandas/tests/test_aggregation.pyo 3625${PYSITELIB}/pandas/tests/test_aggregation.pyo
3102${PYSITELIB}/pandas/tests/test_algos.py 3626${PYSITELIB}/pandas/tests/test_algos.py
3103${PYSITELIB}/pandas/tests/test_algos.pyc 3627${PYSITELIB}/pandas/tests/test_algos.pyc
3104${PYSITELIB}/pandas/tests/test_algos.pyo 3628${PYSITELIB}/pandas/tests/test_algos.pyo
3105${PYSITELIB}/pandas/tests/test_common.py 3629${PYSITELIB}/pandas/tests/test_common.py
3106${PYSITELIB}/pandas/tests/test_common.pyc 3630${PYSITELIB}/pandas/tests/test_common.pyc
3107${PYSITELIB}/pandas/tests/test_common.pyo 3631${PYSITELIB}/pandas/tests/test_common.pyo
3108${PYSITELIB}/pandas/tests/test_downstream.py 3632${PYSITELIB}/pandas/tests/test_downstream.py
3109${PYSITELIB}/pandas/tests/test_downstream.pyc 3633${PYSITELIB}/pandas/tests/test_downstream.pyc
3110${PYSITELIB}/pandas/tests/test_downstream.pyo 3634${PYSITELIB}/pandas/tests/test_downstream.pyo
3111${PYSITELIB}/pandas/tests/test_errors.py 3635${PYSITELIB}/pandas/tests/test_errors.py
@@ -3122,29 +3646,26 @@ ${PYSITELIB}/pandas/tests/test_multileve @@ -3122,29 +3646,26 @@ ${PYSITELIB}/pandas/tests/test_multileve
3122${PYSITELIB}/pandas/tests/test_multilevel.pyo 3646${PYSITELIB}/pandas/tests/test_multilevel.pyo
3123${PYSITELIB}/pandas/tests/test_nanops.py 3647${PYSITELIB}/pandas/tests/test_nanops.py
3124${PYSITELIB}/pandas/tests/test_nanops.pyc 3648${PYSITELIB}/pandas/tests/test_nanops.pyc
3125${PYSITELIB}/pandas/tests/test_nanops.pyo 3649${PYSITELIB}/pandas/tests/test_nanops.pyo
3126${PYSITELIB}/pandas/tests/test_optional_dependency.py 3650${PYSITELIB}/pandas/tests/test_optional_dependency.py
3127${PYSITELIB}/pandas/tests/test_optional_dependency.pyc 3651${PYSITELIB}/pandas/tests/test_optional_dependency.pyc
3128${PYSITELIB}/pandas/tests/test_optional_dependency.pyo 3652${PYSITELIB}/pandas/tests/test_optional_dependency.pyo
3129${PYSITELIB}/pandas/tests/test_register_accessor.py 3653${PYSITELIB}/pandas/tests/test_register_accessor.py
3130${PYSITELIB}/pandas/tests/test_register_accessor.pyc 3654${PYSITELIB}/pandas/tests/test_register_accessor.pyc
3131${PYSITELIB}/pandas/tests/test_register_accessor.pyo 3655${PYSITELIB}/pandas/tests/test_register_accessor.pyo
3132${PYSITELIB}/pandas/tests/test_sorting.py 3656${PYSITELIB}/pandas/tests/test_sorting.py
3133${PYSITELIB}/pandas/tests/test_sorting.pyc 3657${PYSITELIB}/pandas/tests/test_sorting.pyc
3134${PYSITELIB}/pandas/tests/test_sorting.pyo 3658${PYSITELIB}/pandas/tests/test_sorting.pyo
3135${PYSITELIB}/pandas/tests/test_strings.py 
3136${PYSITELIB}/pandas/tests/test_strings.pyc 
3137${PYSITELIB}/pandas/tests/test_strings.pyo 
3138${PYSITELIB}/pandas/tests/test_take.py 3659${PYSITELIB}/pandas/tests/test_take.py
3139${PYSITELIB}/pandas/tests/test_take.pyc 3660${PYSITELIB}/pandas/tests/test_take.pyc
3140${PYSITELIB}/pandas/tests/test_take.pyo 3661${PYSITELIB}/pandas/tests/test_take.pyo
3141${PYSITELIB}/pandas/tests/tools/__init__.py 3662${PYSITELIB}/pandas/tests/tools/__init__.py
3142${PYSITELIB}/pandas/tests/tools/__init__.pyc 3663${PYSITELIB}/pandas/tests/tools/__init__.pyc
3143${PYSITELIB}/pandas/tests/tools/__init__.pyo 3664${PYSITELIB}/pandas/tests/tools/__init__.pyo
3144${PYSITELIB}/pandas/tests/tools/test_to_datetime.py 3665${PYSITELIB}/pandas/tests/tools/test_to_datetime.py
3145${PYSITELIB}/pandas/tests/tools/test_to_datetime.pyc 3666${PYSITELIB}/pandas/tests/tools/test_to_datetime.pyc
3146${PYSITELIB}/pandas/tests/tools/test_to_datetime.pyo 3667${PYSITELIB}/pandas/tests/tools/test_to_datetime.pyo
3147${PYSITELIB}/pandas/tests/tools/test_to_numeric.py 3668${PYSITELIB}/pandas/tests/tools/test_to_numeric.py
3148${PYSITELIB}/pandas/tests/tools/test_to_numeric.pyc 3669${PYSITELIB}/pandas/tests/tools/test_to_numeric.pyc
3149${PYSITELIB}/pandas/tests/tools/test_to_numeric.pyo 3670${PYSITELIB}/pandas/tests/tools/test_to_numeric.pyo
3150${PYSITELIB}/pandas/tests/tools/test_to_time.py 3671${PYSITELIB}/pandas/tests/tools/test_to_time.py
@@ -3182,38 +3703,59 @@ ${PYSITELIB}/pandas/tests/tseries/holida @@ -3182,38 +3703,59 @@ ${PYSITELIB}/pandas/tests/tseries/holida
3182${PYSITELIB}/pandas/tests/tseries/holiday/test_holiday.pyo 3703${PYSITELIB}/pandas/tests/tseries/holiday/test_holiday.pyo
3183${PYSITELIB}/pandas/tests/tseries/holiday/test_observance.py 3704${PYSITELIB}/pandas/tests/tseries/holiday/test_observance.py
3184${PYSITELIB}/pandas/tests/tseries/holiday/test_observance.pyc 3705${PYSITELIB}/pandas/tests/tseries/holiday/test_observance.pyc
3185${PYSITELIB}/pandas/tests/tseries/holiday/test_observance.pyo 3706${PYSITELIB}/pandas/tests/tseries/holiday/test_observance.pyo
3186${PYSITELIB}/pandas/tests/tseries/offsets/__init__.py 3707${PYSITELIB}/pandas/tests/tseries/offsets/__init__.py
3187${PYSITELIB}/pandas/tests/tseries/offsets/__init__.pyc 3708${PYSITELIB}/pandas/tests/tseries/offsets/__init__.pyc
3188${PYSITELIB}/pandas/tests/tseries/offsets/__init__.pyo 3709${PYSITELIB}/pandas/tests/tseries/offsets/__init__.pyo
3189${PYSITELIB}/pandas/tests/tseries/offsets/common.py 3710${PYSITELIB}/pandas/tests/tseries/offsets/common.py
3190${PYSITELIB}/pandas/tests/tseries/offsets/common.pyc 3711${PYSITELIB}/pandas/tests/tseries/offsets/common.pyc
3191${PYSITELIB}/pandas/tests/tseries/offsets/common.pyo 3712${PYSITELIB}/pandas/tests/tseries/offsets/common.pyo
3192${PYSITELIB}/pandas/tests/tseries/offsets/conftest.py 3713${PYSITELIB}/pandas/tests/tseries/offsets/conftest.py
3193${PYSITELIB}/pandas/tests/tseries/offsets/conftest.pyc 3714${PYSITELIB}/pandas/tests/tseries/offsets/conftest.pyc
3194${PYSITELIB}/pandas/tests/tseries/offsets/conftest.pyo 3715${PYSITELIB}/pandas/tests/tseries/offsets/conftest.pyo
 3716${PYSITELIB}/pandas/tests/tseries/offsets/test_business_day.py
 3717${PYSITELIB}/pandas/tests/tseries/offsets/test_business_day.pyc
 3718${PYSITELIB}/pandas/tests/tseries/offsets/test_business_day.pyo
 3719${PYSITELIB}/pandas/tests/tseries/offsets/test_business_hour.py
 3720${PYSITELIB}/pandas/tests/tseries/offsets/test_business_hour.pyc
 3721${PYSITELIB}/pandas/tests/tseries/offsets/test_business_hour.pyo
 3722${PYSITELIB}/pandas/tests/tseries/offsets/test_custom_business_hour.py
 3723${PYSITELIB}/pandas/tests/tseries/offsets/test_custom_business_hour.pyc
 3724${PYSITELIB}/pandas/tests/tseries/offsets/test_custom_business_hour.pyo
 3725${PYSITELIB}/pandas/tests/tseries/offsets/test_dst.py
 3726${PYSITELIB}/pandas/tests/tseries/offsets/test_dst.pyc
 3727${PYSITELIB}/pandas/tests/tseries/offsets/test_dst.pyo
3195${PYSITELIB}/pandas/tests/tseries/offsets/test_fiscal.py 3728${PYSITELIB}/pandas/tests/tseries/offsets/test_fiscal.py
3196${PYSITELIB}/pandas/tests/tseries/offsets/test_fiscal.pyc 3729${PYSITELIB}/pandas/tests/tseries/offsets/test_fiscal.pyc
3197${PYSITELIB}/pandas/tests/tseries/offsets/test_fiscal.pyo 3730${PYSITELIB}/pandas/tests/tseries/offsets/test_fiscal.pyo
 3731${PYSITELIB}/pandas/tests/tseries/offsets/test_month.py
 3732${PYSITELIB}/pandas/tests/tseries/offsets/test_month.pyc
 3733${PYSITELIB}/pandas/tests/tseries/offsets/test_month.pyo
3198${PYSITELIB}/pandas/tests/tseries/offsets/test_offsets.py 3734${PYSITELIB}/pandas/tests/tseries/offsets/test_offsets.py
3199${PYSITELIB}/pandas/tests/tseries/offsets/test_offsets.pyc 3735${PYSITELIB}/pandas/tests/tseries/offsets/test_offsets.pyc
3200${PYSITELIB}/pandas/tests/tseries/offsets/test_offsets.pyo 3736${PYSITELIB}/pandas/tests/tseries/offsets/test_offsets.pyo
3201${PYSITELIB}/pandas/tests/tseries/offsets/test_offsets_properties.py 3737${PYSITELIB}/pandas/tests/tseries/offsets/test_offsets_properties.py
3202${PYSITELIB}/pandas/tests/tseries/offsets/test_offsets_properties.pyc 3738${PYSITELIB}/pandas/tests/tseries/offsets/test_offsets_properties.pyc
3203${PYSITELIB}/pandas/tests/tseries/offsets/test_offsets_properties.pyo 3739${PYSITELIB}/pandas/tests/tseries/offsets/test_offsets_properties.pyo
 3740${PYSITELIB}/pandas/tests/tseries/offsets/test_opening_times.py
 3741${PYSITELIB}/pandas/tests/tseries/offsets/test_opening_times.pyc
 3742${PYSITELIB}/pandas/tests/tseries/offsets/test_opening_times.pyo
3204${PYSITELIB}/pandas/tests/tseries/offsets/test_ticks.py 3743${PYSITELIB}/pandas/tests/tseries/offsets/test_ticks.py
3205${PYSITELIB}/pandas/tests/tseries/offsets/test_ticks.pyc 3744${PYSITELIB}/pandas/tests/tseries/offsets/test_ticks.pyc
3206${PYSITELIB}/pandas/tests/tseries/offsets/test_ticks.pyo 3745${PYSITELIB}/pandas/tests/tseries/offsets/test_ticks.pyo
 3746${PYSITELIB}/pandas/tests/tseries/offsets/test_week.py
 3747${PYSITELIB}/pandas/tests/tseries/offsets/test_week.pyc
 3748${PYSITELIB}/pandas/tests/tseries/offsets/test_week.pyo
3207${PYSITELIB}/pandas/tests/tseries/offsets/test_yqm_offsets.py 3749${PYSITELIB}/pandas/tests/tseries/offsets/test_yqm_offsets.py
3208${PYSITELIB}/pandas/tests/tseries/offsets/test_yqm_offsets.pyc 3750${PYSITELIB}/pandas/tests/tseries/offsets/test_yqm_offsets.pyc
3209${PYSITELIB}/pandas/tests/tseries/offsets/test_yqm_offsets.pyo 3751${PYSITELIB}/pandas/tests/tseries/offsets/test_yqm_offsets.pyo
3210${PYSITELIB}/pandas/tests/tslibs/__init__.py 3752${PYSITELIB}/pandas/tests/tslibs/__init__.py
3211${PYSITELIB}/pandas/tests/tslibs/__init__.pyc 3753${PYSITELIB}/pandas/tests/tslibs/__init__.pyc
3212${PYSITELIB}/pandas/tests/tslibs/__init__.pyo 3754${PYSITELIB}/pandas/tests/tslibs/__init__.pyo
3213${PYSITELIB}/pandas/tests/tslibs/test_api.py 3755${PYSITELIB}/pandas/tests/tslibs/test_api.py
3214${PYSITELIB}/pandas/tests/tslibs/test_api.pyc 3756${PYSITELIB}/pandas/tests/tslibs/test_api.pyc
3215${PYSITELIB}/pandas/tests/tslibs/test_api.pyo 3757${PYSITELIB}/pandas/tests/tslibs/test_api.pyo
3216${PYSITELIB}/pandas/tests/tslibs/test_array_to_datetime.py 3758${PYSITELIB}/pandas/tests/tslibs/test_array_to_datetime.py
3217${PYSITELIB}/pandas/tests/tslibs/test_array_to_datetime.pyc 3759${PYSITELIB}/pandas/tests/tslibs/test_array_to_datetime.pyc
3218${PYSITELIB}/pandas/tests/tslibs/test_array_to_datetime.pyo 3760${PYSITELIB}/pandas/tests/tslibs/test_array_to_datetime.pyo
3219${PYSITELIB}/pandas/tests/tslibs/test_ccalendar.py 3761${PYSITELIB}/pandas/tests/tslibs/test_ccalendar.py
@@ -3248,26 +3790,29 @@ ${PYSITELIB}/pandas/tests/tslibs/test_ti @@ -3248,26 +3790,29 @@ ${PYSITELIB}/pandas/tests/tslibs/test_ti
3248${PYSITELIB}/pandas/tests/tslibs/test_timezones.pyo 3790${PYSITELIB}/pandas/tests/tslibs/test_timezones.pyo
3249${PYSITELIB}/pandas/tests/tslibs/test_to_offset.py 3791${PYSITELIB}/pandas/tests/tslibs/test_to_offset.py
3250${PYSITELIB}/pandas/tests/tslibs/test_to_offset.pyc 3792${PYSITELIB}/pandas/tests/tslibs/test_to_offset.pyc
3251${PYSITELIB}/pandas/tests/tslibs/test_to_offset.pyo 3793${PYSITELIB}/pandas/tests/tslibs/test_to_offset.pyo
3252${PYSITELIB}/pandas/tests/util/__init__.py 3794${PYSITELIB}/pandas/tests/util/__init__.py
3253${PYSITELIB}/pandas/tests/util/__init__.pyc 3795${PYSITELIB}/pandas/tests/util/__init__.pyc
3254${PYSITELIB}/pandas/tests/util/__init__.pyo 3796${PYSITELIB}/pandas/tests/util/__init__.pyo
3255${PYSITELIB}/pandas/tests/util/conftest.py 3797${PYSITELIB}/pandas/tests/util/conftest.py
3256${PYSITELIB}/pandas/tests/util/conftest.pyc 3798${PYSITELIB}/pandas/tests/util/conftest.pyc
3257${PYSITELIB}/pandas/tests/util/conftest.pyo 3799${PYSITELIB}/pandas/tests/util/conftest.pyo
3258${PYSITELIB}/pandas/tests/util/test_assert_almost_equal.py 3800${PYSITELIB}/pandas/tests/util/test_assert_almost_equal.py
3259${PYSITELIB}/pandas/tests/util/test_assert_almost_equal.pyc 3801${PYSITELIB}/pandas/tests/util/test_assert_almost_equal.pyc
3260${PYSITELIB}/pandas/tests/util/test_assert_almost_equal.pyo 3802${PYSITELIB}/pandas/tests/util/test_assert_almost_equal.pyo
 3803${PYSITELIB}/pandas/tests/util/test_assert_attr_equal.py
 3804${PYSITELIB}/pandas/tests/util/test_assert_attr_equal.pyc
 3805${PYSITELIB}/pandas/tests/util/test_assert_attr_equal.pyo
3261${PYSITELIB}/pandas/tests/util/test_assert_categorical_equal.py 3806${PYSITELIB}/pandas/tests/util/test_assert_categorical_equal.py
3262${PYSITELIB}/pandas/tests/util/test_assert_categorical_equal.pyc 3807${PYSITELIB}/pandas/tests/util/test_assert_categorical_equal.pyc
3263${PYSITELIB}/pandas/tests/util/test_assert_categorical_equal.pyo 3808${PYSITELIB}/pandas/tests/util/test_assert_categorical_equal.pyo
3264${PYSITELIB}/pandas/tests/util/test_assert_extension_array_equal.py 3809${PYSITELIB}/pandas/tests/util/test_assert_extension_array_equal.py
3265${PYSITELIB}/pandas/tests/util/test_assert_extension_array_equal.pyc 3810${PYSITELIB}/pandas/tests/util/test_assert_extension_array_equal.pyc
3266${PYSITELIB}/pandas/tests/util/test_assert_extension_array_equal.pyo 3811${PYSITELIB}/pandas/tests/util/test_assert_extension_array_equal.pyo
3267${PYSITELIB}/pandas/tests/util/test_assert_frame_equal.py 3812${PYSITELIB}/pandas/tests/util/test_assert_frame_equal.py
3268${PYSITELIB}/pandas/tests/util/test_assert_frame_equal.pyc 3813${PYSITELIB}/pandas/tests/util/test_assert_frame_equal.pyc
3269${PYSITELIB}/pandas/tests/util/test_assert_frame_equal.pyo 3814${PYSITELIB}/pandas/tests/util/test_assert_frame_equal.pyo
3270${PYSITELIB}/pandas/tests/util/test_assert_index_equal.py 3815${PYSITELIB}/pandas/tests/util/test_assert_index_equal.py
3271${PYSITELIB}/pandas/tests/util/test_assert_index_equal.pyc 3816${PYSITELIB}/pandas/tests/util/test_assert_index_equal.pyc
3272${PYSITELIB}/pandas/tests/util/test_assert_index_equal.pyo 3817${PYSITELIB}/pandas/tests/util/test_assert_index_equal.pyo
3273${PYSITELIB}/pandas/tests/util/test_assert_interval_array_equal.py 3818${PYSITELIB}/pandas/tests/util/test_assert_interval_array_equal.py
@@ -3317,26 +3862,29 @@ ${PYSITELIB}/pandas/tests/util/test_vali @@ -3317,26 +3862,29 @@ ${PYSITELIB}/pandas/tests/util/test_vali
3317${PYSITELIB}/pandas/tests/util/test_validate_args_and_kwargs.pyo 3862${PYSITELIB}/pandas/tests/util/test_validate_args_and_kwargs.pyo
3318${PYSITELIB}/pandas/tests/util/test_validate_kwargs.py 3863${PYSITELIB}/pandas/tests/util/test_validate_kwargs.py
3319${PYSITELIB}/pandas/tests/util/test_validate_kwargs.pyc 3864${PYSITELIB}/pandas/tests/util/test_validate_kwargs.pyc
3320${PYSITELIB}/pandas/tests/util/test_validate_kwargs.pyo 3865${PYSITELIB}/pandas/tests/util/test_validate_kwargs.pyo
3321${PYSITELIB}/pandas/tests/window/__init__.py 3866${PYSITELIB}/pandas/tests/window/__init__.py
3322${PYSITELIB}/pandas/tests/window/__init__.pyc 3867${PYSITELIB}/pandas/tests/window/__init__.pyc
3323${PYSITELIB}/pandas/tests/window/__init__.pyo 3868${PYSITELIB}/pandas/tests/window/__init__.pyo
3324${PYSITELIB}/pandas/tests/window/conftest.py 3869${PYSITELIB}/pandas/tests/window/conftest.py
3325${PYSITELIB}/pandas/tests/window/conftest.pyc 3870${PYSITELIB}/pandas/tests/window/conftest.pyc
3326${PYSITELIB}/pandas/tests/window/conftest.pyo 3871${PYSITELIB}/pandas/tests/window/conftest.pyo
3327${PYSITELIB}/pandas/tests/window/moments/__init__.py 3872${PYSITELIB}/pandas/tests/window/moments/__init__.py
3328${PYSITELIB}/pandas/tests/window/moments/__init__.pyc 3873${PYSITELIB}/pandas/tests/window/moments/__init__.pyc
3329${PYSITELIB}/pandas/tests/window/moments/__init__.pyo 3874${PYSITELIB}/pandas/tests/window/moments/__init__.pyo
 3875${PYSITELIB}/pandas/tests/window/moments/conftest.py
 3876${PYSITELIB}/pandas/tests/window/moments/conftest.pyc
 3877${PYSITELIB}/pandas/tests/window/moments/conftest.pyo
3330${PYSITELIB}/pandas/tests/window/moments/test_moments_consistency_ewm.py 3878${PYSITELIB}/pandas/tests/window/moments/test_moments_consistency_ewm.py
3331${PYSITELIB}/pandas/tests/window/moments/test_moments_consistency_ewm.pyc 3879${PYSITELIB}/pandas/tests/window/moments/test_moments_consistency_ewm.pyc
3332${PYSITELIB}/pandas/tests/window/moments/test_moments_consistency_ewm.pyo 3880${PYSITELIB}/pandas/tests/window/moments/test_moments_consistency_ewm.pyo
3333${PYSITELIB}/pandas/tests/window/moments/test_moments_consistency_expanding.py 3881${PYSITELIB}/pandas/tests/window/moments/test_moments_consistency_expanding.py
3334${PYSITELIB}/pandas/tests/window/moments/test_moments_consistency_expanding.pyc 3882${PYSITELIB}/pandas/tests/window/moments/test_moments_consistency_expanding.pyc
3335${PYSITELIB}/pandas/tests/window/moments/test_moments_consistency_expanding.pyo 3883${PYSITELIB}/pandas/tests/window/moments/test_moments_consistency_expanding.pyo
3336${PYSITELIB}/pandas/tests/window/moments/test_moments_consistency_rolling.py 3884${PYSITELIB}/pandas/tests/window/moments/test_moments_consistency_rolling.py
3337${PYSITELIB}/pandas/tests/window/moments/test_moments_consistency_rolling.pyc 3885${PYSITELIB}/pandas/tests/window/moments/test_moments_consistency_rolling.pyc
3338${PYSITELIB}/pandas/tests/window/moments/test_moments_consistency_rolling.pyo 3886${PYSITELIB}/pandas/tests/window/moments/test_moments_consistency_rolling.pyo
3339${PYSITELIB}/pandas/tests/window/moments/test_moments_ewm.py 3887${PYSITELIB}/pandas/tests/window/moments/test_moments_ewm.py
3340${PYSITELIB}/pandas/tests/window/moments/test_moments_ewm.pyc 3888${PYSITELIB}/pandas/tests/window/moments/test_moments_ewm.pyc
3341${PYSITELIB}/pandas/tests/window/moments/test_moments_ewm.pyo 3889${PYSITELIB}/pandas/tests/window/moments/test_moments_ewm.pyo
3342${PYSITELIB}/pandas/tests/window/moments/test_moments_rolling.py 3890${PYSITELIB}/pandas/tests/window/moments/test_moments_rolling.py
@@ -3368,26 +3916,29 @@ ${PYSITELIB}/pandas/tests/window/test_dt @@ -3368,26 +3916,29 @@ ${PYSITELIB}/pandas/tests/window/test_dt
3368${PYSITELIB}/pandas/tests/window/test_dtypes.pyo 3916${PYSITELIB}/pandas/tests/window/test_dtypes.pyo
3369${PYSITELIB}/pandas/tests/window/test_ewm.py 3917${PYSITELIB}/pandas/tests/window/test_ewm.py
3370${PYSITELIB}/pandas/tests/window/test_ewm.pyc 3918${PYSITELIB}/pandas/tests/window/test_ewm.pyc
3371${PYSITELIB}/pandas/tests/window/test_ewm.pyo 3919${PYSITELIB}/pandas/tests/window/test_ewm.pyo
3372${PYSITELIB}/pandas/tests/window/test_expanding.py 3920${PYSITELIB}/pandas/tests/window/test_expanding.py
3373${PYSITELIB}/pandas/tests/window/test_expanding.pyc 3921${PYSITELIB}/pandas/tests/window/test_expanding.pyc
3374${PYSITELIB}/pandas/tests/window/test_expanding.pyo 3922${PYSITELIB}/pandas/tests/window/test_expanding.pyo
3375${PYSITELIB}/pandas/tests/window/test_groupby.py 3923${PYSITELIB}/pandas/tests/window/test_groupby.py
3376${PYSITELIB}/pandas/tests/window/test_groupby.pyc 3924${PYSITELIB}/pandas/tests/window/test_groupby.pyc
3377${PYSITELIB}/pandas/tests/window/test_groupby.pyo 3925${PYSITELIB}/pandas/tests/window/test_groupby.pyo
3378${PYSITELIB}/pandas/tests/window/test_numba.py 3926${PYSITELIB}/pandas/tests/window/test_numba.py
3379${PYSITELIB}/pandas/tests/window/test_numba.pyc 3927${PYSITELIB}/pandas/tests/window/test_numba.pyc
3380${PYSITELIB}/pandas/tests/window/test_numba.pyo 3928${PYSITELIB}/pandas/tests/window/test_numba.pyo
 3929${PYSITELIB}/pandas/tests/window/test_online.py
 3930${PYSITELIB}/pandas/tests/window/test_online.pyc
 3931${PYSITELIB}/pandas/tests/window/test_online.pyo
3381${PYSITELIB}/pandas/tests/window/test_pairwise.py 3932${PYSITELIB}/pandas/tests/window/test_pairwise.py
3382${PYSITELIB}/pandas/tests/window/test_pairwise.pyc 3933${PYSITELIB}/pandas/tests/window/test_pairwise.pyc
3383${PYSITELIB}/pandas/tests/window/test_pairwise.pyo 3934${PYSITELIB}/pandas/tests/window/test_pairwise.pyo
3384${PYSITELIB}/pandas/tests/window/test_rolling.py 3935${PYSITELIB}/pandas/tests/window/test_rolling.py
3385${PYSITELIB}/pandas/tests/window/test_rolling.pyc 3936${PYSITELIB}/pandas/tests/window/test_rolling.pyc
3386${PYSITELIB}/pandas/tests/window/test_rolling.pyo 3937${PYSITELIB}/pandas/tests/window/test_rolling.pyo
3387${PYSITELIB}/pandas/tests/window/test_timeseries_window.py 3938${PYSITELIB}/pandas/tests/window/test_timeseries_window.py
3388${PYSITELIB}/pandas/tests/window/test_timeseries_window.pyc 3939${PYSITELIB}/pandas/tests/window/test_timeseries_window.pyc
3389${PYSITELIB}/pandas/tests/window/test_timeseries_window.pyo 3940${PYSITELIB}/pandas/tests/window/test_timeseries_window.pyo
3390${PYSITELIB}/pandas/tests/window/test_win_type.py 3941${PYSITELIB}/pandas/tests/window/test_win_type.py
3391${PYSITELIB}/pandas/tests/window/test_win_type.pyc 3942${PYSITELIB}/pandas/tests/window/test_win_type.pyc
3392${PYSITELIB}/pandas/tests/window/test_win_type.pyo 3943${PYSITELIB}/pandas/tests/window/test_win_type.pyo
3393${PYSITELIB}/pandas/tseries/__init__.py 3944${PYSITELIB}/pandas/tseries/__init__.py
@@ -3425,13 +3976,16 @@ ${PYSITELIB}/pandas/util/_print_versions @@ -3425,13 +3976,16 @@ ${PYSITELIB}/pandas/util/_print_versions
3425${PYSITELIB}/pandas/util/_print_versions.pyo 3976${PYSITELIB}/pandas/util/_print_versions.pyo
3426${PYSITELIB}/pandas/util/_test_decorators.py 3977${PYSITELIB}/pandas/util/_test_decorators.py
3427${PYSITELIB}/pandas/util/_test_decorators.pyc 3978${PYSITELIB}/pandas/util/_test_decorators.pyc
3428${PYSITELIB}/pandas/util/_test_decorators.pyo 3979${PYSITELIB}/pandas/util/_test_decorators.pyo
3429${PYSITELIB}/pandas/util/_tester.py 3980${PYSITELIB}/pandas/util/_tester.py
3430${PYSITELIB}/pandas/util/_tester.pyc 3981${PYSITELIB}/pandas/util/_tester.pyc
3431${PYSITELIB}/pandas/util/_tester.pyo 3982${PYSITELIB}/pandas/util/_tester.pyo
3432${PYSITELIB}/pandas/util/_validators.py 3983${PYSITELIB}/pandas/util/_validators.py
3433${PYSITELIB}/pandas/util/_validators.pyc 3984${PYSITELIB}/pandas/util/_validators.pyc
3434${PYSITELIB}/pandas/util/_validators.pyo 3985${PYSITELIB}/pandas/util/_validators.pyo
3435${PYSITELIB}/pandas/util/testing.py 3986${PYSITELIB}/pandas/util/testing.py
3436${PYSITELIB}/pandas/util/testing.pyc 3987${PYSITELIB}/pandas/util/testing.pyc
3437${PYSITELIB}/pandas/util/testing.pyo 3988${PYSITELIB}/pandas/util/testing.pyo
 3989${PYSITELIB}/pandas/util/version/__init__.py
 3990${PYSITELIB}/pandas/util/version/__init__.pyc
 3991${PYSITELIB}/pandas/util/version/__init__.pyo

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

--- pkgsrc/math/py-pandas/distinfo 2021/10/26 10:56:03 1.26
+++ pkgsrc/math/py-pandas/distinfo 2021/11/21 16:31:26 1.27
@@ -1,5 +1,5 @@ @@ -1,5 +1,5 @@
1$NetBSD: distinfo,v 1.26 2021/10/26 10:56:03 nia Exp $ 1$NetBSD: distinfo,v 1.27 2021/11/21 16:31:26 ryoon Exp $
2 2
3BLAKE2s (pandas-1.2.4.tar.gz) = 5a6064f9f845afe58de0556aea94fa13e22a2532f8a89a99e90e594824ae023e 3BLAKE2s (pandas-1.3.4.tar.gz) = 5e2b416b507cc8d8b226e3dc3b9d849efa58b616fc0c0f392d0aa65c8171be77
4SHA512 (pandas-1.2.4.tar.gz) = 79e7a38b8edad52b70eb81ba821141b928c782009d59c50076e7d1e7c015078d333c0c80bda7ba720f4ccb221a0ba93a02885fe6a573567ee37ffae14ee9b2c3 4SHA512 (pandas-1.3.4.tar.gz) = c821365b1f06d69c61b957c4768a5f86b39d97d74b0732ea0eaade9d21bca8f652e38f91f83adf2fc6488f227c75d4e5e64e8f131456e7f0a93ecfcf237190a6
5Size (pandas-1.2.4.tar.gz) = 5469105 bytes 5Size (pandas-1.3.4.tar.gz) = 4734599 bytes