Received: from mail.netbsd.org (mail.netbsd.org [199.233.217.200]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mail.netbsd.org", Issuer "Postmaster NetBSD.org" (verified OK)) by mollari.NetBSD.org (Postfix) with ESMTPS id D5DD17A1FA for ; Sun, 21 May 2017 08:54:40 +0000 (UTC) Received: by mail.netbsd.org (Postfix, from userid 605) id 4537784DC6; Sun, 21 May 2017 08:54:40 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id C5B2384DAD for ; Sun, 21 May 2017 08:54:39 +0000 (UTC) X-Virus-Scanned: amavisd-new at netbsd.org Received: from mail.netbsd.org ([IPv6:::1]) by localhost (mail.netbsd.org [IPv6:::1]) (amavisd-new, port 10025) with ESMTP id JX15n54z0wzU for ; Sun, 21 May 2017 08:54:33 +0000 (UTC) Received: from cvs.NetBSD.org (ivanova.NetBSD.org [IPv6:2001:470:a085:999:28c:faff:fe03:5984]) by mail.netbsd.org (Postfix) with ESMTP id 86B6284D04 for ; Sun, 21 May 2017 08:54:33 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id 7CD00FBE4; Sun, 21 May 2017 08:54:33 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_1495356873121780" MIME-Version: 1.0 Date: Sun, 21 May 2017 08:54:33 +0000 From: "Adam Ciarcinski" Subject: CVS commit: pkgsrc/math/py-pandas To: pkgsrc-changes@NetBSD.org Reply-To: adam@netbsd.org X-Mailer: log_accum Message-Id: <20170521085433.7CD00FBE4@cvs.NetBSD.org> Sender: pkgsrc-changes-owner@NetBSD.org List-Id: pkgsrc-changes.NetBSD.org Precedence: bulk List-Unsubscribe: This is a multi-part message in MIME format. --_----------=_1495356873121780 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="UTF-8" Module Name: pkgsrc Committed By: adam Date: Sun May 21 08:54:33 UTC 2017 Modified Files: pkgsrc/math/py-pandas: Makefile PLIST distinfo Log Message: Changes 0.20.1: New .agg() API for Series/DataFrame similar to the groupby-rolling-resample API’s, see here Integration with the feather-format, including a new top-level pd.read_feather() and DataFrame.to_feather() method, see here. The .ix indexer has been deprecated, see here Panel has been deprecated, see here Addition of an IntervalIndex and Interval scalar type, see here Improved user API when grouping by index levels in .groupby(), see here Improved support for UInt64 dtypes, see here A new orient for JSON serialization, orient='table', that uses the Table Schema spec and that gives the possibility for a more interactive repr in the Jupyter Notebook, see here Experimental support for exporting styled DataFrames (DataFrame.style) to Excel, see here Window binary corr/cov operations now return a MultiIndexed DataFrame rather than a Panel, as Panel is now deprecated, see here Support for S3 handling now uses s3fs, see here Google BigQuery support now uses the pandas-gbq library, see here To generate a diff of this commit: cvs rdiff -u -r1.14 -r1.15 pkgsrc/math/py-pandas/Makefile cvs rdiff -u -r1.9 -r1.10 pkgsrc/math/py-pandas/PLIST cvs rdiff -u -r1.10 -r1.11 pkgsrc/math/py-pandas/distinfo Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_1495356873121780 Content-Disposition: inline Content-Length: 117013 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/math/py-pandas/Makefile diff -u pkgsrc/math/py-pandas/Makefile:1.14 pkgsrc/math/py-pandas/Makefile:1.15 --- pkgsrc/math/py-pandas/Makefile:1.14 Mon Feb 20 17:00:36 2017 +++ pkgsrc/math/py-pandas/Makefile Sun May 21 08:54:33 2017 @@ -1,8 +1,7 @@ -# $NetBSD: Makefile,v 1.14 2017/02/20 17:00:36 wiz Exp $ +# $NetBSD: Makefile,v 1.15 2017/05/21 08:54:33 adam Exp $ -DISTNAME= pandas-0.18.1 +DISTNAME= pandas-0.20.1 PKGNAME= ${PYPKGPREFIX}-${DISTNAME} -PKGREVISION= 1 CATEGORIES= math graphics python MASTER_SITES= ${MASTER_SITE_PYPI:=p/pandas/} Index: pkgsrc/math/py-pandas/PLIST diff -u pkgsrc/math/py-pandas/PLIST:1.9 pkgsrc/math/py-pandas/PLIST:1.10 --- pkgsrc/math/py-pandas/PLIST:1.9 Fri Aug 19 07:57:26 2016 +++ pkgsrc/math/py-pandas/PLIST Sun May 21 08:54:33 2017 @@ -1,4 +1,4 @@ -@comment $NetBSD: PLIST,v 1.9 2016/08/19 07:57:26 wiz Exp $ +@comment $NetBSD: PLIST,v 1.10 2017/05/21 08:54:33 adam Exp $ ${PYSITELIB}/${EGG_INFODIR}/PKG-INFO ${PYSITELIB}/${EGG_INFODIR}/SOURCES.txt ${PYSITELIB}/${EGG_INFODIR}/dependency_links.txt @@ -8,13 +8,34 @@ ${PYSITELIB}/${EGG_INFODIR}/top_level.tx ${PYSITELIB}/pandas/__init__.py ${PYSITELIB}/pandas/__init__.pyc ${PYSITELIB}/pandas/__init__.pyo -${PYSITELIB}/pandas/_period.so -${PYSITELIB}/pandas/_sparse.so -${PYSITELIB}/pandas/_testing.so +${PYSITELIB}/pandas/_libs/__init__.py +${PYSITELIB}/pandas/_libs/__init__.pyc +${PYSITELIB}/pandas/_libs/__init__.pyo +${PYSITELIB}/pandas/_libs/algos.so +${PYSITELIB}/pandas/_libs/groupby.so +${PYSITELIB}/pandas/_libs/hashing.so +${PYSITELIB}/pandas/_libs/hashtable.so +${PYSITELIB}/pandas/_libs/index.so +${PYSITELIB}/pandas/_libs/interval.so +${PYSITELIB}/pandas/_libs/join.so +${PYSITELIB}/pandas/_libs/json.so +${PYSITELIB}/pandas/_libs/lib.so +${PYSITELIB}/pandas/_libs/parsers.so +${PYSITELIB}/pandas/_libs/period.so +${PYSITELIB}/pandas/_libs/reshape.so +${PYSITELIB}/pandas/_libs/sparse.so +${PYSITELIB}/pandas/_libs/testing.so +${PYSITELIB}/pandas/_libs/tslib.so +${PYSITELIB}/pandas/_libs/window.so ${PYSITELIB}/pandas/_version.py ${PYSITELIB}/pandas/_version.pyc ${PYSITELIB}/pandas/_version.pyo -${PYSITELIB}/pandas/algos.so +${PYSITELIB}/pandas/api/__init__.py +${PYSITELIB}/pandas/api/__init__.pyc +${PYSITELIB}/pandas/api/__init__.pyo +${PYSITELIB}/pandas/api/types/__init__.py +${PYSITELIB}/pandas/api/types/__init__.pyc +${PYSITELIB}/pandas/api/types/__init__.pyo ${PYSITELIB}/pandas/compat/__init__.py ${PYSITELIB}/pandas/compat/__init__.pyc ${PYSITELIB}/pandas/compat/__init__.pyo @@ -39,45 +60,12 @@ ${PYSITELIB}/pandas/compat/pickle_compat ${PYSITELIB}/pandas/computation/__init__.py ${PYSITELIB}/pandas/computation/__init__.pyc ${PYSITELIB}/pandas/computation/__init__.pyo -${PYSITELIB}/pandas/computation/align.py -${PYSITELIB}/pandas/computation/align.pyc -${PYSITELIB}/pandas/computation/align.pyo -${PYSITELIB}/pandas/computation/api.py -${PYSITELIB}/pandas/computation/api.pyc -${PYSITELIB}/pandas/computation/api.pyo -${PYSITELIB}/pandas/computation/common.py -${PYSITELIB}/pandas/computation/common.pyc -${PYSITELIB}/pandas/computation/common.pyo -${PYSITELIB}/pandas/computation/engines.py -${PYSITELIB}/pandas/computation/engines.pyc -${PYSITELIB}/pandas/computation/engines.pyo -${PYSITELIB}/pandas/computation/eval.py -${PYSITELIB}/pandas/computation/eval.pyc -${PYSITELIB}/pandas/computation/eval.pyo -${PYSITELIB}/pandas/computation/expr.py -${PYSITELIB}/pandas/computation/expr.pyc -${PYSITELIB}/pandas/computation/expr.pyo ${PYSITELIB}/pandas/computation/expressions.py ${PYSITELIB}/pandas/computation/expressions.pyc ${PYSITELIB}/pandas/computation/expressions.pyo -${PYSITELIB}/pandas/computation/ops.py -${PYSITELIB}/pandas/computation/ops.pyc -${PYSITELIB}/pandas/computation/ops.pyo -${PYSITELIB}/pandas/computation/pytables.py -${PYSITELIB}/pandas/computation/pytables.pyc -${PYSITELIB}/pandas/computation/pytables.pyo -${PYSITELIB}/pandas/computation/scope.py -${PYSITELIB}/pandas/computation/scope.pyc -${PYSITELIB}/pandas/computation/scope.pyo -${PYSITELIB}/pandas/computation/tests/__init__.py -${PYSITELIB}/pandas/computation/tests/__init__.pyc -${PYSITELIB}/pandas/computation/tests/__init__.pyo -${PYSITELIB}/pandas/computation/tests/test_compat.py -${PYSITELIB}/pandas/computation/tests/test_compat.pyc -${PYSITELIB}/pandas/computation/tests/test_compat.pyo -${PYSITELIB}/pandas/computation/tests/test_eval.py -${PYSITELIB}/pandas/computation/tests/test_eval.pyc -${PYSITELIB}/pandas/computation/tests/test_eval.pyo +${PYSITELIB}/pandas/conftest.py +${PYSITELIB}/pandas/conftest.pyc +${PYSITELIB}/pandas/conftest.pyo ${PYSITELIB}/pandas/core/__init__.py ${PYSITELIB}/pandas/core/__init__.pyc ${PYSITELIB}/pandas/core/__init__.pyo @@ -96,18 +84,75 @@ ${PYSITELIB}/pandas/core/categorical.pyo ${PYSITELIB}/pandas/core/common.py ${PYSITELIB}/pandas/core/common.pyc ${PYSITELIB}/pandas/core/common.pyo +${PYSITELIB}/pandas/core/computation/__init__.py +${PYSITELIB}/pandas/core/computation/__init__.pyc +${PYSITELIB}/pandas/core/computation/__init__.pyo +${PYSITELIB}/pandas/core/computation/align.py +${PYSITELIB}/pandas/core/computation/align.pyc +${PYSITELIB}/pandas/core/computation/align.pyo +${PYSITELIB}/pandas/core/computation/api.py +${PYSITELIB}/pandas/core/computation/api.pyc +${PYSITELIB}/pandas/core/computation/api.pyo +${PYSITELIB}/pandas/core/computation/common.py +${PYSITELIB}/pandas/core/computation/common.pyc +${PYSITELIB}/pandas/core/computation/common.pyo +${PYSITELIB}/pandas/core/computation/engines.py +${PYSITELIB}/pandas/core/computation/engines.pyc +${PYSITELIB}/pandas/core/computation/engines.pyo +${PYSITELIB}/pandas/core/computation/eval.py +${PYSITELIB}/pandas/core/computation/eval.pyc +${PYSITELIB}/pandas/core/computation/eval.pyo +${PYSITELIB}/pandas/core/computation/expr.py +${PYSITELIB}/pandas/core/computation/expr.pyc +${PYSITELIB}/pandas/core/computation/expr.pyo +${PYSITELIB}/pandas/core/computation/expressions.py +${PYSITELIB}/pandas/core/computation/expressions.pyc +${PYSITELIB}/pandas/core/computation/expressions.pyo +${PYSITELIB}/pandas/core/computation/ops.py +${PYSITELIB}/pandas/core/computation/ops.pyc +${PYSITELIB}/pandas/core/computation/ops.pyo +${PYSITELIB}/pandas/core/computation/pytables.py +${PYSITELIB}/pandas/core/computation/pytables.pyc +${PYSITELIB}/pandas/core/computation/pytables.pyo +${PYSITELIB}/pandas/core/computation/scope.py +${PYSITELIB}/pandas/core/computation/scope.pyc +${PYSITELIB}/pandas/core/computation/scope.pyo ${PYSITELIB}/pandas/core/config.py ${PYSITELIB}/pandas/core/config.pyc ${PYSITELIB}/pandas/core/config.pyo ${PYSITELIB}/pandas/core/config_init.py ${PYSITELIB}/pandas/core/config_init.pyc ${PYSITELIB}/pandas/core/config_init.pyo -${PYSITELIB}/pandas/core/convert.py -${PYSITELIB}/pandas/core/convert.pyc -${PYSITELIB}/pandas/core/convert.pyo ${PYSITELIB}/pandas/core/datetools.py ${PYSITELIB}/pandas/core/datetools.pyc ${PYSITELIB}/pandas/core/datetools.pyo +${PYSITELIB}/pandas/core/dtypes/__init__.py +${PYSITELIB}/pandas/core/dtypes/__init__.pyc +${PYSITELIB}/pandas/core/dtypes/__init__.pyo +${PYSITELIB}/pandas/core/dtypes/api.py +${PYSITELIB}/pandas/core/dtypes/api.pyc +${PYSITELIB}/pandas/core/dtypes/api.pyo +${PYSITELIB}/pandas/core/dtypes/cast.py +${PYSITELIB}/pandas/core/dtypes/cast.pyc +${PYSITELIB}/pandas/core/dtypes/cast.pyo +${PYSITELIB}/pandas/core/dtypes/common.py +${PYSITELIB}/pandas/core/dtypes/common.pyc +${PYSITELIB}/pandas/core/dtypes/common.pyo +${PYSITELIB}/pandas/core/dtypes/concat.py +${PYSITELIB}/pandas/core/dtypes/concat.pyc +${PYSITELIB}/pandas/core/dtypes/concat.pyo +${PYSITELIB}/pandas/core/dtypes/dtypes.py +${PYSITELIB}/pandas/core/dtypes/dtypes.pyc +${PYSITELIB}/pandas/core/dtypes/dtypes.pyo +${PYSITELIB}/pandas/core/dtypes/generic.py +${PYSITELIB}/pandas/core/dtypes/generic.pyc +${PYSITELIB}/pandas/core/dtypes/generic.pyo +${PYSITELIB}/pandas/core/dtypes/inference.py +${PYSITELIB}/pandas/core/dtypes/inference.pyc +${PYSITELIB}/pandas/core/dtypes/inference.pyo +${PYSITELIB}/pandas/core/dtypes/missing.py +${PYSITELIB}/pandas/core/dtypes/missing.pyc +${PYSITELIB}/pandas/core/dtypes/missing.pyo ${PYSITELIB}/pandas/core/frame.py ${PYSITELIB}/pandas/core/frame.pyc ${PYSITELIB}/pandas/core/frame.pyo @@ -120,6 +165,48 @@ ${PYSITELIB}/pandas/core/groupby.pyo ${PYSITELIB}/pandas/core/index.py ${PYSITELIB}/pandas/core/index.pyc ${PYSITELIB}/pandas/core/index.pyo +${PYSITELIB}/pandas/core/indexes/__init__.py +${PYSITELIB}/pandas/core/indexes/__init__.pyc +${PYSITELIB}/pandas/core/indexes/__init__.pyo +${PYSITELIB}/pandas/core/indexes/accessors.py +${PYSITELIB}/pandas/core/indexes/accessors.pyc +${PYSITELIB}/pandas/core/indexes/accessors.pyo +${PYSITELIB}/pandas/core/indexes/api.py +${PYSITELIB}/pandas/core/indexes/api.pyc +${PYSITELIB}/pandas/core/indexes/api.pyo +${PYSITELIB}/pandas/core/indexes/base.py +${PYSITELIB}/pandas/core/indexes/base.pyc +${PYSITELIB}/pandas/core/indexes/base.pyo +${PYSITELIB}/pandas/core/indexes/category.py +${PYSITELIB}/pandas/core/indexes/category.pyc +${PYSITELIB}/pandas/core/indexes/category.pyo +${PYSITELIB}/pandas/core/indexes/datetimelike.py +${PYSITELIB}/pandas/core/indexes/datetimelike.pyc +${PYSITELIB}/pandas/core/indexes/datetimelike.pyo +${PYSITELIB}/pandas/core/indexes/datetimes.py +${PYSITELIB}/pandas/core/indexes/datetimes.pyc +${PYSITELIB}/pandas/core/indexes/datetimes.pyo +${PYSITELIB}/pandas/core/indexes/frozen.py +${PYSITELIB}/pandas/core/indexes/frozen.pyc +${PYSITELIB}/pandas/core/indexes/frozen.pyo +${PYSITELIB}/pandas/core/indexes/interval.py +${PYSITELIB}/pandas/core/indexes/interval.pyc +${PYSITELIB}/pandas/core/indexes/interval.pyo +${PYSITELIB}/pandas/core/indexes/multi.py +${PYSITELIB}/pandas/core/indexes/multi.pyc +${PYSITELIB}/pandas/core/indexes/multi.pyo +${PYSITELIB}/pandas/core/indexes/numeric.py +${PYSITELIB}/pandas/core/indexes/numeric.pyc +${PYSITELIB}/pandas/core/indexes/numeric.pyo +${PYSITELIB}/pandas/core/indexes/period.py +${PYSITELIB}/pandas/core/indexes/period.pyc +${PYSITELIB}/pandas/core/indexes/period.pyo +${PYSITELIB}/pandas/core/indexes/range.py +${PYSITELIB}/pandas/core/indexes/range.pyc +${PYSITELIB}/pandas/core/indexes/range.pyo +${PYSITELIB}/pandas/core/indexes/timedeltas.py +${PYSITELIB}/pandas/core/indexes/timedeltas.pyc +${PYSITELIB}/pandas/core/indexes/timedeltas.pyo ${PYSITELIB}/pandas/core/indexing.py ${PYSITELIB}/pandas/core/indexing.pyc ${PYSITELIB}/pandas/core/indexing.pyo @@ -144,71 +231,114 @@ ${PYSITELIB}/pandas/core/panel4d.pyo ${PYSITELIB}/pandas/core/panelnd.py ${PYSITELIB}/pandas/core/panelnd.pyc ${PYSITELIB}/pandas/core/panelnd.pyo -${PYSITELIB}/pandas/core/reshape.py -${PYSITELIB}/pandas/core/reshape.pyc -${PYSITELIB}/pandas/core/reshape.pyo +${PYSITELIB}/pandas/core/resample.py +${PYSITELIB}/pandas/core/resample.pyc +${PYSITELIB}/pandas/core/resample.pyo +${PYSITELIB}/pandas/core/reshape/__init__.py +${PYSITELIB}/pandas/core/reshape/__init__.pyc +${PYSITELIB}/pandas/core/reshape/__init__.pyo +${PYSITELIB}/pandas/core/reshape/api.py +${PYSITELIB}/pandas/core/reshape/api.pyc +${PYSITELIB}/pandas/core/reshape/api.pyo +${PYSITELIB}/pandas/core/reshape/concat.py +${PYSITELIB}/pandas/core/reshape/concat.pyc +${PYSITELIB}/pandas/core/reshape/concat.pyo +${PYSITELIB}/pandas/core/reshape/merge.py +${PYSITELIB}/pandas/core/reshape/merge.pyc +${PYSITELIB}/pandas/core/reshape/merge.pyo +${PYSITELIB}/pandas/core/reshape/pivot.py +${PYSITELIB}/pandas/core/reshape/pivot.pyc +${PYSITELIB}/pandas/core/reshape/pivot.pyo +${PYSITELIB}/pandas/core/reshape/reshape.py +${PYSITELIB}/pandas/core/reshape/reshape.pyc +${PYSITELIB}/pandas/core/reshape/reshape.pyo +${PYSITELIB}/pandas/core/reshape/tile.py +${PYSITELIB}/pandas/core/reshape/tile.pyc +${PYSITELIB}/pandas/core/reshape/tile.pyo +${PYSITELIB}/pandas/core/reshape/util.py +${PYSITELIB}/pandas/core/reshape/util.pyc +${PYSITELIB}/pandas/core/reshape/util.pyo ${PYSITELIB}/pandas/core/series.py ${PYSITELIB}/pandas/core/series.pyc ${PYSITELIB}/pandas/core/series.pyo -${PYSITELIB}/pandas/core/sparse.py -${PYSITELIB}/pandas/core/sparse.pyc -${PYSITELIB}/pandas/core/sparse.pyo +${PYSITELIB}/pandas/core/sorting.py +${PYSITELIB}/pandas/core/sorting.pyc +${PYSITELIB}/pandas/core/sorting.pyo +${PYSITELIB}/pandas/core/sparse/__init__.py +${PYSITELIB}/pandas/core/sparse/__init__.pyc +${PYSITELIB}/pandas/core/sparse/__init__.pyo +${PYSITELIB}/pandas/core/sparse/api.py +${PYSITELIB}/pandas/core/sparse/api.pyc +${PYSITELIB}/pandas/core/sparse/api.pyo +${PYSITELIB}/pandas/core/sparse/array.py +${PYSITELIB}/pandas/core/sparse/array.pyc +${PYSITELIB}/pandas/core/sparse/array.pyo +${PYSITELIB}/pandas/core/sparse/frame.py +${PYSITELIB}/pandas/core/sparse/frame.pyc +${PYSITELIB}/pandas/core/sparse/frame.pyo +${PYSITELIB}/pandas/core/sparse/list.py +${PYSITELIB}/pandas/core/sparse/list.pyc +${PYSITELIB}/pandas/core/sparse/list.pyo +${PYSITELIB}/pandas/core/sparse/scipy_sparse.py +${PYSITELIB}/pandas/core/sparse/scipy_sparse.pyc +${PYSITELIB}/pandas/core/sparse/scipy_sparse.pyo +${PYSITELIB}/pandas/core/sparse/series.py +${PYSITELIB}/pandas/core/sparse/series.pyc +${PYSITELIB}/pandas/core/sparse/series.pyo ${PYSITELIB}/pandas/core/strings.py ${PYSITELIB}/pandas/core/strings.pyc ${PYSITELIB}/pandas/core/strings.pyo +${PYSITELIB}/pandas/core/tools/__init__.py +${PYSITELIB}/pandas/core/tools/__init__.pyc +${PYSITELIB}/pandas/core/tools/__init__.pyo +${PYSITELIB}/pandas/core/tools/datetimes.py +${PYSITELIB}/pandas/core/tools/datetimes.pyc +${PYSITELIB}/pandas/core/tools/datetimes.pyo +${PYSITELIB}/pandas/core/tools/numeric.py +${PYSITELIB}/pandas/core/tools/numeric.pyc +${PYSITELIB}/pandas/core/tools/numeric.pyo +${PYSITELIB}/pandas/core/tools/timedeltas.py +${PYSITELIB}/pandas/core/tools/timedeltas.pyc +${PYSITELIB}/pandas/core/tools/timedeltas.pyo +${PYSITELIB}/pandas/core/util/__init__.py +${PYSITELIB}/pandas/core/util/__init__.pyc +${PYSITELIB}/pandas/core/util/__init__.pyo +${PYSITELIB}/pandas/core/util/hashing.py +${PYSITELIB}/pandas/core/util/hashing.pyc +${PYSITELIB}/pandas/core/util/hashing.pyo ${PYSITELIB}/pandas/core/window.py ${PYSITELIB}/pandas/core/window.pyc ${PYSITELIB}/pandas/core/window.pyo +${PYSITELIB}/pandas/errors/__init__.py +${PYSITELIB}/pandas/errors/__init__.pyc +${PYSITELIB}/pandas/errors/__init__.pyo ${PYSITELIB}/pandas/formats/__init__.py ${PYSITELIB}/pandas/formats/__init__.pyc ${PYSITELIB}/pandas/formats/__init__.pyo -${PYSITELIB}/pandas/formats/format.py -${PYSITELIB}/pandas/formats/format.pyc -${PYSITELIB}/pandas/formats/format.pyo -${PYSITELIB}/pandas/formats/printing.py -${PYSITELIB}/pandas/formats/printing.pyc -${PYSITELIB}/pandas/formats/printing.pyo ${PYSITELIB}/pandas/formats/style.py ${PYSITELIB}/pandas/formats/style.pyc ${PYSITELIB}/pandas/formats/style.pyo -${PYSITELIB}/pandas/hashtable.so -${PYSITELIB}/pandas/index.so -${PYSITELIB}/pandas/indexes/__init__.py -${PYSITELIB}/pandas/indexes/__init__.pyc -${PYSITELIB}/pandas/indexes/__init__.pyo -${PYSITELIB}/pandas/indexes/api.py -${PYSITELIB}/pandas/indexes/api.pyc -${PYSITELIB}/pandas/indexes/api.pyo -${PYSITELIB}/pandas/indexes/base.py -${PYSITELIB}/pandas/indexes/base.pyc -${PYSITELIB}/pandas/indexes/base.pyo -${PYSITELIB}/pandas/indexes/category.py -${PYSITELIB}/pandas/indexes/category.pyc -${PYSITELIB}/pandas/indexes/category.pyo -${PYSITELIB}/pandas/indexes/multi.py -${PYSITELIB}/pandas/indexes/multi.pyc -${PYSITELIB}/pandas/indexes/multi.pyo -${PYSITELIB}/pandas/indexes/numeric.py -${PYSITELIB}/pandas/indexes/numeric.pyc -${PYSITELIB}/pandas/indexes/numeric.pyo -${PYSITELIB}/pandas/indexes/range.py -${PYSITELIB}/pandas/indexes/range.pyc -${PYSITELIB}/pandas/indexes/range.pyo -${PYSITELIB}/pandas/info.py -${PYSITELIB}/pandas/info.pyc -${PYSITELIB}/pandas/info.pyo ${PYSITELIB}/pandas/io/__init__.py ${PYSITELIB}/pandas/io/__init__.pyc ${PYSITELIB}/pandas/io/__init__.pyo ${PYSITELIB}/pandas/io/api.py ${PYSITELIB}/pandas/io/api.pyc ${PYSITELIB}/pandas/io/api.pyo -${PYSITELIB}/pandas/io/auth.py -${PYSITELIB}/pandas/io/auth.pyc -${PYSITELIB}/pandas/io/auth.pyo -${PYSITELIB}/pandas/io/clipboard.py -${PYSITELIB}/pandas/io/clipboard.pyc -${PYSITELIB}/pandas/io/clipboard.pyo +${PYSITELIB}/pandas/io/clipboard/__init__.py +${PYSITELIB}/pandas/io/clipboard/__init__.pyc +${PYSITELIB}/pandas/io/clipboard/__init__.pyo +${PYSITELIB}/pandas/io/clipboard/clipboard.py +${PYSITELIB}/pandas/io/clipboard/clipboard.pyc +${PYSITELIB}/pandas/io/clipboard/clipboard.pyo +${PYSITELIB}/pandas/io/clipboard/clipboards.py +${PYSITELIB}/pandas/io/clipboard/clipboards.pyc +${PYSITELIB}/pandas/io/clipboard/clipboards.pyo +${PYSITELIB}/pandas/io/clipboard/exceptions.py +${PYSITELIB}/pandas/io/clipboard/exceptions.pyc +${PYSITELIB}/pandas/io/clipboard/exceptions.pyo +${PYSITELIB}/pandas/io/clipboard/windows.py +${PYSITELIB}/pandas/io/clipboard/windows.pyc +${PYSITELIB}/pandas/io/clipboard/windows.pyo ${PYSITELIB}/pandas/io/common.py ${PYSITELIB}/pandas/io/common.pyc ${PYSITELIB}/pandas/io/common.pyo @@ -221,18 +351,66 @@ ${PYSITELIB}/pandas/io/date_converters.p ${PYSITELIB}/pandas/io/excel.py ${PYSITELIB}/pandas/io/excel.pyc ${PYSITELIB}/pandas/io/excel.pyo -${PYSITELIB}/pandas/io/ga.py -${PYSITELIB}/pandas/io/ga.pyc -${PYSITELIB}/pandas/io/ga.pyo +${PYSITELIB}/pandas/io/feather_format.py +${PYSITELIB}/pandas/io/feather_format.pyc +${PYSITELIB}/pandas/io/feather_format.pyo +${PYSITELIB}/pandas/io/formats/__init__.py +${PYSITELIB}/pandas/io/formats/__init__.pyc +${PYSITELIB}/pandas/io/formats/__init__.pyo +${PYSITELIB}/pandas/io/formats/common.py +${PYSITELIB}/pandas/io/formats/common.pyc +${PYSITELIB}/pandas/io/formats/common.pyo +${PYSITELIB}/pandas/io/formats/console.py +${PYSITELIB}/pandas/io/formats/console.pyc +${PYSITELIB}/pandas/io/formats/console.pyo +${PYSITELIB}/pandas/io/formats/css.py +${PYSITELIB}/pandas/io/formats/css.pyc +${PYSITELIB}/pandas/io/formats/css.pyo +${PYSITELIB}/pandas/io/formats/excel.py +${PYSITELIB}/pandas/io/formats/excel.pyc +${PYSITELIB}/pandas/io/formats/excel.pyo +${PYSITELIB}/pandas/io/formats/format.py +${PYSITELIB}/pandas/io/formats/format.pyc +${PYSITELIB}/pandas/io/formats/format.pyo +${PYSITELIB}/pandas/io/formats/printing.py +${PYSITELIB}/pandas/io/formats/printing.pyc +${PYSITELIB}/pandas/io/formats/printing.pyo +${PYSITELIB}/pandas/io/formats/style.py +${PYSITELIB}/pandas/io/formats/style.pyc +${PYSITELIB}/pandas/io/formats/style.pyo +${PYSITELIB}/pandas/io/formats/templates/html.tpl +${PYSITELIB}/pandas/io/formats/terminal.py +${PYSITELIB}/pandas/io/formats/terminal.pyc +${PYSITELIB}/pandas/io/formats/terminal.pyo ${PYSITELIB}/pandas/io/gbq.py ${PYSITELIB}/pandas/io/gbq.pyc ${PYSITELIB}/pandas/io/gbq.pyo ${PYSITELIB}/pandas/io/html.py ${PYSITELIB}/pandas/io/html.pyc ${PYSITELIB}/pandas/io/html.pyo -${PYSITELIB}/pandas/io/json.py -${PYSITELIB}/pandas/io/json.pyc -${PYSITELIB}/pandas/io/json.pyo +${PYSITELIB}/pandas/io/json/__init__.py +${PYSITELIB}/pandas/io/json/__init__.pyc +${PYSITELIB}/pandas/io/json/__init__.pyo +${PYSITELIB}/pandas/io/json/json.py +${PYSITELIB}/pandas/io/json/json.pyc +${PYSITELIB}/pandas/io/json/json.pyo +${PYSITELIB}/pandas/io/json/normalize.py +${PYSITELIB}/pandas/io/json/normalize.pyc +${PYSITELIB}/pandas/io/json/normalize.pyo +${PYSITELIB}/pandas/io/json/table_schema.py +${PYSITELIB}/pandas/io/json/table_schema.pyc +${PYSITELIB}/pandas/io/json/table_schema.pyo +${PYSITELIB}/pandas/io/msgpack/__init__.py +${PYSITELIB}/pandas/io/msgpack/__init__.pyc +${PYSITELIB}/pandas/io/msgpack/__init__.pyo +${PYSITELIB}/pandas/io/msgpack/_packer.so +${PYSITELIB}/pandas/io/msgpack/_unpacker.so +${PYSITELIB}/pandas/io/msgpack/_version.py +${PYSITELIB}/pandas/io/msgpack/_version.pyc +${PYSITELIB}/pandas/io/msgpack/_version.pyo +${PYSITELIB}/pandas/io/msgpack/exceptions.py +${PYSITELIB}/pandas/io/msgpack/exceptions.pyc +${PYSITELIB}/pandas/io/msgpack/exceptions.pyo ${PYSITELIB}/pandas/io/packers.py ${PYSITELIB}/pandas/io/packers.pyc ${PYSITELIB}/pandas/io/packers.pyo @@ -245,9 +423,13 @@ ${PYSITELIB}/pandas/io/pickle.pyo ${PYSITELIB}/pandas/io/pytables.py ${PYSITELIB}/pandas/io/pytables.pyc ${PYSITELIB}/pandas/io/pytables.pyo +${PYSITELIB}/pandas/io/s3.py +${PYSITELIB}/pandas/io/s3.pyc +${PYSITELIB}/pandas/io/s3.pyo ${PYSITELIB}/pandas/io/sas/__init__.py ${PYSITELIB}/pandas/io/sas/__init__.pyc ${PYSITELIB}/pandas/io/sas/__init__.pyo +${PYSITELIB}/pandas/io/sas/_sas.so ${PYSITELIB}/pandas/io/sas/sas7bdat.py ${PYSITELIB}/pandas/io/sas/sas7bdat.pyc ${PYSITELIB}/pandas/io/sas/sas7bdat.pyo @@ -257,7 +439,6 @@ ${PYSITELIB}/pandas/io/sas/sas_constants ${PYSITELIB}/pandas/io/sas/sas_xport.py ${PYSITELIB}/pandas/io/sas/sas_xport.pyc ${PYSITELIB}/pandas/io/sas/sas_xport.pyo -${PYSITELIB}/pandas/io/sas/saslib.so ${PYSITELIB}/pandas/io/sas/sasreader.py ${PYSITELIB}/pandas/io/sas/sasreader.pyc ${PYSITELIB}/pandas/io/sas/sasreader.pyo @@ -267,497 +448,107 @@ ${PYSITELIB}/pandas/io/sql.pyo ${PYSITELIB}/pandas/io/stata.py ${PYSITELIB}/pandas/io/stata.pyc ${PYSITELIB}/pandas/io/stata.pyo -${PYSITELIB}/pandas/io/tests/__init__.py -${PYSITELIB}/pandas/io/tests/__init__.pyc -${PYSITELIB}/pandas/io/tests/__init__.pyo -${PYSITELIB}/pandas/io/tests/data/S4_EDUC1.dta -${PYSITELIB}/pandas/io/tests/data/banklist.csv -${PYSITELIB}/pandas/io/tests/data/banklist.html -${PYSITELIB}/pandas/io/tests/data/blank.xls -${PYSITELIB}/pandas/io/tests/data/blank.xlsm -${PYSITELIB}/pandas/io/tests/data/blank.xlsx -${PYSITELIB}/pandas/io/tests/data/blank_with_header.xls -${PYSITELIB}/pandas/io/tests/data/blank_with_header.xlsm -${PYSITELIB}/pandas/io/tests/data/blank_with_header.xlsx -${PYSITELIB}/pandas/io/tests/data/computer_sales_page.html -${PYSITELIB}/pandas/io/tests/data/gbq_fake_job.txt -${PYSITELIB}/pandas/io/tests/data/html_encoding/chinese_utf-16.html -${PYSITELIB}/pandas/io/tests/data/html_encoding/chinese_utf-32.html -${PYSITELIB}/pandas/io/tests/data/html_encoding/chinese_utf-8.html -${PYSITELIB}/pandas/io/tests/data/html_encoding/letz_latin1.html -${PYSITELIB}/pandas/io/tests/data/iris.csv -${PYSITELIB}/pandas/io/tests/data/legacy_hdf/datetimetz_object.h5 -${PYSITELIB}/pandas/io/tests/data/legacy_hdf/legacy.h5 -${PYSITELIB}/pandas/io/tests/data/legacy_hdf/legacy_0.10.h5 -${PYSITELIB}/pandas/io/tests/data/legacy_hdf/legacy_table.h5 -${PYSITELIB}/pandas/io/tests/data/legacy_hdf/legacy_table_0.11.h5 -${PYSITELIB}/pandas/io/tests/data/legacy_hdf/pytables_native.h5 -${PYSITELIB}/pandas/io/tests/data/legacy_hdf/pytables_native2.h5 -${PYSITELIB}/pandas/io/tests/data/legacy_msgpack/0.16.0/0.16.0_x86_64_darwin_2.7.9.msgpack -${PYSITELIB}/pandas/io/tests/data/legacy_msgpack/0.16.2/0.16.2_AMD64_windows_2.7.10.msgpack -${PYSITELIB}/pandas/io/tests/data/legacy_msgpack/0.16.2/0.16.2_AMD64_windows_3.4.3.msgpack -${PYSITELIB}/pandas/io/tests/data/legacy_msgpack/0.16.2/0.16.2_x86_64_darwin_2.7.10.msgpack -${PYSITELIB}/pandas/io/tests/data/legacy_msgpack/0.16.2/0.16.2_x86_64_darwin_2.7.9.msgpack -${PYSITELIB}/pandas/io/tests/data/legacy_msgpack/0.16.2/0.16.2_x86_64_darwin_3.4.3.msgpack -${PYSITELIB}/pandas/io/tests/data/legacy_msgpack/0.16.2/0.16.2_x86_64_linux_2.7.10.msgpack -${PYSITELIB}/pandas/io/tests/data/legacy_msgpack/0.16.2/0.16.2_x86_64_linux_3.4.3.msgpack -${PYSITELIB}/pandas/io/tests/data/legacy_msgpack/0.17.1/0.17.1_AMD64_windows_2.7.11.msgpack -${PYSITELIB}/pandas/io/tests/data/legacy_msgpack/0.17.1/0.17.1_AMD64_windows_3.5.1.msgpack -${PYSITELIB}/pandas/io/tests/data/legacy_msgpack/0.17.1/0.17.1_x86_64_darwin_2.7.11.msgpack -${PYSITELIB}/pandas/io/tests/data/legacy_msgpack/0.17.1/0.17.1_x86_64_darwin_3.5.1.msgpack -${PYSITELIB}/pandas/io/tests/data/legacy_msgpack/0.17.1/0.17.1_x86_64_linux_2.7.11.msgpack -${PYSITELIB}/pandas/io/tests/data/legacy_msgpack/0.17.1/0.17.1_x86_64_linux_3.4.4.msgpack -${PYSITELIB}/pandas/io/tests/data/legacy_msgpack/0.18.0/0.18.0_AMD64_windows_2.7.11.msgpack -${PYSITELIB}/pandas/io/tests/data/legacy_msgpack/0.18.0/0.18.0_AMD64_windows_3.5.1.msgpack -${PYSITELIB}/pandas/io/tests/data/legacy_msgpack/0.18.0/0.18.0_x86_64_darwin_2.7.11.msgpack -${PYSITELIB}/pandas/io/tests/data/legacy_msgpack/0.18.0/0.18.0_x86_64_darwin_3.5.1.msgpack -${PYSITELIB}/pandas/io/tests/data/legacy_pickle/0.10.1/AMD64_windows_2.7.3.pickle -${PYSITELIB}/pandas/io/tests/data/legacy_pickle/0.10.1/x86_64_linux_2.7.3.pickle -${PYSITELIB}/pandas/io/tests/data/legacy_pickle/0.11.0/0.11.0_x86_64_linux_3.3.0.pickle -${PYSITELIB}/pandas/io/tests/data/legacy_pickle/0.11.0/x86_64_linux_2.7.3.pickle -${PYSITELIB}/pandas/io/tests/data/legacy_pickle/0.11.0/x86_64_linux_3.3.0.pickle -${PYSITELIB}/pandas/io/tests/data/legacy_pickle/0.12.0/0.12.0_AMD64_windows_2.7.3.pickle -${PYSITELIB}/pandas/io/tests/data/legacy_pickle/0.12.0/0.12.0_x86_64_linux_2.7.3.pickle -${PYSITELIB}/pandas/io/tests/data/legacy_pickle/0.13.0/0.13.0_AMD64_windows_2.7.3.pickle -${PYSITELIB}/pandas/io/tests/data/legacy_pickle/0.13.0/0.13.0_i686_linux_2.6.5.pickle -${PYSITELIB}/pandas/io/tests/data/legacy_pickle/0.13.0/0.13.0_i686_linux_2.7.3.pickle -${PYSITELIB}/pandas/io/tests/data/legacy_pickle/0.13.0/0.13.0_i686_linux_3.2.3.pickle -${PYSITELIB}/pandas/io/tests/data/legacy_pickle/0.13.0/0.13.0_x86_64_darwin_2.7.5.pickle -${PYSITELIB}/pandas/io/tests/data/legacy_pickle/0.13.0/0.13.0_x86_64_darwin_2.7.6.pickle -${PYSITELIB}/pandas/io/tests/data/legacy_pickle/0.13.0/0.13.0_x86_64_linux_2.7.3.pickle -${PYSITELIB}/pandas/io/tests/data/legacy_pickle/0.13.0/0.13.0_x86_64_linux_2.7.8.pickle -${PYSITELIB}/pandas/io/tests/data/legacy_pickle/0.13.0/0.13.0_x86_64_linux_3.3.0.pickle -${PYSITELIB}/pandas/io/tests/data/legacy_pickle/0.14.0/0.14.0_x86_64_darwin_2.7.6.pickle -${PYSITELIB}/pandas/io/tests/data/legacy_pickle/0.14.0/0.14.0_x86_64_linux_2.7.8.pickle -${PYSITELIB}/pandas/io/tests/data/legacy_pickle/0.14.1/0.14.1_x86_64_linux_2.7.8.pickle -${PYSITELIB}/pandas/io/tests/data/legacy_pickle/0.15.0/0.15.0_x86_64_linux_2.7.8.pickle -${PYSITELIB}/pandas/io/tests/data/legacy_pickle/0.15.2/0.15.2_x86_64_darwin_2.7.9.pickle -${PYSITELIB}/pandas/io/tests/data/legacy_pickle/0.16.0/0.16.0_x86_64_darwin_2.7.9.pickle -${PYSITELIB}/pandas/io/tests/data/legacy_pickle/0.16.2/0.16.2_AMD64_windows_2.7.10.pickle -${PYSITELIB}/pandas/io/tests/data/legacy_pickle/0.16.2/0.16.2_AMD64_windows_3.4.3.pickle -${PYSITELIB}/pandas/io/tests/data/legacy_pickle/0.16.2/0.16.2_x86_64_darwin_2.7.10.pickle -${PYSITELIB}/pandas/io/tests/data/legacy_pickle/0.16.2/0.16.2_x86_64_darwin_2.7.9.pickle -${PYSITELIB}/pandas/io/tests/data/legacy_pickle/0.16.2/0.16.2_x86_64_darwin_3.4.3.pickle -${PYSITELIB}/pandas/io/tests/data/legacy_pickle/0.16.2/0.16.2_x86_64_linux_2.7.10.pickle -${PYSITELIB}/pandas/io/tests/data/legacy_pickle/0.16.2/0.16.2_x86_64_linux_3.4.3.pickle -${PYSITELIB}/pandas/io/tests/data/legacy_pickle/0.17.1/0.17.1_AMD64_windows_2.7.11.pickle -${PYSITELIB}/pandas/io/tests/data/legacy_pickle/0.17.1/0.17.1_x86_64_darwin_2.7.11.pickle -${PYSITELIB}/pandas/io/tests/data/legacy_pickle/0.18.0/0.18.0_AMD64_windows_2.7.11.pickle -${PYSITELIB}/pandas/io/tests/data/legacy_pickle/0.18.0/0.18.0_AMD64_windows_3.5.1.pickle -${PYSITELIB}/pandas/io/tests/data/legacy_pickle/0.18.0/0.18.0_x86_64_darwin_2.7.11.pickle -${PYSITELIB}/pandas/io/tests/data/legacy_pickle/0.18.0/0.18.0_x86_64_darwin_3.5.1.pickle -${PYSITELIB}/pandas/io/tests/data/macau.html -${PYSITELIB}/pandas/io/tests/data/nyse_wsj.html -${PYSITELIB}/pandas/io/tests/data/spam.html -${PYSITELIB}/pandas/io/tests/data/stata10_115.dta -${PYSITELIB}/pandas/io/tests/data/stata10_117.dta -${PYSITELIB}/pandas/io/tests/data/stata11_115.dta -${PYSITELIB}/pandas/io/tests/data/stata11_117.dta -${PYSITELIB}/pandas/io/tests/data/stata12_117.dta -${PYSITELIB}/pandas/io/tests/data/stata14_118.dta -${PYSITELIB}/pandas/io/tests/data/stata1_114.dta -${PYSITELIB}/pandas/io/tests/data/stata1_117.dta -${PYSITELIB}/pandas/io/tests/data/stata1_encoding.dta -${PYSITELIB}/pandas/io/tests/data/stata2_113.dta -${PYSITELIB}/pandas/io/tests/data/stata2_114.dta -${PYSITELIB}/pandas/io/tests/data/stata2_115.dta -${PYSITELIB}/pandas/io/tests/data/stata2_117.dta -${PYSITELIB}/pandas/io/tests/data/stata3.csv -${PYSITELIB}/pandas/io/tests/data/stata3_113.dta -${PYSITELIB}/pandas/io/tests/data/stata3_114.dta -${PYSITELIB}/pandas/io/tests/data/stata3_115.dta -${PYSITELIB}/pandas/io/tests/data/stata3_117.dta -${PYSITELIB}/pandas/io/tests/data/stata4_113.dta -${PYSITELIB}/pandas/io/tests/data/stata4_114.dta -${PYSITELIB}/pandas/io/tests/data/stata4_115.dta -${PYSITELIB}/pandas/io/tests/data/stata4_117.dta -${PYSITELIB}/pandas/io/tests/data/stata5.csv -${PYSITELIB}/pandas/io/tests/data/stata5_113.dta -${PYSITELIB}/pandas/io/tests/data/stata5_114.dta -${PYSITELIB}/pandas/io/tests/data/stata5_115.dta -${PYSITELIB}/pandas/io/tests/data/stata5_117.dta -${PYSITELIB}/pandas/io/tests/data/stata6.csv -${PYSITELIB}/pandas/io/tests/data/stata6_113.dta -${PYSITELIB}/pandas/io/tests/data/stata6_114.dta -${PYSITELIB}/pandas/io/tests/data/stata6_115.dta -${PYSITELIB}/pandas/io/tests/data/stata6_117.dta -${PYSITELIB}/pandas/io/tests/data/stata7_115.dta -${PYSITELIB}/pandas/io/tests/data/stata7_117.dta -${PYSITELIB}/pandas/io/tests/data/stata8_113.dta -${PYSITELIB}/pandas/io/tests/data/stata8_115.dta -${PYSITELIB}/pandas/io/tests/data/stata8_117.dta -${PYSITELIB}/pandas/io/tests/data/stata9_115.dta -${PYSITELIB}/pandas/io/tests/data/stata9_117.dta -${PYSITELIB}/pandas/io/tests/data/test1.csv -${PYSITELIB}/pandas/io/tests/data/test1.xls -${PYSITELIB}/pandas/io/tests/data/test1.xlsm -${PYSITELIB}/pandas/io/tests/data/test1.xlsx -${PYSITELIB}/pandas/io/tests/data/test2.xls -${PYSITELIB}/pandas/io/tests/data/test2.xlsm -${PYSITELIB}/pandas/io/tests/data/test2.xlsx -${PYSITELIB}/pandas/io/tests/data/test3.xls -${PYSITELIB}/pandas/io/tests/data/test3.xlsm -${PYSITELIB}/pandas/io/tests/data/test3.xlsx -${PYSITELIB}/pandas/io/tests/data/test4.xls -${PYSITELIB}/pandas/io/tests/data/test4.xlsm -${PYSITELIB}/pandas/io/tests/data/test4.xlsx -${PYSITELIB}/pandas/io/tests/data/test_converters.xls -${PYSITELIB}/pandas/io/tests/data/test_converters.xlsm -${PYSITELIB}/pandas/io/tests/data/test_converters.xlsx -${PYSITELIB}/pandas/io/tests/data/test_index_name_pre17.xls -${PYSITELIB}/pandas/io/tests/data/test_index_name_pre17.xlsm -${PYSITELIB}/pandas/io/tests/data/test_index_name_pre17.xlsx -${PYSITELIB}/pandas/io/tests/data/test_multisheet.xls -${PYSITELIB}/pandas/io/tests/data/test_multisheet.xlsm -${PYSITELIB}/pandas/io/tests/data/test_multisheet.xlsx -${PYSITELIB}/pandas/io/tests/data/test_squeeze.xls -${PYSITELIB}/pandas/io/tests/data/test_squeeze.xlsm -${PYSITELIB}/pandas/io/tests/data/test_squeeze.xlsx -${PYSITELIB}/pandas/io/tests/data/test_types.xls -${PYSITELIB}/pandas/io/tests/data/test_types.xlsm -${PYSITELIB}/pandas/io/tests/data/test_types.xlsx -${PYSITELIB}/pandas/io/tests/data/testmultiindex.xls -${PYSITELIB}/pandas/io/tests/data/testmultiindex.xlsm -${PYSITELIB}/pandas/io/tests/data/testmultiindex.xlsx -${PYSITELIB}/pandas/io/tests/data/testskiprows.xls -${PYSITELIB}/pandas/io/tests/data/testskiprows.xlsm -${PYSITELIB}/pandas/io/tests/data/testskiprows.xlsx -${PYSITELIB}/pandas/io/tests/data/times_1900.xls -${PYSITELIB}/pandas/io/tests/data/times_1900.xlsm -${PYSITELIB}/pandas/io/tests/data/times_1900.xlsx -${PYSITELIB}/pandas/io/tests/data/times_1904.xls -${PYSITELIB}/pandas/io/tests/data/times_1904.xlsm -${PYSITELIB}/pandas/io/tests/data/times_1904.xlsx -${PYSITELIB}/pandas/io/tests/data/tips.csv -${PYSITELIB}/pandas/io/tests/data/valid_markup.html -${PYSITELIB}/pandas/io/tests/data/wikipedia_states.html -${PYSITELIB}/pandas/io/tests/data/yahoo_options1.html -${PYSITELIB}/pandas/io/tests/data/yahoo_options2.html -${PYSITELIB}/pandas/io/tests/data/yahoo_options3.html -${PYSITELIB}/pandas/io/tests/generate_legacy_storage_files.py -${PYSITELIB}/pandas/io/tests/generate_legacy_storage_files.pyc -${PYSITELIB}/pandas/io/tests/generate_legacy_storage_files.pyo -${PYSITELIB}/pandas/io/tests/json/__init__.py -${PYSITELIB}/pandas/io/tests/json/__init__.pyc -${PYSITELIB}/pandas/io/tests/json/__init__.pyo -${PYSITELIB}/pandas/io/tests/json/data/tsframe_iso_v012.json -${PYSITELIB}/pandas/io/tests/json/data/tsframe_v012.json -${PYSITELIB}/pandas/io/tests/json/test_json_norm.py -${PYSITELIB}/pandas/io/tests/json/test_json_norm.pyc -${PYSITELIB}/pandas/io/tests/json/test_json_norm.pyo -${PYSITELIB}/pandas/io/tests/json/test_pandas.py -${PYSITELIB}/pandas/io/tests/json/test_pandas.pyc -${PYSITELIB}/pandas/io/tests/json/test_pandas.pyo -${PYSITELIB}/pandas/io/tests/json/test_ujson.py -${PYSITELIB}/pandas/io/tests/json/test_ujson.pyc -${PYSITELIB}/pandas/io/tests/json/test_ujson.pyo -${PYSITELIB}/pandas/io/tests/parser/__init__.py -${PYSITELIB}/pandas/io/tests/parser/__init__.pyc -${PYSITELIB}/pandas/io/tests/parser/__init__.pyo -${PYSITELIB}/pandas/io/tests/parser/c_parser_only.py -${PYSITELIB}/pandas/io/tests/parser/c_parser_only.pyc -${PYSITELIB}/pandas/io/tests/parser/c_parser_only.pyo -${PYSITELIB}/pandas/io/tests/parser/comment.py -${PYSITELIB}/pandas/io/tests/parser/comment.pyc -${PYSITELIB}/pandas/io/tests/parser/comment.pyo -${PYSITELIB}/pandas/io/tests/parser/common.py -${PYSITELIB}/pandas/io/tests/parser/common.pyc -${PYSITELIB}/pandas/io/tests/parser/common.pyo -${PYSITELIB}/pandas/io/tests/parser/compression.py -${PYSITELIB}/pandas/io/tests/parser/compression.pyc -${PYSITELIB}/pandas/io/tests/parser/compression.pyo -${PYSITELIB}/pandas/io/tests/parser/converters.py -${PYSITELIB}/pandas/io/tests/parser/converters.pyc -${PYSITELIB}/pandas/io/tests/parser/converters.pyo -${PYSITELIB}/pandas/io/tests/parser/data/iris.csv -${PYSITELIB}/pandas/io/tests/parser/data/salary.table.csv -${PYSITELIB}/pandas/io/tests/parser/data/salary.table.gz -${PYSITELIB}/pandas/io/tests/parser/data/test1.csv -${PYSITELIB}/pandas/io/tests/parser/data/test1.csv.bz2 -${PYSITELIB}/pandas/io/tests/parser/data/test1.csv.gz -${PYSITELIB}/pandas/io/tests/parser/data/test2.csv -${PYSITELIB}/pandas/io/tests/parser/data/tips.csv -${PYSITELIB}/pandas/io/tests/parser/data/unicode_series.csv -${PYSITELIB}/pandas/io/tests/parser/data/utf16_ex.txt -${PYSITELIB}/pandas/io/tests/parser/header.py -${PYSITELIB}/pandas/io/tests/parser/header.pyc -${PYSITELIB}/pandas/io/tests/parser/header.pyo -${PYSITELIB}/pandas/io/tests/parser/index_col.py -${PYSITELIB}/pandas/io/tests/parser/index_col.pyc -${PYSITELIB}/pandas/io/tests/parser/index_col.pyo -${PYSITELIB}/pandas/io/tests/parser/multithread.py -${PYSITELIB}/pandas/io/tests/parser/multithread.pyc -${PYSITELIB}/pandas/io/tests/parser/multithread.pyo -${PYSITELIB}/pandas/io/tests/parser/na_values.py -${PYSITELIB}/pandas/io/tests/parser/na_values.pyc -${PYSITELIB}/pandas/io/tests/parser/na_values.pyo -${PYSITELIB}/pandas/io/tests/parser/parse_dates.py -${PYSITELIB}/pandas/io/tests/parser/parse_dates.pyc -${PYSITELIB}/pandas/io/tests/parser/parse_dates.pyo -${PYSITELIB}/pandas/io/tests/parser/python_parser_only.py -${PYSITELIB}/pandas/io/tests/parser/python_parser_only.pyc -${PYSITELIB}/pandas/io/tests/parser/python_parser_only.pyo -${PYSITELIB}/pandas/io/tests/parser/skiprows.py -${PYSITELIB}/pandas/io/tests/parser/skiprows.pyc -${PYSITELIB}/pandas/io/tests/parser/skiprows.pyo -${PYSITELIB}/pandas/io/tests/parser/test_network.py -${PYSITELIB}/pandas/io/tests/parser/test_network.pyc -${PYSITELIB}/pandas/io/tests/parser/test_network.pyo -${PYSITELIB}/pandas/io/tests/parser/test_parsers.py -${PYSITELIB}/pandas/io/tests/parser/test_parsers.pyc -${PYSITELIB}/pandas/io/tests/parser/test_parsers.pyo -${PYSITELIB}/pandas/io/tests/parser/test_read_fwf.py -${PYSITELIB}/pandas/io/tests/parser/test_read_fwf.pyc -${PYSITELIB}/pandas/io/tests/parser/test_read_fwf.pyo -${PYSITELIB}/pandas/io/tests/parser/test_textreader.py -${PYSITELIB}/pandas/io/tests/parser/test_textreader.pyc -${PYSITELIB}/pandas/io/tests/parser/test_textreader.pyo -${PYSITELIB}/pandas/io/tests/parser/test_unsupported.py -${PYSITELIB}/pandas/io/tests/parser/test_unsupported.pyc -${PYSITELIB}/pandas/io/tests/parser/test_unsupported.pyo -${PYSITELIB}/pandas/io/tests/parser/usecols.py -${PYSITELIB}/pandas/io/tests/parser/usecols.pyc -${PYSITELIB}/pandas/io/tests/parser/usecols.pyo -${PYSITELIB}/pandas/io/tests/sas/data/DEMO_G.csv -${PYSITELIB}/pandas/io/tests/sas/data/DEMO_G.xpt -${PYSITELIB}/pandas/io/tests/sas/data/DRXFCD_G.csv -${PYSITELIB}/pandas/io/tests/sas/data/DRXFCD_G.xpt -${PYSITELIB}/pandas/io/tests/sas/data/SSHSV1_A.csv -${PYSITELIB}/pandas/io/tests/sas/data/SSHSV1_A.xpt -${PYSITELIB}/pandas/io/tests/sas/data/airline.csv -${PYSITELIB}/pandas/io/tests/sas/data/airline.sas7bdat -${PYSITELIB}/pandas/io/tests/sas/data/paxraw_d_short.csv -${PYSITELIB}/pandas/io/tests/sas/data/paxraw_d_short.xpt -${PYSITELIB}/pandas/io/tests/sas/data/productsales.csv -${PYSITELIB}/pandas/io/tests/sas/data/productsales.sas7bdat -${PYSITELIB}/pandas/io/tests/sas/data/test1.sas7bdat -${PYSITELIB}/pandas/io/tests/sas/data/test10.sas7bdat -${PYSITELIB}/pandas/io/tests/sas/data/test11.sas7bdat -${PYSITELIB}/pandas/io/tests/sas/data/test12.sas7bdat -${PYSITELIB}/pandas/io/tests/sas/data/test13.sas7bdat -${PYSITELIB}/pandas/io/tests/sas/data/test14.sas7bdat -${PYSITELIB}/pandas/io/tests/sas/data/test15.sas7bdat -${PYSITELIB}/pandas/io/tests/sas/data/test16.sas7bdat -${PYSITELIB}/pandas/io/tests/sas/data/test2.sas7bdat -${PYSITELIB}/pandas/io/tests/sas/data/test3.sas7bdat -${PYSITELIB}/pandas/io/tests/sas/data/test4.sas7bdat -${PYSITELIB}/pandas/io/tests/sas/data/test5.sas7bdat -${PYSITELIB}/pandas/io/tests/sas/data/test6.sas7bdat -${PYSITELIB}/pandas/io/tests/sas/data/test7.sas7bdat -${PYSITELIB}/pandas/io/tests/sas/data/test8.sas7bdat -${PYSITELIB}/pandas/io/tests/sas/data/test9.sas7bdat -${PYSITELIB}/pandas/io/tests/sas/data/test_12659.csv -${PYSITELIB}/pandas/io/tests/sas/data/test_12659.sas7bdat -${PYSITELIB}/pandas/io/tests/sas/data/test_sas7bdat_1.csv -${PYSITELIB}/pandas/io/tests/sas/data/test_sas7bdat_2.csv -${PYSITELIB}/pandas/io/tests/sas/test_sas7bdat.py -${PYSITELIB}/pandas/io/tests/sas/test_sas7bdat.pyc -${PYSITELIB}/pandas/io/tests/sas/test_sas7bdat.pyo -${PYSITELIB}/pandas/io/tests/sas/test_xport.py -${PYSITELIB}/pandas/io/tests/sas/test_xport.pyc -${PYSITELIB}/pandas/io/tests/sas/test_xport.pyo -${PYSITELIB}/pandas/io/tests/test_clipboard.py -${PYSITELIB}/pandas/io/tests/test_clipboard.pyc -${PYSITELIB}/pandas/io/tests/test_clipboard.pyo -${PYSITELIB}/pandas/io/tests/test_common.py -${PYSITELIB}/pandas/io/tests/test_common.pyc -${PYSITELIB}/pandas/io/tests/test_common.pyo -${PYSITELIB}/pandas/io/tests/test_data.py -${PYSITELIB}/pandas/io/tests/test_data.pyc -${PYSITELIB}/pandas/io/tests/test_data.pyo -${PYSITELIB}/pandas/io/tests/test_date_converters.py -${PYSITELIB}/pandas/io/tests/test_date_converters.pyc -${PYSITELIB}/pandas/io/tests/test_date_converters.pyo -${PYSITELIB}/pandas/io/tests/test_excel.py -${PYSITELIB}/pandas/io/tests/test_excel.pyc -${PYSITELIB}/pandas/io/tests/test_excel.pyo -${PYSITELIB}/pandas/io/tests/test_ga.py -${PYSITELIB}/pandas/io/tests/test_ga.pyc -${PYSITELIB}/pandas/io/tests/test_ga.pyo -${PYSITELIB}/pandas/io/tests/test_gbq.py -${PYSITELIB}/pandas/io/tests/test_gbq.pyc -${PYSITELIB}/pandas/io/tests/test_gbq.pyo -${PYSITELIB}/pandas/io/tests/test_html.py -${PYSITELIB}/pandas/io/tests/test_html.pyc -${PYSITELIB}/pandas/io/tests/test_html.pyo -${PYSITELIB}/pandas/io/tests/test_packers.py -${PYSITELIB}/pandas/io/tests/test_packers.pyc -${PYSITELIB}/pandas/io/tests/test_packers.pyo -${PYSITELIB}/pandas/io/tests/test_pickle.py -${PYSITELIB}/pandas/io/tests/test_pickle.pyc -${PYSITELIB}/pandas/io/tests/test_pickle.pyo -${PYSITELIB}/pandas/io/tests/test_pytables.py -${PYSITELIB}/pandas/io/tests/test_pytables.pyc -${PYSITELIB}/pandas/io/tests/test_pytables.pyo -${PYSITELIB}/pandas/io/tests/test_sql.py -${PYSITELIB}/pandas/io/tests/test_sql.pyc -${PYSITELIB}/pandas/io/tests/test_sql.pyo -${PYSITELIB}/pandas/io/tests/test_stata.py -${PYSITELIB}/pandas/io/tests/test_stata.pyc -${PYSITELIB}/pandas/io/tests/test_stata.pyo -${PYSITELIB}/pandas/io/tests/test_wb.py -${PYSITELIB}/pandas/io/tests/test_wb.pyc -${PYSITELIB}/pandas/io/tests/test_wb.pyo ${PYSITELIB}/pandas/io/wb.py ${PYSITELIB}/pandas/io/wb.pyc ${PYSITELIB}/pandas/io/wb.pyo -${PYSITELIB}/pandas/json.so -${PYSITELIB}/pandas/lib.so -${PYSITELIB}/pandas/msgpack/__init__.py -${PYSITELIB}/pandas/msgpack/__init__.pyc -${PYSITELIB}/pandas/msgpack/__init__.pyo -${PYSITELIB}/pandas/msgpack/_packer.so -${PYSITELIB}/pandas/msgpack/_unpacker.so -${PYSITELIB}/pandas/msgpack/_version.py -${PYSITELIB}/pandas/msgpack/_version.pyc -${PYSITELIB}/pandas/msgpack/_version.pyo -${PYSITELIB}/pandas/msgpack/exceptions.py -${PYSITELIB}/pandas/msgpack/exceptions.pyc -${PYSITELIB}/pandas/msgpack/exceptions.pyo -${PYSITELIB}/pandas/parser.so -${PYSITELIB}/pandas/rpy/__init__.py -${PYSITELIB}/pandas/rpy/__init__.pyc -${PYSITELIB}/pandas/rpy/__init__.pyo -${PYSITELIB}/pandas/rpy/base.py -${PYSITELIB}/pandas/rpy/base.pyc -${PYSITELIB}/pandas/rpy/base.pyo -${PYSITELIB}/pandas/rpy/common.py -${PYSITELIB}/pandas/rpy/common.pyc -${PYSITELIB}/pandas/rpy/common.pyo -${PYSITELIB}/pandas/rpy/mass.py -${PYSITELIB}/pandas/rpy/mass.pyc -${PYSITELIB}/pandas/rpy/mass.pyo -${PYSITELIB}/pandas/rpy/vars.py -${PYSITELIB}/pandas/rpy/vars.pyc -${PYSITELIB}/pandas/rpy/vars.pyo -${PYSITELIB}/pandas/sandbox/__init__.py -${PYSITELIB}/pandas/sandbox/__init__.pyc -${PYSITELIB}/pandas/sandbox/__init__.pyo -${PYSITELIB}/pandas/sandbox/qtpandas.py -${PYSITELIB}/pandas/sandbox/qtpandas.pyc -${PYSITELIB}/pandas/sandbox/qtpandas.pyo -${PYSITELIB}/pandas/sparse/__init__.py -${PYSITELIB}/pandas/sparse/__init__.pyc -${PYSITELIB}/pandas/sparse/__init__.pyo -${PYSITELIB}/pandas/sparse/api.py -${PYSITELIB}/pandas/sparse/api.pyc -${PYSITELIB}/pandas/sparse/api.pyo -${PYSITELIB}/pandas/sparse/array.py -${PYSITELIB}/pandas/sparse/array.pyc -${PYSITELIB}/pandas/sparse/array.pyo -${PYSITELIB}/pandas/sparse/frame.py -${PYSITELIB}/pandas/sparse/frame.pyc -${PYSITELIB}/pandas/sparse/frame.pyo -${PYSITELIB}/pandas/sparse/list.py -${PYSITELIB}/pandas/sparse/list.pyc -${PYSITELIB}/pandas/sparse/list.pyo -${PYSITELIB}/pandas/sparse/panel.py -${PYSITELIB}/pandas/sparse/panel.pyc -${PYSITELIB}/pandas/sparse/panel.pyo -${PYSITELIB}/pandas/sparse/scipy_sparse.py -${PYSITELIB}/pandas/sparse/scipy_sparse.pyc -${PYSITELIB}/pandas/sparse/scipy_sparse.pyo -${PYSITELIB}/pandas/sparse/series.py -${PYSITELIB}/pandas/sparse/series.pyc -${PYSITELIB}/pandas/sparse/series.pyo -${PYSITELIB}/pandas/sparse/tests/__init__.py -${PYSITELIB}/pandas/sparse/tests/__init__.pyc -${PYSITELIB}/pandas/sparse/tests/__init__.pyo -${PYSITELIB}/pandas/sparse/tests/test_array.py -${PYSITELIB}/pandas/sparse/tests/test_array.pyc -${PYSITELIB}/pandas/sparse/tests/test_array.pyo -${PYSITELIB}/pandas/sparse/tests/test_combine_concat.py -${PYSITELIB}/pandas/sparse/tests/test_combine_concat.pyc -${PYSITELIB}/pandas/sparse/tests/test_combine_concat.pyo -${PYSITELIB}/pandas/sparse/tests/test_frame.py -${PYSITELIB}/pandas/sparse/tests/test_frame.pyc -${PYSITELIB}/pandas/sparse/tests/test_frame.pyo -${PYSITELIB}/pandas/sparse/tests/test_indexing.py -${PYSITELIB}/pandas/sparse/tests/test_indexing.pyc -${PYSITELIB}/pandas/sparse/tests/test_indexing.pyo -${PYSITELIB}/pandas/sparse/tests/test_libsparse.py -${PYSITELIB}/pandas/sparse/tests/test_libsparse.pyc -${PYSITELIB}/pandas/sparse/tests/test_libsparse.pyo -${PYSITELIB}/pandas/sparse/tests/test_list.py -${PYSITELIB}/pandas/sparse/tests/test_list.pyc -${PYSITELIB}/pandas/sparse/tests/test_list.pyo -${PYSITELIB}/pandas/sparse/tests/test_panel.py -${PYSITELIB}/pandas/sparse/tests/test_panel.pyc -${PYSITELIB}/pandas/sparse/tests/test_panel.pyo -${PYSITELIB}/pandas/sparse/tests/test_series.py -${PYSITELIB}/pandas/sparse/tests/test_series.pyc -${PYSITELIB}/pandas/sparse/tests/test_series.pyo +${PYSITELIB}/pandas/json.py +${PYSITELIB}/pandas/json.pyc +${PYSITELIB}/pandas/json.pyo +${PYSITELIB}/pandas/lib.py +${PYSITELIB}/pandas/lib.pyc +${PYSITELIB}/pandas/lib.pyo +${PYSITELIB}/pandas/parser.py +${PYSITELIB}/pandas/parser.pyc +${PYSITELIB}/pandas/parser.pyo +${PYSITELIB}/pandas/plotting/__init__.py +${PYSITELIB}/pandas/plotting/__init__.pyc +${PYSITELIB}/pandas/plotting/__init__.pyo +${PYSITELIB}/pandas/plotting/_compat.py +${PYSITELIB}/pandas/plotting/_compat.pyc +${PYSITELIB}/pandas/plotting/_compat.pyo +${PYSITELIB}/pandas/plotting/_converter.py +${PYSITELIB}/pandas/plotting/_converter.pyc +${PYSITELIB}/pandas/plotting/_converter.pyo +${PYSITELIB}/pandas/plotting/_core.py +${PYSITELIB}/pandas/plotting/_core.pyc +${PYSITELIB}/pandas/plotting/_core.pyo +${PYSITELIB}/pandas/plotting/_misc.py +${PYSITELIB}/pandas/plotting/_misc.pyc +${PYSITELIB}/pandas/plotting/_misc.pyo +${PYSITELIB}/pandas/plotting/_style.py +${PYSITELIB}/pandas/plotting/_style.pyc +${PYSITELIB}/pandas/plotting/_style.pyo +${PYSITELIB}/pandas/plotting/_timeseries.py +${PYSITELIB}/pandas/plotting/_timeseries.pyc +${PYSITELIB}/pandas/plotting/_timeseries.pyo +${PYSITELIB}/pandas/plotting/_tools.py +${PYSITELIB}/pandas/plotting/_tools.pyc +${PYSITELIB}/pandas/plotting/_tools.pyo ${PYSITELIB}/pandas/stats/__init__.py ${PYSITELIB}/pandas/stats/__init__.pyc ${PYSITELIB}/pandas/stats/__init__.pyo ${PYSITELIB}/pandas/stats/api.py ${PYSITELIB}/pandas/stats/api.pyc ${PYSITELIB}/pandas/stats/api.pyo -${PYSITELIB}/pandas/stats/common.py -${PYSITELIB}/pandas/stats/common.pyc -${PYSITELIB}/pandas/stats/common.pyo -${PYSITELIB}/pandas/stats/fama_macbeth.py -${PYSITELIB}/pandas/stats/fama_macbeth.pyc -${PYSITELIB}/pandas/stats/fama_macbeth.pyo -${PYSITELIB}/pandas/stats/interface.py -${PYSITELIB}/pandas/stats/interface.pyc -${PYSITELIB}/pandas/stats/interface.pyo -${PYSITELIB}/pandas/stats/math.py -${PYSITELIB}/pandas/stats/math.pyc -${PYSITELIB}/pandas/stats/math.pyo -${PYSITELIB}/pandas/stats/misc.py -${PYSITELIB}/pandas/stats/misc.pyc -${PYSITELIB}/pandas/stats/misc.pyo ${PYSITELIB}/pandas/stats/moments.py ${PYSITELIB}/pandas/stats/moments.pyc ${PYSITELIB}/pandas/stats/moments.pyo -${PYSITELIB}/pandas/stats/ols.py -${PYSITELIB}/pandas/stats/ols.pyc -${PYSITELIB}/pandas/stats/ols.pyo -${PYSITELIB}/pandas/stats/plm.py -${PYSITELIB}/pandas/stats/plm.pyc -${PYSITELIB}/pandas/stats/plm.pyo -${PYSITELIB}/pandas/stats/tests/__init__.py -${PYSITELIB}/pandas/stats/tests/__init__.pyc -${PYSITELIB}/pandas/stats/tests/__init__.pyo -${PYSITELIB}/pandas/stats/tests/common.py -${PYSITELIB}/pandas/stats/tests/common.pyc -${PYSITELIB}/pandas/stats/tests/common.pyo -${PYSITELIB}/pandas/stats/tests/test_fama_macbeth.py -${PYSITELIB}/pandas/stats/tests/test_fama_macbeth.pyc -${PYSITELIB}/pandas/stats/tests/test_fama_macbeth.pyo -${PYSITELIB}/pandas/stats/tests/test_math.py -${PYSITELIB}/pandas/stats/tests/test_math.pyc -${PYSITELIB}/pandas/stats/tests/test_math.pyo -${PYSITELIB}/pandas/stats/tests/test_ols.py -${PYSITELIB}/pandas/stats/tests/test_ols.pyc -${PYSITELIB}/pandas/stats/tests/test_ols.pyo -${PYSITELIB}/pandas/stats/tests/test_var.py -${PYSITELIB}/pandas/stats/tests/test_var.pyc -${PYSITELIB}/pandas/stats/tests/test_var.pyo -${PYSITELIB}/pandas/stats/var.py -${PYSITELIB}/pandas/stats/var.pyc -${PYSITELIB}/pandas/stats/var.pyo +${PYSITELIB}/pandas/testing.py +${PYSITELIB}/pandas/testing.pyc +${PYSITELIB}/pandas/testing.pyo ${PYSITELIB}/pandas/tests/__init__.py ${PYSITELIB}/pandas/tests/__init__.pyc ${PYSITELIB}/pandas/tests/__init__.pyo -${PYSITELIB}/pandas/tests/data/categorical_0_14_1.pickle -${PYSITELIB}/pandas/tests/data/categorical_0_15_2.pickle +${PYSITELIB}/pandas/tests/api/__init__.py +${PYSITELIB}/pandas/tests/api/__init__.pyc +${PYSITELIB}/pandas/tests/api/__init__.pyo +${PYSITELIB}/pandas/tests/api/test_api.py +${PYSITELIB}/pandas/tests/api/test_api.pyc +${PYSITELIB}/pandas/tests/api/test_api.pyo +${PYSITELIB}/pandas/tests/api/test_types.py +${PYSITELIB}/pandas/tests/api/test_types.pyc +${PYSITELIB}/pandas/tests/api/test_types.pyo +${PYSITELIB}/pandas/tests/computation/__init__.py +${PYSITELIB}/pandas/tests/computation/__init__.pyc +${PYSITELIB}/pandas/tests/computation/__init__.pyo +${PYSITELIB}/pandas/tests/computation/test_compat.py +${PYSITELIB}/pandas/tests/computation/test_compat.pyc +${PYSITELIB}/pandas/tests/computation/test_compat.pyo +${PYSITELIB}/pandas/tests/computation/test_eval.py +${PYSITELIB}/pandas/tests/computation/test_eval.pyc +${PYSITELIB}/pandas/tests/computation/test_eval.pyo ${PYSITELIB}/pandas/tests/data/iris.csv ${PYSITELIB}/pandas/tests/data/tips.csv -${PYSITELIB}/pandas/tests/formats/__init__.py -${PYSITELIB}/pandas/tests/formats/__init__.pyc -${PYSITELIB}/pandas/tests/formats/__init__.pyo -${PYSITELIB}/pandas/tests/formats/data/unicode_series.csv -${PYSITELIB}/pandas/tests/formats/test_format.py -${PYSITELIB}/pandas/tests/formats/test_format.pyc -${PYSITELIB}/pandas/tests/formats/test_format.pyo -${PYSITELIB}/pandas/tests/formats/test_printing.py -${PYSITELIB}/pandas/tests/formats/test_printing.pyc -${PYSITELIB}/pandas/tests/formats/test_printing.pyo -${PYSITELIB}/pandas/tests/formats/test_style.py -${PYSITELIB}/pandas/tests/formats/test_style.pyc -${PYSITELIB}/pandas/tests/formats/test_style.pyo +${PYSITELIB}/pandas/tests/dtypes/__init__.py +${PYSITELIB}/pandas/tests/dtypes/__init__.pyc +${PYSITELIB}/pandas/tests/dtypes/__init__.pyo +${PYSITELIB}/pandas/tests/dtypes/test_cast.py +${PYSITELIB}/pandas/tests/dtypes/test_cast.pyc +${PYSITELIB}/pandas/tests/dtypes/test_cast.pyo +${PYSITELIB}/pandas/tests/dtypes/test_common.py +${PYSITELIB}/pandas/tests/dtypes/test_common.pyc +${PYSITELIB}/pandas/tests/dtypes/test_common.pyo +${PYSITELIB}/pandas/tests/dtypes/test_concat.py +${PYSITELIB}/pandas/tests/dtypes/test_concat.pyc +${PYSITELIB}/pandas/tests/dtypes/test_concat.pyo +${PYSITELIB}/pandas/tests/dtypes/test_convert.py +${PYSITELIB}/pandas/tests/dtypes/test_convert.pyc +${PYSITELIB}/pandas/tests/dtypes/test_convert.pyo +${PYSITELIB}/pandas/tests/dtypes/test_dtypes.py +${PYSITELIB}/pandas/tests/dtypes/test_dtypes.pyc +${PYSITELIB}/pandas/tests/dtypes/test_dtypes.pyo +${PYSITELIB}/pandas/tests/dtypes/test_generic.py +${PYSITELIB}/pandas/tests/dtypes/test_generic.pyc +${PYSITELIB}/pandas/tests/dtypes/test_generic.pyo +${PYSITELIB}/pandas/tests/dtypes/test_inference.py +${PYSITELIB}/pandas/tests/dtypes/test_inference.pyc +${PYSITELIB}/pandas/tests/dtypes/test_inference.pyo +${PYSITELIB}/pandas/tests/dtypes/test_io.py +${PYSITELIB}/pandas/tests/dtypes/test_io.pyc +${PYSITELIB}/pandas/tests/dtypes/test_io.pyo +${PYSITELIB}/pandas/tests/dtypes/test_missing.py +${PYSITELIB}/pandas/tests/dtypes/test_missing.pyc +${PYSITELIB}/pandas/tests/dtypes/test_missing.pyo ${PYSITELIB}/pandas/tests/frame/__init__.py ${PYSITELIB}/pandas/tests/frame/__init__.pyc ${PYSITELIB}/pandas/tests/frame/__init__.pyo @@ -770,9 +561,15 @@ ${PYSITELIB}/pandas/tests/frame/test_alt ${PYSITELIB}/pandas/tests/frame/test_analytics.py ${PYSITELIB}/pandas/tests/frame/test_analytics.pyc ${PYSITELIB}/pandas/tests/frame/test_analytics.pyo +${PYSITELIB}/pandas/tests/frame/test_api.py +${PYSITELIB}/pandas/tests/frame/test_api.pyc +${PYSITELIB}/pandas/tests/frame/test_api.pyo ${PYSITELIB}/pandas/tests/frame/test_apply.py ${PYSITELIB}/pandas/tests/frame/test_apply.pyc ${PYSITELIB}/pandas/tests/frame/test_apply.pyo +${PYSITELIB}/pandas/tests/frame/test_asof.py +${PYSITELIB}/pandas/tests/frame/test_asof.pyc +${PYSITELIB}/pandas/tests/frame/test_asof.pyo ${PYSITELIB}/pandas/tests/frame/test_axis_select_reindex.py ${PYSITELIB}/pandas/tests/frame/test_axis_select_reindex.pyc ${PYSITELIB}/pandas/tests/frame/test_axis_select_reindex.pyo @@ -794,9 +591,9 @@ ${PYSITELIB}/pandas/tests/frame/test_dty ${PYSITELIB}/pandas/tests/frame/test_indexing.py ${PYSITELIB}/pandas/tests/frame/test_indexing.pyc ${PYSITELIB}/pandas/tests/frame/test_indexing.pyo -${PYSITELIB}/pandas/tests/frame/test_misc_api.py -${PYSITELIB}/pandas/tests/frame/test_misc_api.pyc -${PYSITELIB}/pandas/tests/frame/test_misc_api.pyo +${PYSITELIB}/pandas/tests/frame/test_join.py +${PYSITELIB}/pandas/tests/frame/test_join.pyc +${PYSITELIB}/pandas/tests/frame/test_join.pyo ${PYSITELIB}/pandas/tests/frame/test_missing.py ${PYSITELIB}/pandas/tests/frame/test_missing.pyc ${PYSITELIB}/pandas/tests/frame/test_missing.pyo @@ -809,12 +606,18 @@ ${PYSITELIB}/pandas/tests/frame/test_non ${PYSITELIB}/pandas/tests/frame/test_operators.py ${PYSITELIB}/pandas/tests/frame/test_operators.pyc ${PYSITELIB}/pandas/tests/frame/test_operators.pyo +${PYSITELIB}/pandas/tests/frame/test_period.py +${PYSITELIB}/pandas/tests/frame/test_period.pyc +${PYSITELIB}/pandas/tests/frame/test_period.pyo ${PYSITELIB}/pandas/tests/frame/test_quantile.py ${PYSITELIB}/pandas/tests/frame/test_quantile.pyc ${PYSITELIB}/pandas/tests/frame/test_quantile.pyo ${PYSITELIB}/pandas/tests/frame/test_query_eval.py ${PYSITELIB}/pandas/tests/frame/test_query_eval.pyc ${PYSITELIB}/pandas/tests/frame/test_query_eval.pyo +${PYSITELIB}/pandas/tests/frame/test_rank.py +${PYSITELIB}/pandas/tests/frame/test_rank.pyc +${PYSITELIB}/pandas/tests/frame/test_rank.pyo ${PYSITELIB}/pandas/tests/frame/test_replace.py ${PYSITELIB}/pandas/tests/frame/test_replace.pyc ${PYSITELIB}/pandas/tests/frame/test_replace.pyo @@ -836,6 +639,45 @@ ${PYSITELIB}/pandas/tests/frame/test_tim ${PYSITELIB}/pandas/tests/frame/test_to_csv.py ${PYSITELIB}/pandas/tests/frame/test_to_csv.pyc ${PYSITELIB}/pandas/tests/frame/test_to_csv.pyo +${PYSITELIB}/pandas/tests/frame/test_validate.py +${PYSITELIB}/pandas/tests/frame/test_validate.pyc +${PYSITELIB}/pandas/tests/frame/test_validate.pyo +${PYSITELIB}/pandas/tests/groupby/__init__.py +${PYSITELIB}/pandas/tests/groupby/__init__.pyc +${PYSITELIB}/pandas/tests/groupby/__init__.pyo +${PYSITELIB}/pandas/tests/groupby/common.py +${PYSITELIB}/pandas/tests/groupby/common.pyc +${PYSITELIB}/pandas/tests/groupby/common.pyo +${PYSITELIB}/pandas/tests/groupby/test_aggregate.py +${PYSITELIB}/pandas/tests/groupby/test_aggregate.pyc +${PYSITELIB}/pandas/tests/groupby/test_aggregate.pyo +${PYSITELIB}/pandas/tests/groupby/test_bin_groupby.py +${PYSITELIB}/pandas/tests/groupby/test_bin_groupby.pyc +${PYSITELIB}/pandas/tests/groupby/test_bin_groupby.pyo +${PYSITELIB}/pandas/tests/groupby/test_categorical.py +${PYSITELIB}/pandas/tests/groupby/test_categorical.pyc +${PYSITELIB}/pandas/tests/groupby/test_categorical.pyo +${PYSITELIB}/pandas/tests/groupby/test_filters.py +${PYSITELIB}/pandas/tests/groupby/test_filters.pyc +${PYSITELIB}/pandas/tests/groupby/test_filters.pyo +${PYSITELIB}/pandas/tests/groupby/test_groupby.py +${PYSITELIB}/pandas/tests/groupby/test_groupby.pyc +${PYSITELIB}/pandas/tests/groupby/test_groupby.pyo +${PYSITELIB}/pandas/tests/groupby/test_nth.py +${PYSITELIB}/pandas/tests/groupby/test_nth.pyc +${PYSITELIB}/pandas/tests/groupby/test_nth.pyo +${PYSITELIB}/pandas/tests/groupby/test_timegrouper.py +${PYSITELIB}/pandas/tests/groupby/test_timegrouper.pyc +${PYSITELIB}/pandas/tests/groupby/test_timegrouper.pyo +${PYSITELIB}/pandas/tests/groupby/test_transform.py +${PYSITELIB}/pandas/tests/groupby/test_transform.pyc +${PYSITELIB}/pandas/tests/groupby/test_transform.pyo +${PYSITELIB}/pandas/tests/groupby/test_value_counts.py +${PYSITELIB}/pandas/tests/groupby/test_value_counts.pyc +${PYSITELIB}/pandas/tests/groupby/test_value_counts.pyo +${PYSITELIB}/pandas/tests/groupby/test_whitelist.py +${PYSITELIB}/pandas/tests/groupby/test_whitelist.pyc +${PYSITELIB}/pandas/tests/groupby/test_whitelist.pyo ${PYSITELIB}/pandas/tests/indexes/__init__.py ${PYSITELIB}/pandas/tests/indexes/__init__.pyc ${PYSITELIB}/pandas/tests/indexes/__init__.pyo @@ -844,17 +686,93 @@ ${PYSITELIB}/pandas/tests/indexes/common ${PYSITELIB}/pandas/tests/indexes/common.pyo ${PYSITELIB}/pandas/tests/indexes/data/mindex_073.pickle ${PYSITELIB}/pandas/tests/indexes/data/multiindex_v1.pickle -${PYSITELIB}/pandas/tests/indexes/data/s1-0.12.0.pickle -${PYSITELIB}/pandas/tests/indexes/data/s2-0.12.0.pickle +${PYSITELIB}/pandas/tests/indexes/datetimelike.py +${PYSITELIB}/pandas/tests/indexes/datetimelike.pyc +${PYSITELIB}/pandas/tests/indexes/datetimelike.pyo +${PYSITELIB}/pandas/tests/indexes/datetimes/__init__.py +${PYSITELIB}/pandas/tests/indexes/datetimes/__init__.pyc +${PYSITELIB}/pandas/tests/indexes/datetimes/__init__.pyo +${PYSITELIB}/pandas/tests/indexes/datetimes/test_astype.py +${PYSITELIB}/pandas/tests/indexes/datetimes/test_astype.pyc +${PYSITELIB}/pandas/tests/indexes/datetimes/test_astype.pyo +${PYSITELIB}/pandas/tests/indexes/datetimes/test_construction.py +${PYSITELIB}/pandas/tests/indexes/datetimes/test_construction.pyc +${PYSITELIB}/pandas/tests/indexes/datetimes/test_construction.pyo +${PYSITELIB}/pandas/tests/indexes/datetimes/test_date_range.py +${PYSITELIB}/pandas/tests/indexes/datetimes/test_date_range.pyc +${PYSITELIB}/pandas/tests/indexes/datetimes/test_date_range.pyo +${PYSITELIB}/pandas/tests/indexes/datetimes/test_datetime.py +${PYSITELIB}/pandas/tests/indexes/datetimes/test_datetime.pyc +${PYSITELIB}/pandas/tests/indexes/datetimes/test_datetime.pyo +${PYSITELIB}/pandas/tests/indexes/datetimes/test_datetimelike.py +${PYSITELIB}/pandas/tests/indexes/datetimes/test_datetimelike.pyc +${PYSITELIB}/pandas/tests/indexes/datetimes/test_datetimelike.pyo +${PYSITELIB}/pandas/tests/indexes/datetimes/test_formats.py +${PYSITELIB}/pandas/tests/indexes/datetimes/test_formats.pyc +${PYSITELIB}/pandas/tests/indexes/datetimes/test_formats.pyo +${PYSITELIB}/pandas/tests/indexes/datetimes/test_indexing.py +${PYSITELIB}/pandas/tests/indexes/datetimes/test_indexing.pyc +${PYSITELIB}/pandas/tests/indexes/datetimes/test_indexing.pyo +${PYSITELIB}/pandas/tests/indexes/datetimes/test_misc.py +${PYSITELIB}/pandas/tests/indexes/datetimes/test_misc.pyc +${PYSITELIB}/pandas/tests/indexes/datetimes/test_misc.pyo +${PYSITELIB}/pandas/tests/indexes/datetimes/test_missing.py +${PYSITELIB}/pandas/tests/indexes/datetimes/test_missing.pyc +${PYSITELIB}/pandas/tests/indexes/datetimes/test_missing.pyo +${PYSITELIB}/pandas/tests/indexes/datetimes/test_ops.py +${PYSITELIB}/pandas/tests/indexes/datetimes/test_ops.pyc +${PYSITELIB}/pandas/tests/indexes/datetimes/test_ops.pyo +${PYSITELIB}/pandas/tests/indexes/datetimes/test_partial_slicing.py +${PYSITELIB}/pandas/tests/indexes/datetimes/test_partial_slicing.pyc +${PYSITELIB}/pandas/tests/indexes/datetimes/test_partial_slicing.pyo +${PYSITELIB}/pandas/tests/indexes/datetimes/test_setops.py +${PYSITELIB}/pandas/tests/indexes/datetimes/test_setops.pyc +${PYSITELIB}/pandas/tests/indexes/datetimes/test_setops.pyo +${PYSITELIB}/pandas/tests/indexes/datetimes/test_tools.py +${PYSITELIB}/pandas/tests/indexes/datetimes/test_tools.pyc +${PYSITELIB}/pandas/tests/indexes/datetimes/test_tools.pyo +${PYSITELIB}/pandas/tests/indexes/period/__init__.py +${PYSITELIB}/pandas/tests/indexes/period/__init__.pyc +${PYSITELIB}/pandas/tests/indexes/period/__init__.pyo +${PYSITELIB}/pandas/tests/indexes/period/test_asfreq.py +${PYSITELIB}/pandas/tests/indexes/period/test_asfreq.pyc +${PYSITELIB}/pandas/tests/indexes/period/test_asfreq.pyo +${PYSITELIB}/pandas/tests/indexes/period/test_construction.py +${PYSITELIB}/pandas/tests/indexes/period/test_construction.pyc +${PYSITELIB}/pandas/tests/indexes/period/test_construction.pyo +${PYSITELIB}/pandas/tests/indexes/period/test_formats.py +${PYSITELIB}/pandas/tests/indexes/period/test_formats.pyc +${PYSITELIB}/pandas/tests/indexes/period/test_formats.pyo +${PYSITELIB}/pandas/tests/indexes/period/test_indexing.py +${PYSITELIB}/pandas/tests/indexes/period/test_indexing.pyc +${PYSITELIB}/pandas/tests/indexes/period/test_indexing.pyo +${PYSITELIB}/pandas/tests/indexes/period/test_ops.py +${PYSITELIB}/pandas/tests/indexes/period/test_ops.pyc +${PYSITELIB}/pandas/tests/indexes/period/test_ops.pyo +${PYSITELIB}/pandas/tests/indexes/period/test_partial_slicing.py +${PYSITELIB}/pandas/tests/indexes/period/test_partial_slicing.pyc +${PYSITELIB}/pandas/tests/indexes/period/test_partial_slicing.pyo +${PYSITELIB}/pandas/tests/indexes/period/test_period.py +${PYSITELIB}/pandas/tests/indexes/period/test_period.pyc +${PYSITELIB}/pandas/tests/indexes/period/test_period.pyo +${PYSITELIB}/pandas/tests/indexes/period/test_setops.py +${PYSITELIB}/pandas/tests/indexes/period/test_setops.pyc +${PYSITELIB}/pandas/tests/indexes/period/test_setops.pyo +${PYSITELIB}/pandas/tests/indexes/period/test_tools.py +${PYSITELIB}/pandas/tests/indexes/period/test_tools.pyc +${PYSITELIB}/pandas/tests/indexes/period/test_tools.pyo ${PYSITELIB}/pandas/tests/indexes/test_base.py ${PYSITELIB}/pandas/tests/indexes/test_base.pyc ${PYSITELIB}/pandas/tests/indexes/test_base.pyo ${PYSITELIB}/pandas/tests/indexes/test_category.py ${PYSITELIB}/pandas/tests/indexes/test_category.pyc ${PYSITELIB}/pandas/tests/indexes/test_category.pyo -${PYSITELIB}/pandas/tests/indexes/test_datetimelike.py -${PYSITELIB}/pandas/tests/indexes/test_datetimelike.pyc -${PYSITELIB}/pandas/tests/indexes/test_datetimelike.pyo +${PYSITELIB}/pandas/tests/indexes/test_frozen.py +${PYSITELIB}/pandas/tests/indexes/test_frozen.pyc +${PYSITELIB}/pandas/tests/indexes/test_frozen.pyo +${PYSITELIB}/pandas/tests/indexes/test_interval.py +${PYSITELIB}/pandas/tests/indexes/test_interval.pyc +${PYSITELIB}/pandas/tests/indexes/test_interval.pyo ${PYSITELIB}/pandas/tests/indexes/test_multi.py ${PYSITELIB}/pandas/tests/indexes/test_multi.pyc ${PYSITELIB}/pandas/tests/indexes/test_multi.pyo @@ -864,6 +782,553 @@ ${PYSITELIB}/pandas/tests/indexes/test_n ${PYSITELIB}/pandas/tests/indexes/test_range.py ${PYSITELIB}/pandas/tests/indexes/test_range.pyc ${PYSITELIB}/pandas/tests/indexes/test_range.pyo +${PYSITELIB}/pandas/tests/indexes/timedeltas/__init__.py +${PYSITELIB}/pandas/tests/indexes/timedeltas/__init__.pyc +${PYSITELIB}/pandas/tests/indexes/timedeltas/__init__.pyo +${PYSITELIB}/pandas/tests/indexes/timedeltas/test_astype.py +${PYSITELIB}/pandas/tests/indexes/timedeltas/test_astype.pyc +${PYSITELIB}/pandas/tests/indexes/timedeltas/test_astype.pyo +${PYSITELIB}/pandas/tests/indexes/timedeltas/test_construction.py +${PYSITELIB}/pandas/tests/indexes/timedeltas/test_construction.pyc +${PYSITELIB}/pandas/tests/indexes/timedeltas/test_construction.pyo +${PYSITELIB}/pandas/tests/indexes/timedeltas/test_indexing.py +${PYSITELIB}/pandas/tests/indexes/timedeltas/test_indexing.pyc +${PYSITELIB}/pandas/tests/indexes/timedeltas/test_indexing.pyo +${PYSITELIB}/pandas/tests/indexes/timedeltas/test_ops.py +${PYSITELIB}/pandas/tests/indexes/timedeltas/test_ops.pyc +${PYSITELIB}/pandas/tests/indexes/timedeltas/test_ops.pyo +${PYSITELIB}/pandas/tests/indexes/timedeltas/test_partial_slicing.py +${PYSITELIB}/pandas/tests/indexes/timedeltas/test_partial_slicing.pyc +${PYSITELIB}/pandas/tests/indexes/timedeltas/test_partial_slicing.pyo +${PYSITELIB}/pandas/tests/indexes/timedeltas/test_setops.py +${PYSITELIB}/pandas/tests/indexes/timedeltas/test_setops.pyc +${PYSITELIB}/pandas/tests/indexes/timedeltas/test_setops.pyo +${PYSITELIB}/pandas/tests/indexes/timedeltas/test_timedelta.py +${PYSITELIB}/pandas/tests/indexes/timedeltas/test_timedelta.pyc +${PYSITELIB}/pandas/tests/indexes/timedeltas/test_timedelta.pyo +${PYSITELIB}/pandas/tests/indexes/timedeltas/test_timedelta_range.py +${PYSITELIB}/pandas/tests/indexes/timedeltas/test_timedelta_range.pyc +${PYSITELIB}/pandas/tests/indexes/timedeltas/test_timedelta_range.pyo +${PYSITELIB}/pandas/tests/indexes/timedeltas/test_tools.py +${PYSITELIB}/pandas/tests/indexes/timedeltas/test_tools.pyc +${PYSITELIB}/pandas/tests/indexes/timedeltas/test_tools.pyo +${PYSITELIB}/pandas/tests/io/__init__.py +${PYSITELIB}/pandas/tests/io/__init__.pyc +${PYSITELIB}/pandas/tests/io/__init__.pyo +${PYSITELIB}/pandas/tests/io/data/S4_EDUC1.dta +${PYSITELIB}/pandas/tests/io/data/banklist.csv +${PYSITELIB}/pandas/tests/io/data/banklist.html +${PYSITELIB}/pandas/tests/io/data/blank.xls +${PYSITELIB}/pandas/tests/io/data/blank.xlsm +${PYSITELIB}/pandas/tests/io/data/blank.xlsx +${PYSITELIB}/pandas/tests/io/data/blank_with_header.xls +${PYSITELIB}/pandas/tests/io/data/blank_with_header.xlsm +${PYSITELIB}/pandas/tests/io/data/blank_with_header.xlsx +${PYSITELIB}/pandas/tests/io/data/categorical_0_14_1.pickle +${PYSITELIB}/pandas/tests/io/data/categorical_0_15_2.pickle +${PYSITELIB}/pandas/tests/io/data/computer_sales_page.html +${PYSITELIB}/pandas/tests/io/data/gbq_fake_job.txt +${PYSITELIB}/pandas/tests/io/data/html_encoding/chinese_utf-16.html +${PYSITELIB}/pandas/tests/io/data/html_encoding/chinese_utf-32.html +${PYSITELIB}/pandas/tests/io/data/html_encoding/chinese_utf-8.html +${PYSITELIB}/pandas/tests/io/data/html_encoding/letz_latin1.html +${PYSITELIB}/pandas/tests/io/data/iris.csv +${PYSITELIB}/pandas/tests/io/data/legacy_hdf/datetimetz_object.h5 +${PYSITELIB}/pandas/tests/io/data/legacy_hdf/legacy_0.10.h5 +${PYSITELIB}/pandas/tests/io/data/legacy_hdf/legacy_table.h5 +${PYSITELIB}/pandas/tests/io/data/legacy_hdf/legacy_table_0.11.h5 +${PYSITELIB}/pandas/tests/io/data/legacy_hdf/pytables_native.h5 +${PYSITELIB}/pandas/tests/io/data/legacy_hdf/pytables_native2.h5 +${PYSITELIB}/pandas/tests/io/data/legacy_msgpack/0.16.0/0.16.0_x86_64_darwin_2.7.9.msgpack +${PYSITELIB}/pandas/tests/io/data/legacy_msgpack/0.16.2/0.16.2_AMD64_windows_2.7.10.msgpack +${PYSITELIB}/pandas/tests/io/data/legacy_msgpack/0.16.2/0.16.2_AMD64_windows_3.4.3.msgpack +${PYSITELIB}/pandas/tests/io/data/legacy_msgpack/0.16.2/0.16.2_x86_64_darwin_2.7.10.msgpack +${PYSITELIB}/pandas/tests/io/data/legacy_msgpack/0.16.2/0.16.2_x86_64_darwin_2.7.9.msgpack +${PYSITELIB}/pandas/tests/io/data/legacy_msgpack/0.16.2/0.16.2_x86_64_darwin_3.4.3.msgpack +${PYSITELIB}/pandas/tests/io/data/legacy_msgpack/0.16.2/0.16.2_x86_64_linux_2.7.10.msgpack +${PYSITELIB}/pandas/tests/io/data/legacy_msgpack/0.16.2/0.16.2_x86_64_linux_3.4.3.msgpack +${PYSITELIB}/pandas/tests/io/data/legacy_msgpack/0.17.0/0.17.0_AMD64_windows_2.7.11.msgpack +${PYSITELIB}/pandas/tests/io/data/legacy_msgpack/0.17.0/0.17.0_AMD64_windows_3.4.4.msgpack +${PYSITELIB}/pandas/tests/io/data/legacy_msgpack/0.17.0/0.17.0_x86_64_darwin_2.7.11.msgpack +${PYSITELIB}/pandas/tests/io/data/legacy_msgpack/0.17.0/0.17.0_x86_64_darwin_3.4.4.msgpack +${PYSITELIB}/pandas/tests/io/data/legacy_msgpack/0.17.0/0.17.0_x86_64_linux_2.7.11.msgpack +${PYSITELIB}/pandas/tests/io/data/legacy_msgpack/0.17.0/0.17.0_x86_64_linux_3.4.4.msgpack +${PYSITELIB}/pandas/tests/io/data/legacy_msgpack/0.17.0/0.17.1_AMD64_windows_2.7.11.msgpack +${PYSITELIB}/pandas/tests/io/data/legacy_msgpack/0.17.0/0.17.1_AMD64_windows_3.5.1.msgpack +${PYSITELIB}/pandas/tests/io/data/legacy_msgpack/0.17.1/0.17.1_AMD64_windows_2.7.11.msgpack +${PYSITELIB}/pandas/tests/io/data/legacy_msgpack/0.17.1/0.17.1_AMD64_windows_3.5.1.msgpack +${PYSITELIB}/pandas/tests/io/data/legacy_msgpack/0.17.1/0.17.1_x86_64_darwin_2.7.11.msgpack +${PYSITELIB}/pandas/tests/io/data/legacy_msgpack/0.17.1/0.17.1_x86_64_darwin_3.5.1.msgpack +${PYSITELIB}/pandas/tests/io/data/legacy_msgpack/0.17.1/0.17.1_x86_64_linux_2.7.11.msgpack +${PYSITELIB}/pandas/tests/io/data/legacy_msgpack/0.17.1/0.17.1_x86_64_linux_3.4.4.msgpack +${PYSITELIB}/pandas/tests/io/data/legacy_msgpack/0.18.0/0.18.0_AMD64_windows_2.7.11.msgpack +${PYSITELIB}/pandas/tests/io/data/legacy_msgpack/0.18.0/0.18.0_AMD64_windows_3.5.1.msgpack +${PYSITELIB}/pandas/tests/io/data/legacy_msgpack/0.18.0/0.18.0_x86_64_darwin_2.7.11.msgpack +${PYSITELIB}/pandas/tests/io/data/legacy_msgpack/0.18.0/0.18.0_x86_64_darwin_3.5.1.msgpack +${PYSITELIB}/pandas/tests/io/data/legacy_msgpack/0.18.1/0.18.1_x86_64_darwin_2.7.12.msgpack +${PYSITELIB}/pandas/tests/io/data/legacy_msgpack/0.18.1/0.18.1_x86_64_darwin_3.5.2.msgpack +${PYSITELIB}/pandas/tests/io/data/legacy_msgpack/0.19.2/0.19.2_x86_64_darwin_2.7.12.msgpack +${PYSITELIB}/pandas/tests/io/data/legacy_msgpack/0.19.2/0.19.2_x86_64_darwin_3.6.1.msgpack +${PYSITELIB}/pandas/tests/io/data/legacy_pickle/0.10.1/AMD64_windows_2.7.3.pickle +${PYSITELIB}/pandas/tests/io/data/legacy_pickle/0.10.1/x86_64_linux_2.7.3.pickle +${PYSITELIB}/pandas/tests/io/data/legacy_pickle/0.11.0/0.11.0_x86_64_linux_3.3.0.pickle +${PYSITELIB}/pandas/tests/io/data/legacy_pickle/0.11.0/x86_64_linux_2.7.3.pickle +${PYSITELIB}/pandas/tests/io/data/legacy_pickle/0.11.0/x86_64_linux_3.3.0.pickle +${PYSITELIB}/pandas/tests/io/data/legacy_pickle/0.12.0/0.12.0_AMD64_windows_2.7.3.pickle +${PYSITELIB}/pandas/tests/io/data/legacy_pickle/0.12.0/0.12.0_x86_64_linux_2.7.3.pickle +${PYSITELIB}/pandas/tests/io/data/legacy_pickle/0.13.0/0.13.0_AMD64_windows_2.7.3.pickle +${PYSITELIB}/pandas/tests/io/data/legacy_pickle/0.13.0/0.13.0_i686_linux_2.6.5.pickle +${PYSITELIB}/pandas/tests/io/data/legacy_pickle/0.13.0/0.13.0_i686_linux_2.7.3.pickle +${PYSITELIB}/pandas/tests/io/data/legacy_pickle/0.13.0/0.13.0_i686_linux_3.2.3.pickle +${PYSITELIB}/pandas/tests/io/data/legacy_pickle/0.13.0/0.13.0_x86_64_darwin_2.7.5.pickle +${PYSITELIB}/pandas/tests/io/data/legacy_pickle/0.13.0/0.13.0_x86_64_darwin_2.7.6.pickle +${PYSITELIB}/pandas/tests/io/data/legacy_pickle/0.13.0/0.13.0_x86_64_linux_2.7.3.pickle +${PYSITELIB}/pandas/tests/io/data/legacy_pickle/0.13.0/0.13.0_x86_64_linux_2.7.8.pickle +${PYSITELIB}/pandas/tests/io/data/legacy_pickle/0.13.0/0.13.0_x86_64_linux_3.3.0.pickle +${PYSITELIB}/pandas/tests/io/data/legacy_pickle/0.14.0/0.14.0_x86_64_darwin_2.7.6.pickle +${PYSITELIB}/pandas/tests/io/data/legacy_pickle/0.14.0/0.14.0_x86_64_linux_2.7.8.pickle +${PYSITELIB}/pandas/tests/io/data/legacy_pickle/0.14.1/0.14.1_x86_64_darwin_2.7.12.pickle +${PYSITELIB}/pandas/tests/io/data/legacy_pickle/0.14.1/0.14.1_x86_64_linux_2.7.8.pickle +${PYSITELIB}/pandas/tests/io/data/legacy_pickle/0.15.0/0.15.0_x86_64_darwin_2.7.12.pickle +${PYSITELIB}/pandas/tests/io/data/legacy_pickle/0.15.0/0.15.0_x86_64_linux_2.7.8.pickle +${PYSITELIB}/pandas/tests/io/data/legacy_pickle/0.15.2/0.15.2_x86_64_darwin_2.7.9.pickle +${PYSITELIB}/pandas/tests/io/data/legacy_pickle/0.16.0/0.16.0_x86_64_darwin_2.7.9.pickle +${PYSITELIB}/pandas/tests/io/data/legacy_pickle/0.16.2/0.16.2_AMD64_windows_2.7.10.pickle +${PYSITELIB}/pandas/tests/io/data/legacy_pickle/0.16.2/0.16.2_AMD64_windows_3.4.3.pickle +${PYSITELIB}/pandas/tests/io/data/legacy_pickle/0.16.2/0.16.2_x86_64_darwin_2.7.10.pickle +${PYSITELIB}/pandas/tests/io/data/legacy_pickle/0.16.2/0.16.2_x86_64_darwin_2.7.9.pickle +${PYSITELIB}/pandas/tests/io/data/legacy_pickle/0.16.2/0.16.2_x86_64_darwin_3.4.3.pickle +${PYSITELIB}/pandas/tests/io/data/legacy_pickle/0.16.2/0.16.2_x86_64_linux_2.7.10.pickle +${PYSITELIB}/pandas/tests/io/data/legacy_pickle/0.16.2/0.16.2_x86_64_linux_3.4.3.pickle +${PYSITELIB}/pandas/tests/io/data/legacy_pickle/0.17.0/0.17.0_AMD64_windows_2.7.11.pickle +${PYSITELIB}/pandas/tests/io/data/legacy_pickle/0.17.0/0.17.0_AMD64_windows_3.4.4.pickle +${PYSITELIB}/pandas/tests/io/data/legacy_pickle/0.17.0/0.17.0_x86_64_darwin_2.7.11.pickle +${PYSITELIB}/pandas/tests/io/data/legacy_pickle/0.17.0/0.17.0_x86_64_darwin_3.4.4.pickle +${PYSITELIB}/pandas/tests/io/data/legacy_pickle/0.17.0/0.17.0_x86_64_linux_2.7.11.pickle +${PYSITELIB}/pandas/tests/io/data/legacy_pickle/0.17.0/0.17.0_x86_64_linux_3.4.4.pickle +${PYSITELIB}/pandas/tests/io/data/legacy_pickle/0.17.0/0.17.1_AMD64_windows_2.7.11.pickle +${PYSITELIB}/pandas/tests/io/data/legacy_pickle/0.17.1/0.17.1_AMD64_windows_2.7.11.pickle +${PYSITELIB}/pandas/tests/io/data/legacy_pickle/0.17.1/0.17.1_x86_64_darwin_2.7.11.pickle +${PYSITELIB}/pandas/tests/io/data/legacy_pickle/0.18.0/0.18.0_AMD64_windows_2.7.11.pickle +${PYSITELIB}/pandas/tests/io/data/legacy_pickle/0.18.0/0.18.0_AMD64_windows_3.5.1.pickle +${PYSITELIB}/pandas/tests/io/data/legacy_pickle/0.18.0/0.18.0_x86_64_darwin_2.7.11.pickle +${PYSITELIB}/pandas/tests/io/data/legacy_pickle/0.18.0/0.18.0_x86_64_darwin_3.5.1.pickle +${PYSITELIB}/pandas/tests/io/data/legacy_pickle/0.18.1/0.18.1_x86_64_darwin_2.7.12.pickle +${PYSITELIB}/pandas/tests/io/data/legacy_pickle/0.18.1/0.18.1_x86_64_darwin_3.5.2.pickle +${PYSITELIB}/pandas/tests/io/data/legacy_pickle/0.19.2/0.19.2_x86_64_darwin_2.7.12.pickle +${PYSITELIB}/pandas/tests/io/data/legacy_pickle/0.19.2/0.19.2_x86_64_darwin_3.6.1.pickle +${PYSITELIB}/pandas/tests/io/data/macau.html +${PYSITELIB}/pandas/tests/io/data/nyse_wsj.html +${PYSITELIB}/pandas/tests/io/data/spam.html +${PYSITELIB}/pandas/tests/io/data/stata10_115.dta +${PYSITELIB}/pandas/tests/io/data/stata10_117.dta +${PYSITELIB}/pandas/tests/io/data/stata11_115.dta +${PYSITELIB}/pandas/tests/io/data/stata11_117.dta +${PYSITELIB}/pandas/tests/io/data/stata12_117.dta +${PYSITELIB}/pandas/tests/io/data/stata14_118.dta +${PYSITELIB}/pandas/tests/io/data/stata15.dta +${PYSITELIB}/pandas/tests/io/data/stata1_114.dta +${PYSITELIB}/pandas/tests/io/data/stata1_117.dta +${PYSITELIB}/pandas/tests/io/data/stata1_encoding.dta +${PYSITELIB}/pandas/tests/io/data/stata2_113.dta +${PYSITELIB}/pandas/tests/io/data/stata2_114.dta +${PYSITELIB}/pandas/tests/io/data/stata2_115.dta +${PYSITELIB}/pandas/tests/io/data/stata2_117.dta +${PYSITELIB}/pandas/tests/io/data/stata3.csv +${PYSITELIB}/pandas/tests/io/data/stata3_113.dta +${PYSITELIB}/pandas/tests/io/data/stata3_114.dta +${PYSITELIB}/pandas/tests/io/data/stata3_115.dta +${PYSITELIB}/pandas/tests/io/data/stata3_117.dta +${PYSITELIB}/pandas/tests/io/data/stata4_113.dta +${PYSITELIB}/pandas/tests/io/data/stata4_114.dta +${PYSITELIB}/pandas/tests/io/data/stata4_115.dta +${PYSITELIB}/pandas/tests/io/data/stata4_117.dta +${PYSITELIB}/pandas/tests/io/data/stata5.csv +${PYSITELIB}/pandas/tests/io/data/stata5_113.dta +${PYSITELIB}/pandas/tests/io/data/stata5_114.dta +${PYSITELIB}/pandas/tests/io/data/stata5_115.dta +${PYSITELIB}/pandas/tests/io/data/stata5_117.dta +${PYSITELIB}/pandas/tests/io/data/stata6.csv +${PYSITELIB}/pandas/tests/io/data/stata6_113.dta +${PYSITELIB}/pandas/tests/io/data/stata6_114.dta +${PYSITELIB}/pandas/tests/io/data/stata6_115.dta +${PYSITELIB}/pandas/tests/io/data/stata6_117.dta +${PYSITELIB}/pandas/tests/io/data/stata7_111.dta +${PYSITELIB}/pandas/tests/io/data/stata7_115.dta +${PYSITELIB}/pandas/tests/io/data/stata7_117.dta +${PYSITELIB}/pandas/tests/io/data/stata8_113.dta +${PYSITELIB}/pandas/tests/io/data/stata8_115.dta +${PYSITELIB}/pandas/tests/io/data/stata8_117.dta +${PYSITELIB}/pandas/tests/io/data/stata9_115.dta +${PYSITELIB}/pandas/tests/io/data/stata9_117.dta +${PYSITELIB}/pandas/tests/io/data/test1.csv +${PYSITELIB}/pandas/tests/io/data/test1.xls +${PYSITELIB}/pandas/tests/io/data/test1.xlsm +${PYSITELIB}/pandas/tests/io/data/test1.xlsx +${PYSITELIB}/pandas/tests/io/data/test2.xls +${PYSITELIB}/pandas/tests/io/data/test2.xlsm +${PYSITELIB}/pandas/tests/io/data/test2.xlsx +${PYSITELIB}/pandas/tests/io/data/test3.xls +${PYSITELIB}/pandas/tests/io/data/test3.xlsm +${PYSITELIB}/pandas/tests/io/data/test3.xlsx +${PYSITELIB}/pandas/tests/io/data/test4.xls +${PYSITELIB}/pandas/tests/io/data/test4.xlsm +${PYSITELIB}/pandas/tests/io/data/test4.xlsx +${PYSITELIB}/pandas/tests/io/data/test5.xls +${PYSITELIB}/pandas/tests/io/data/test5.xlsm +${PYSITELIB}/pandas/tests/io/data/test5.xlsx +${PYSITELIB}/pandas/tests/io/data/test_converters.xls +${PYSITELIB}/pandas/tests/io/data/test_converters.xlsm +${PYSITELIB}/pandas/tests/io/data/test_converters.xlsx +${PYSITELIB}/pandas/tests/io/data/test_index_name_pre17.xls +${PYSITELIB}/pandas/tests/io/data/test_index_name_pre17.xlsm +${PYSITELIB}/pandas/tests/io/data/test_index_name_pre17.xlsx +${PYSITELIB}/pandas/tests/io/data/test_mmap.csv +${PYSITELIB}/pandas/tests/io/data/test_multisheet.xls +${PYSITELIB}/pandas/tests/io/data/test_multisheet.xlsm +${PYSITELIB}/pandas/tests/io/data/test_multisheet.xlsx +${PYSITELIB}/pandas/tests/io/data/test_squeeze.xls +${PYSITELIB}/pandas/tests/io/data/test_squeeze.xlsm +${PYSITELIB}/pandas/tests/io/data/test_squeeze.xlsx +${PYSITELIB}/pandas/tests/io/data/test_types.xls +${PYSITELIB}/pandas/tests/io/data/test_types.xlsm +${PYSITELIB}/pandas/tests/io/data/test_types.xlsx +${PYSITELIB}/pandas/tests/io/data/testdateoverflow.xls +${PYSITELIB}/pandas/tests/io/data/testdateoverflow.xlsm +${PYSITELIB}/pandas/tests/io/data/testdateoverflow.xlsx +${PYSITELIB}/pandas/tests/io/data/testdtype.xls +${PYSITELIB}/pandas/tests/io/data/testdtype.xlsm +${PYSITELIB}/pandas/tests/io/data/testdtype.xlsx +${PYSITELIB}/pandas/tests/io/data/testmultiindex.xls +${PYSITELIB}/pandas/tests/io/data/testmultiindex.xlsm +${PYSITELIB}/pandas/tests/io/data/testmultiindex.xlsx +${PYSITELIB}/pandas/tests/io/data/testskiprows.xls +${PYSITELIB}/pandas/tests/io/data/testskiprows.xlsm +${PYSITELIB}/pandas/tests/io/data/testskiprows.xlsx +${PYSITELIB}/pandas/tests/io/data/times_1900.xls +${PYSITELIB}/pandas/tests/io/data/times_1900.xlsm +${PYSITELIB}/pandas/tests/io/data/times_1900.xlsx +${PYSITELIB}/pandas/tests/io/data/times_1904.xls +${PYSITELIB}/pandas/tests/io/data/times_1904.xlsm +${PYSITELIB}/pandas/tests/io/data/times_1904.xlsx +${PYSITELIB}/pandas/tests/io/data/tips.csv +${PYSITELIB}/pandas/tests/io/data/valid_markup.html +${PYSITELIB}/pandas/tests/io/data/wikipedia_states.html +${PYSITELIB}/pandas/tests/io/formats/__init__.py +${PYSITELIB}/pandas/tests/io/formats/__init__.pyc +${PYSITELIB}/pandas/tests/io/formats/__init__.pyo +${PYSITELIB}/pandas/tests/io/formats/data/unicode_series.csv +${PYSITELIB}/pandas/tests/io/formats/test_css.py +${PYSITELIB}/pandas/tests/io/formats/test_css.pyc +${PYSITELIB}/pandas/tests/io/formats/test_css.pyo +${PYSITELIB}/pandas/tests/io/formats/test_eng_formatting.py +${PYSITELIB}/pandas/tests/io/formats/test_eng_formatting.pyc +${PYSITELIB}/pandas/tests/io/formats/test_eng_formatting.pyo +${PYSITELIB}/pandas/tests/io/formats/test_format.py +${PYSITELIB}/pandas/tests/io/formats/test_format.pyc +${PYSITELIB}/pandas/tests/io/formats/test_format.pyo +${PYSITELIB}/pandas/tests/io/formats/test_printing.py +${PYSITELIB}/pandas/tests/io/formats/test_printing.pyc +${PYSITELIB}/pandas/tests/io/formats/test_printing.pyo +${PYSITELIB}/pandas/tests/io/formats/test_style.py +${PYSITELIB}/pandas/tests/io/formats/test_style.pyc +${PYSITELIB}/pandas/tests/io/formats/test_style.pyo +${PYSITELIB}/pandas/tests/io/formats/test_to_csv.py +${PYSITELIB}/pandas/tests/io/formats/test_to_csv.pyc +${PYSITELIB}/pandas/tests/io/formats/test_to_csv.pyo +${PYSITELIB}/pandas/tests/io/formats/test_to_excel.py +${PYSITELIB}/pandas/tests/io/formats/test_to_excel.pyc +${PYSITELIB}/pandas/tests/io/formats/test_to_excel.pyo +${PYSITELIB}/pandas/tests/io/formats/test_to_html.py +${PYSITELIB}/pandas/tests/io/formats/test_to_html.pyc +${PYSITELIB}/pandas/tests/io/formats/test_to_html.pyo +${PYSITELIB}/pandas/tests/io/formats/test_to_latex.py +${PYSITELIB}/pandas/tests/io/formats/test_to_latex.pyc +${PYSITELIB}/pandas/tests/io/formats/test_to_latex.pyo +${PYSITELIB}/pandas/tests/io/generate_legacy_storage_files.py +${PYSITELIB}/pandas/tests/io/generate_legacy_storage_files.pyc +${PYSITELIB}/pandas/tests/io/generate_legacy_storage_files.pyo +${PYSITELIB}/pandas/tests/io/json/__init__.py +${PYSITELIB}/pandas/tests/io/json/__init__.pyc +${PYSITELIB}/pandas/tests/io/json/__init__.pyo +${PYSITELIB}/pandas/tests/io/json/data/tsframe_iso_v012.json +${PYSITELIB}/pandas/tests/io/json/data/tsframe_v012.json +${PYSITELIB}/pandas/tests/io/json/test_json_table_schema.py +${PYSITELIB}/pandas/tests/io/json/test_json_table_schema.pyc +${PYSITELIB}/pandas/tests/io/json/test_json_table_schema.pyo +${PYSITELIB}/pandas/tests/io/json/test_normalize.py +${PYSITELIB}/pandas/tests/io/json/test_normalize.pyc +${PYSITELIB}/pandas/tests/io/json/test_normalize.pyo +${PYSITELIB}/pandas/tests/io/json/test_pandas.py +${PYSITELIB}/pandas/tests/io/json/test_pandas.pyc +${PYSITELIB}/pandas/tests/io/json/test_pandas.pyo +${PYSITELIB}/pandas/tests/io/json/test_ujson.py +${PYSITELIB}/pandas/tests/io/json/test_ujson.pyc +${PYSITELIB}/pandas/tests/io/json/test_ujson.pyo +${PYSITELIB}/pandas/tests/io/msgpack/__init__.py +${PYSITELIB}/pandas/tests/io/msgpack/__init__.pyc +${PYSITELIB}/pandas/tests/io/msgpack/__init__.pyo +${PYSITELIB}/pandas/tests/io/msgpack/common.py +${PYSITELIB}/pandas/tests/io/msgpack/common.pyc +${PYSITELIB}/pandas/tests/io/msgpack/common.pyo +${PYSITELIB}/pandas/tests/io/msgpack/test_buffer.py +${PYSITELIB}/pandas/tests/io/msgpack/test_buffer.pyc +${PYSITELIB}/pandas/tests/io/msgpack/test_buffer.pyo +${PYSITELIB}/pandas/tests/io/msgpack/test_case.py +${PYSITELIB}/pandas/tests/io/msgpack/test_case.pyc +${PYSITELIB}/pandas/tests/io/msgpack/test_case.pyo +${PYSITELIB}/pandas/tests/io/msgpack/test_except.py +${PYSITELIB}/pandas/tests/io/msgpack/test_except.pyc +${PYSITELIB}/pandas/tests/io/msgpack/test_except.pyo +${PYSITELIB}/pandas/tests/io/msgpack/test_extension.py +${PYSITELIB}/pandas/tests/io/msgpack/test_extension.pyc +${PYSITELIB}/pandas/tests/io/msgpack/test_extension.pyo +${PYSITELIB}/pandas/tests/io/msgpack/test_format.py +${PYSITELIB}/pandas/tests/io/msgpack/test_format.pyc +${PYSITELIB}/pandas/tests/io/msgpack/test_format.pyo +${PYSITELIB}/pandas/tests/io/msgpack/test_limits.py +${PYSITELIB}/pandas/tests/io/msgpack/test_limits.pyc +${PYSITELIB}/pandas/tests/io/msgpack/test_limits.pyo +${PYSITELIB}/pandas/tests/io/msgpack/test_newspec.py +${PYSITELIB}/pandas/tests/io/msgpack/test_newspec.pyc +${PYSITELIB}/pandas/tests/io/msgpack/test_newspec.pyo +${PYSITELIB}/pandas/tests/io/msgpack/test_obj.py +${PYSITELIB}/pandas/tests/io/msgpack/test_obj.pyc +${PYSITELIB}/pandas/tests/io/msgpack/test_obj.pyo +${PYSITELIB}/pandas/tests/io/msgpack/test_pack.py +${PYSITELIB}/pandas/tests/io/msgpack/test_pack.pyc +${PYSITELIB}/pandas/tests/io/msgpack/test_pack.pyo +${PYSITELIB}/pandas/tests/io/msgpack/test_read_size.py +${PYSITELIB}/pandas/tests/io/msgpack/test_read_size.pyc +${PYSITELIB}/pandas/tests/io/msgpack/test_read_size.pyo +${PYSITELIB}/pandas/tests/io/msgpack/test_seq.py +${PYSITELIB}/pandas/tests/io/msgpack/test_seq.pyc +${PYSITELIB}/pandas/tests/io/msgpack/test_seq.pyo +${PYSITELIB}/pandas/tests/io/msgpack/test_sequnpack.py +${PYSITELIB}/pandas/tests/io/msgpack/test_sequnpack.pyc +${PYSITELIB}/pandas/tests/io/msgpack/test_sequnpack.pyo +${PYSITELIB}/pandas/tests/io/msgpack/test_subtype.py +${PYSITELIB}/pandas/tests/io/msgpack/test_subtype.pyc +${PYSITELIB}/pandas/tests/io/msgpack/test_subtype.pyo +${PYSITELIB}/pandas/tests/io/msgpack/test_unpack.py +${PYSITELIB}/pandas/tests/io/msgpack/test_unpack.pyc +${PYSITELIB}/pandas/tests/io/msgpack/test_unpack.pyo +${PYSITELIB}/pandas/tests/io/msgpack/test_unpack_raw.py +${PYSITELIB}/pandas/tests/io/msgpack/test_unpack_raw.pyc +${PYSITELIB}/pandas/tests/io/msgpack/test_unpack_raw.pyo +${PYSITELIB}/pandas/tests/io/parser/__init__.py +${PYSITELIB}/pandas/tests/io/parser/__init__.pyc +${PYSITELIB}/pandas/tests/io/parser/__init__.pyo +${PYSITELIB}/pandas/tests/io/parser/c_parser_only.py +${PYSITELIB}/pandas/tests/io/parser/c_parser_only.pyc +${PYSITELIB}/pandas/tests/io/parser/c_parser_only.pyo +${PYSITELIB}/pandas/tests/io/parser/comment.py +${PYSITELIB}/pandas/tests/io/parser/comment.pyc +${PYSITELIB}/pandas/tests/io/parser/comment.pyo +${PYSITELIB}/pandas/tests/io/parser/common.py +${PYSITELIB}/pandas/tests/io/parser/common.pyc +${PYSITELIB}/pandas/tests/io/parser/common.pyo +${PYSITELIB}/pandas/tests/io/parser/compression.py +${PYSITELIB}/pandas/tests/io/parser/compression.pyc +${PYSITELIB}/pandas/tests/io/parser/compression.pyo +${PYSITELIB}/pandas/tests/io/parser/converters.py +${PYSITELIB}/pandas/tests/io/parser/converters.pyc +${PYSITELIB}/pandas/tests/io/parser/converters.pyo +${PYSITELIB}/pandas/tests/io/parser/data/iris.csv +${PYSITELIB}/pandas/tests/io/parser/data/salaries.csv +${PYSITELIB}/pandas/tests/io/parser/data/salaries.csv.bz2 +${PYSITELIB}/pandas/tests/io/parser/data/salaries.csv.gz +${PYSITELIB}/pandas/tests/io/parser/data/sauron.SHIFT_JIS.csv +${PYSITELIB}/pandas/tests/io/parser/data/test1.csv +${PYSITELIB}/pandas/tests/io/parser/data/test1.csv.bz2 +${PYSITELIB}/pandas/tests/io/parser/data/test1.csv.gz +${PYSITELIB}/pandas/tests/io/parser/data/test2.csv +${PYSITELIB}/pandas/tests/io/parser/data/test_mmap.csv +${PYSITELIB}/pandas/tests/io/parser/data/tips.csv +${PYSITELIB}/pandas/tests/io/parser/data/unicode_series.csv +${PYSITELIB}/pandas/tests/io/parser/data/utf16_ex.txt +${PYSITELIB}/pandas/tests/io/parser/dialect.py +${PYSITELIB}/pandas/tests/io/parser/dialect.pyc +${PYSITELIB}/pandas/tests/io/parser/dialect.pyo +${PYSITELIB}/pandas/tests/io/parser/dtypes.py +${PYSITELIB}/pandas/tests/io/parser/dtypes.pyc +${PYSITELIB}/pandas/tests/io/parser/dtypes.pyo +${PYSITELIB}/pandas/tests/io/parser/header.py +${PYSITELIB}/pandas/tests/io/parser/header.pyc +${PYSITELIB}/pandas/tests/io/parser/header.pyo +${PYSITELIB}/pandas/tests/io/parser/index_col.py +${PYSITELIB}/pandas/tests/io/parser/index_col.pyc +${PYSITELIB}/pandas/tests/io/parser/index_col.pyo +${PYSITELIB}/pandas/tests/io/parser/multithread.py +${PYSITELIB}/pandas/tests/io/parser/multithread.pyc +${PYSITELIB}/pandas/tests/io/parser/multithread.pyo +${PYSITELIB}/pandas/tests/io/parser/na_values.py +${PYSITELIB}/pandas/tests/io/parser/na_values.pyc +${PYSITELIB}/pandas/tests/io/parser/na_values.pyo +${PYSITELIB}/pandas/tests/io/parser/parse_dates.py +${PYSITELIB}/pandas/tests/io/parser/parse_dates.pyc +${PYSITELIB}/pandas/tests/io/parser/parse_dates.pyo +${PYSITELIB}/pandas/tests/io/parser/python_parser_only.py +${PYSITELIB}/pandas/tests/io/parser/python_parser_only.pyc +${PYSITELIB}/pandas/tests/io/parser/python_parser_only.pyo +${PYSITELIB}/pandas/tests/io/parser/quoting.py +${PYSITELIB}/pandas/tests/io/parser/quoting.pyc +${PYSITELIB}/pandas/tests/io/parser/quoting.pyo +${PYSITELIB}/pandas/tests/io/parser/skiprows.py +${PYSITELIB}/pandas/tests/io/parser/skiprows.pyc +${PYSITELIB}/pandas/tests/io/parser/skiprows.pyo +${PYSITELIB}/pandas/tests/io/parser/test_network.py +${PYSITELIB}/pandas/tests/io/parser/test_network.pyc +${PYSITELIB}/pandas/tests/io/parser/test_network.pyo +${PYSITELIB}/pandas/tests/io/parser/test_parsers.py +${PYSITELIB}/pandas/tests/io/parser/test_parsers.pyc +${PYSITELIB}/pandas/tests/io/parser/test_parsers.pyo +${PYSITELIB}/pandas/tests/io/parser/test_read_fwf.py +${PYSITELIB}/pandas/tests/io/parser/test_read_fwf.pyc +${PYSITELIB}/pandas/tests/io/parser/test_read_fwf.pyo +${PYSITELIB}/pandas/tests/io/parser/test_textreader.py +${PYSITELIB}/pandas/tests/io/parser/test_textreader.pyc +${PYSITELIB}/pandas/tests/io/parser/test_textreader.pyo +${PYSITELIB}/pandas/tests/io/parser/test_unsupported.py +${PYSITELIB}/pandas/tests/io/parser/test_unsupported.pyc +${PYSITELIB}/pandas/tests/io/parser/test_unsupported.pyo +${PYSITELIB}/pandas/tests/io/parser/usecols.py +${PYSITELIB}/pandas/tests/io/parser/usecols.pyc +${PYSITELIB}/pandas/tests/io/parser/usecols.pyo +${PYSITELIB}/pandas/tests/io/sas/__init__.py +${PYSITELIB}/pandas/tests/io/sas/__init__.pyc +${PYSITELIB}/pandas/tests/io/sas/__init__.pyo +${PYSITELIB}/pandas/tests/io/sas/data/DEMO_G.csv +${PYSITELIB}/pandas/tests/io/sas/data/DEMO_G.xpt +${PYSITELIB}/pandas/tests/io/sas/data/DRXFCD_G.csv +${PYSITELIB}/pandas/tests/io/sas/data/DRXFCD_G.xpt +${PYSITELIB}/pandas/tests/io/sas/data/SSHSV1_A.csv +${PYSITELIB}/pandas/tests/io/sas/data/SSHSV1_A.xpt +${PYSITELIB}/pandas/tests/io/sas/data/airline.csv +${PYSITELIB}/pandas/tests/io/sas/data/airline.sas7bdat +${PYSITELIB}/pandas/tests/io/sas/data/paxraw_d_short.csv +${PYSITELIB}/pandas/tests/io/sas/data/paxraw_d_short.xpt +${PYSITELIB}/pandas/tests/io/sas/data/productsales.csv +${PYSITELIB}/pandas/tests/io/sas/data/productsales.sas7bdat +${PYSITELIB}/pandas/tests/io/sas/data/test1.sas7bdat +${PYSITELIB}/pandas/tests/io/sas/data/test10.sas7bdat +${PYSITELIB}/pandas/tests/io/sas/data/test11.sas7bdat +${PYSITELIB}/pandas/tests/io/sas/data/test12.sas7bdat +${PYSITELIB}/pandas/tests/io/sas/data/test13.sas7bdat +${PYSITELIB}/pandas/tests/io/sas/data/test14.sas7bdat +${PYSITELIB}/pandas/tests/io/sas/data/test15.sas7bdat +${PYSITELIB}/pandas/tests/io/sas/data/test16.sas7bdat +${PYSITELIB}/pandas/tests/io/sas/data/test2.sas7bdat +${PYSITELIB}/pandas/tests/io/sas/data/test3.sas7bdat +${PYSITELIB}/pandas/tests/io/sas/data/test4.sas7bdat +${PYSITELIB}/pandas/tests/io/sas/data/test5.sas7bdat +${PYSITELIB}/pandas/tests/io/sas/data/test6.sas7bdat +${PYSITELIB}/pandas/tests/io/sas/data/test7.sas7bdat +${PYSITELIB}/pandas/tests/io/sas/data/test8.sas7bdat +${PYSITELIB}/pandas/tests/io/sas/data/test9.sas7bdat +${PYSITELIB}/pandas/tests/io/sas/data/test_12659.csv +${PYSITELIB}/pandas/tests/io/sas/data/test_12659.sas7bdat +${PYSITELIB}/pandas/tests/io/sas/data/test_sas7bdat_1.csv +${PYSITELIB}/pandas/tests/io/sas/data/test_sas7bdat_2.csv +${PYSITELIB}/pandas/tests/io/sas/test_sas.py +${PYSITELIB}/pandas/tests/io/sas/test_sas.pyc +${PYSITELIB}/pandas/tests/io/sas/test_sas.pyo +${PYSITELIB}/pandas/tests/io/sas/test_sas7bdat.py +${PYSITELIB}/pandas/tests/io/sas/test_sas7bdat.pyc +${PYSITELIB}/pandas/tests/io/sas/test_sas7bdat.pyo +${PYSITELIB}/pandas/tests/io/sas/test_xport.py +${PYSITELIB}/pandas/tests/io/sas/test_xport.pyc +${PYSITELIB}/pandas/tests/io/sas/test_xport.pyo +${PYSITELIB}/pandas/tests/io/test_clipboard.py +${PYSITELIB}/pandas/tests/io/test_clipboard.pyc +${PYSITELIB}/pandas/tests/io/test_clipboard.pyo +${PYSITELIB}/pandas/tests/io/test_common.py +${PYSITELIB}/pandas/tests/io/test_common.pyc +${PYSITELIB}/pandas/tests/io/test_common.pyo +${PYSITELIB}/pandas/tests/io/test_excel.py +${PYSITELIB}/pandas/tests/io/test_excel.pyc +${PYSITELIB}/pandas/tests/io/test_excel.pyo +${PYSITELIB}/pandas/tests/io/test_feather.py +${PYSITELIB}/pandas/tests/io/test_feather.pyc +${PYSITELIB}/pandas/tests/io/test_feather.pyo +${PYSITELIB}/pandas/tests/io/test_gbq.py +${PYSITELIB}/pandas/tests/io/test_gbq.pyc +${PYSITELIB}/pandas/tests/io/test_gbq.pyo +${PYSITELIB}/pandas/tests/io/test_html.py +${PYSITELIB}/pandas/tests/io/test_html.pyc +${PYSITELIB}/pandas/tests/io/test_html.pyo +${PYSITELIB}/pandas/tests/io/test_packers.py +${PYSITELIB}/pandas/tests/io/test_packers.pyc +${PYSITELIB}/pandas/tests/io/test_packers.pyo +${PYSITELIB}/pandas/tests/io/test_pickle.py +${PYSITELIB}/pandas/tests/io/test_pickle.pyc +${PYSITELIB}/pandas/tests/io/test_pickle.pyo +${PYSITELIB}/pandas/tests/io/test_pytables.py +${PYSITELIB}/pandas/tests/io/test_pytables.pyc +${PYSITELIB}/pandas/tests/io/test_pytables.pyo +${PYSITELIB}/pandas/tests/io/test_s3.py +${PYSITELIB}/pandas/tests/io/test_s3.pyc +${PYSITELIB}/pandas/tests/io/test_s3.pyo +${PYSITELIB}/pandas/tests/io/test_sql.py +${PYSITELIB}/pandas/tests/io/test_sql.pyc +${PYSITELIB}/pandas/tests/io/test_sql.pyo +${PYSITELIB}/pandas/tests/io/test_stata.py +${PYSITELIB}/pandas/tests/io/test_stata.pyc +${PYSITELIB}/pandas/tests/io/test_stata.pyo +${PYSITELIB}/pandas/tests/plotting/__init__.py +${PYSITELIB}/pandas/tests/plotting/__init__.pyc +${PYSITELIB}/pandas/tests/plotting/__init__.pyo +${PYSITELIB}/pandas/tests/plotting/common.py +${PYSITELIB}/pandas/tests/plotting/common.pyc +${PYSITELIB}/pandas/tests/plotting/common.pyo +${PYSITELIB}/pandas/tests/plotting/test_boxplot_method.py +${PYSITELIB}/pandas/tests/plotting/test_boxplot_method.pyc +${PYSITELIB}/pandas/tests/plotting/test_boxplot_method.pyo +${PYSITELIB}/pandas/tests/plotting/test_converter.py +${PYSITELIB}/pandas/tests/plotting/test_converter.pyc +${PYSITELIB}/pandas/tests/plotting/test_converter.pyo +${PYSITELIB}/pandas/tests/plotting/test_datetimelike.py +${PYSITELIB}/pandas/tests/plotting/test_datetimelike.pyc +${PYSITELIB}/pandas/tests/plotting/test_datetimelike.pyo +${PYSITELIB}/pandas/tests/plotting/test_deprecated.py +${PYSITELIB}/pandas/tests/plotting/test_deprecated.pyc +${PYSITELIB}/pandas/tests/plotting/test_deprecated.pyo +${PYSITELIB}/pandas/tests/plotting/test_frame.py +${PYSITELIB}/pandas/tests/plotting/test_frame.pyc +${PYSITELIB}/pandas/tests/plotting/test_frame.pyo +${PYSITELIB}/pandas/tests/plotting/test_groupby.py +${PYSITELIB}/pandas/tests/plotting/test_groupby.pyc +${PYSITELIB}/pandas/tests/plotting/test_groupby.pyo +${PYSITELIB}/pandas/tests/plotting/test_hist_method.py +${PYSITELIB}/pandas/tests/plotting/test_hist_method.pyc +${PYSITELIB}/pandas/tests/plotting/test_hist_method.pyo +${PYSITELIB}/pandas/tests/plotting/test_misc.py +${PYSITELIB}/pandas/tests/plotting/test_misc.pyc +${PYSITELIB}/pandas/tests/plotting/test_misc.pyo +${PYSITELIB}/pandas/tests/plotting/test_series.py +${PYSITELIB}/pandas/tests/plotting/test_series.pyc +${PYSITELIB}/pandas/tests/plotting/test_series.pyo +${PYSITELIB}/pandas/tests/scalar/__init__.py +${PYSITELIB}/pandas/tests/scalar/__init__.pyc +${PYSITELIB}/pandas/tests/scalar/__init__.pyo +${PYSITELIB}/pandas/tests/scalar/test_interval.py +${PYSITELIB}/pandas/tests/scalar/test_interval.pyc +${PYSITELIB}/pandas/tests/scalar/test_interval.pyo +${PYSITELIB}/pandas/tests/scalar/test_nat.py +${PYSITELIB}/pandas/tests/scalar/test_nat.pyc +${PYSITELIB}/pandas/tests/scalar/test_nat.pyo +${PYSITELIB}/pandas/tests/scalar/test_period.py +${PYSITELIB}/pandas/tests/scalar/test_period.pyc +${PYSITELIB}/pandas/tests/scalar/test_period.pyo +${PYSITELIB}/pandas/tests/scalar/test_period_asfreq.py +${PYSITELIB}/pandas/tests/scalar/test_period_asfreq.pyc +${PYSITELIB}/pandas/tests/scalar/test_period_asfreq.pyo +${PYSITELIB}/pandas/tests/scalar/test_timedelta.py +${PYSITELIB}/pandas/tests/scalar/test_timedelta.pyc +${PYSITELIB}/pandas/tests/scalar/test_timedelta.pyo +${PYSITELIB}/pandas/tests/scalar/test_timestamp.py +${PYSITELIB}/pandas/tests/scalar/test_timestamp.pyc +${PYSITELIB}/pandas/tests/scalar/test_timestamp.pyo ${PYSITELIB}/pandas/tests/series/__init__.py ${PYSITELIB}/pandas/tests/series/__init__.pyc ${PYSITELIB}/pandas/tests/series/__init__.pyo @@ -876,9 +1341,15 @@ ${PYSITELIB}/pandas/tests/series/test_al ${PYSITELIB}/pandas/tests/series/test_analytics.py ${PYSITELIB}/pandas/tests/series/test_analytics.pyc ${PYSITELIB}/pandas/tests/series/test_analytics.pyo +${PYSITELIB}/pandas/tests/series/test_api.py +${PYSITELIB}/pandas/tests/series/test_api.pyc +${PYSITELIB}/pandas/tests/series/test_api.pyo ${PYSITELIB}/pandas/tests/series/test_apply.py ${PYSITELIB}/pandas/tests/series/test_apply.pyc ${PYSITELIB}/pandas/tests/series/test_apply.pyo +${PYSITELIB}/pandas/tests/series/test_asof.py +${PYSITELIB}/pandas/tests/series/test_asof.pyc +${PYSITELIB}/pandas/tests/series/test_asof.pyo ${PYSITELIB}/pandas/tests/series/test_combine_concat.py ${PYSITELIB}/pandas/tests/series/test_combine_concat.pyc ${PYSITELIB}/pandas/tests/series/test_combine_concat.pyo @@ -900,30 +1371,78 @@ ${PYSITELIB}/pandas/tests/series/test_in ${PYSITELIB}/pandas/tests/series/test_io.py ${PYSITELIB}/pandas/tests/series/test_io.pyc ${PYSITELIB}/pandas/tests/series/test_io.pyo -${PYSITELIB}/pandas/tests/series/test_misc_api.py -${PYSITELIB}/pandas/tests/series/test_misc_api.pyc -${PYSITELIB}/pandas/tests/series/test_misc_api.pyo ${PYSITELIB}/pandas/tests/series/test_missing.py ${PYSITELIB}/pandas/tests/series/test_missing.pyc ${PYSITELIB}/pandas/tests/series/test_missing.pyo ${PYSITELIB}/pandas/tests/series/test_operators.py ${PYSITELIB}/pandas/tests/series/test_operators.pyc ${PYSITELIB}/pandas/tests/series/test_operators.pyo +${PYSITELIB}/pandas/tests/series/test_period.py +${PYSITELIB}/pandas/tests/series/test_period.pyc +${PYSITELIB}/pandas/tests/series/test_period.pyo ${PYSITELIB}/pandas/tests/series/test_quantile.py ${PYSITELIB}/pandas/tests/series/test_quantile.pyc ${PYSITELIB}/pandas/tests/series/test_quantile.pyo +${PYSITELIB}/pandas/tests/series/test_rank.py +${PYSITELIB}/pandas/tests/series/test_rank.pyc +${PYSITELIB}/pandas/tests/series/test_rank.pyo ${PYSITELIB}/pandas/tests/series/test_replace.py ${PYSITELIB}/pandas/tests/series/test_replace.pyc ${PYSITELIB}/pandas/tests/series/test_replace.pyo ${PYSITELIB}/pandas/tests/series/test_repr.py ${PYSITELIB}/pandas/tests/series/test_repr.pyc ${PYSITELIB}/pandas/tests/series/test_repr.pyo +${PYSITELIB}/pandas/tests/series/test_sorting.py +${PYSITELIB}/pandas/tests/series/test_sorting.pyc +${PYSITELIB}/pandas/tests/series/test_sorting.pyo ${PYSITELIB}/pandas/tests/series/test_subclass.py ${PYSITELIB}/pandas/tests/series/test_subclass.pyc ${PYSITELIB}/pandas/tests/series/test_subclass.pyo ${PYSITELIB}/pandas/tests/series/test_timeseries.py ${PYSITELIB}/pandas/tests/series/test_timeseries.pyc ${PYSITELIB}/pandas/tests/series/test_timeseries.pyo +${PYSITELIB}/pandas/tests/series/test_validate.py +${PYSITELIB}/pandas/tests/series/test_validate.pyc +${PYSITELIB}/pandas/tests/series/test_validate.pyo +${PYSITELIB}/pandas/tests/sparse/__init__.py +${PYSITELIB}/pandas/tests/sparse/__init__.pyc +${PYSITELIB}/pandas/tests/sparse/__init__.pyo +${PYSITELIB}/pandas/tests/sparse/common.py +${PYSITELIB}/pandas/tests/sparse/common.pyc +${PYSITELIB}/pandas/tests/sparse/common.pyo +${PYSITELIB}/pandas/tests/sparse/test_arithmetics.py +${PYSITELIB}/pandas/tests/sparse/test_arithmetics.pyc +${PYSITELIB}/pandas/tests/sparse/test_arithmetics.pyo +${PYSITELIB}/pandas/tests/sparse/test_array.py +${PYSITELIB}/pandas/tests/sparse/test_array.pyc +${PYSITELIB}/pandas/tests/sparse/test_array.pyo +${PYSITELIB}/pandas/tests/sparse/test_combine_concat.py +${PYSITELIB}/pandas/tests/sparse/test_combine_concat.pyc +${PYSITELIB}/pandas/tests/sparse/test_combine_concat.pyo +${PYSITELIB}/pandas/tests/sparse/test_format.py +${PYSITELIB}/pandas/tests/sparse/test_format.pyc +${PYSITELIB}/pandas/tests/sparse/test_format.pyo +${PYSITELIB}/pandas/tests/sparse/test_frame.py +${PYSITELIB}/pandas/tests/sparse/test_frame.pyc +${PYSITELIB}/pandas/tests/sparse/test_frame.pyo +${PYSITELIB}/pandas/tests/sparse/test_groupby.py +${PYSITELIB}/pandas/tests/sparse/test_groupby.pyc +${PYSITELIB}/pandas/tests/sparse/test_groupby.pyo +${PYSITELIB}/pandas/tests/sparse/test_indexing.py +${PYSITELIB}/pandas/tests/sparse/test_indexing.pyc +${PYSITELIB}/pandas/tests/sparse/test_indexing.pyo +${PYSITELIB}/pandas/tests/sparse/test_libsparse.py +${PYSITELIB}/pandas/tests/sparse/test_libsparse.pyc +${PYSITELIB}/pandas/tests/sparse/test_libsparse.pyo +${PYSITELIB}/pandas/tests/sparse/test_list.py +${PYSITELIB}/pandas/tests/sparse/test_list.pyc +${PYSITELIB}/pandas/tests/sparse/test_list.pyo +${PYSITELIB}/pandas/tests/sparse/test_pivot.py +${PYSITELIB}/pandas/tests/sparse/test_pivot.pyc +${PYSITELIB}/pandas/tests/sparse/test_pivot.pyo +${PYSITELIB}/pandas/tests/sparse/test_series.py +${PYSITELIB}/pandas/tests/sparse/test_series.pyc +${PYSITELIB}/pandas/tests/sparse/test_series.pyo ${PYSITELIB}/pandas/tests/test_algos.py ${PYSITELIB}/pandas/tests/test_algos.pyc ${PYSITELIB}/pandas/tests/test_algos.pyo @@ -942,75 +1461,24 @@ ${PYSITELIB}/pandas/tests/test_compat.py ${PYSITELIB}/pandas/tests/test_config.py ${PYSITELIB}/pandas/tests/test_config.pyc ${PYSITELIB}/pandas/tests/test_config.pyo +${PYSITELIB}/pandas/tests/test_downstream.py +${PYSITELIB}/pandas/tests/test_downstream.pyc +${PYSITELIB}/pandas/tests/test_downstream.pyo +${PYSITELIB}/pandas/tests/test_errors.py +${PYSITELIB}/pandas/tests/test_errors.pyc +${PYSITELIB}/pandas/tests/test_errors.pyo ${PYSITELIB}/pandas/tests/test_expressions.py ${PYSITELIB}/pandas/tests/test_expressions.pyc ${PYSITELIB}/pandas/tests/test_expressions.pyo -${PYSITELIB}/pandas/tests/test_generic.py -${PYSITELIB}/pandas/tests/test_generic.pyc -${PYSITELIB}/pandas/tests/test_generic.pyo -${PYSITELIB}/pandas/tests/test_graphics.py -${PYSITELIB}/pandas/tests/test_graphics.pyc -${PYSITELIB}/pandas/tests/test_graphics.pyo -${PYSITELIB}/pandas/tests/test_graphics_others.py -${PYSITELIB}/pandas/tests/test_graphics_others.pyc -${PYSITELIB}/pandas/tests/test_graphics_others.pyo -${PYSITELIB}/pandas/tests/test_groupby.py -${PYSITELIB}/pandas/tests/test_groupby.pyc -${PYSITELIB}/pandas/tests/test_groupby.pyo ${PYSITELIB}/pandas/tests/test_internals.py ${PYSITELIB}/pandas/tests/test_internals.pyc ${PYSITELIB}/pandas/tests/test_internals.pyo +${PYSITELIB}/pandas/tests/test_join.py +${PYSITELIB}/pandas/tests/test_join.pyc +${PYSITELIB}/pandas/tests/test_join.pyo ${PYSITELIB}/pandas/tests/test_lib.py ${PYSITELIB}/pandas/tests/test_lib.pyc ${PYSITELIB}/pandas/tests/test_lib.pyo -${PYSITELIB}/pandas/tests/test_msgpack/__init__.py -${PYSITELIB}/pandas/tests/test_msgpack/__init__.pyc -${PYSITELIB}/pandas/tests/test_msgpack/__init__.pyo -${PYSITELIB}/pandas/tests/test_msgpack/test_buffer.py -${PYSITELIB}/pandas/tests/test_msgpack/test_buffer.pyc -${PYSITELIB}/pandas/tests/test_msgpack/test_buffer.pyo -${PYSITELIB}/pandas/tests/test_msgpack/test_case.py -${PYSITELIB}/pandas/tests/test_msgpack/test_case.pyc -${PYSITELIB}/pandas/tests/test_msgpack/test_case.pyo -${PYSITELIB}/pandas/tests/test_msgpack/test_except.py -${PYSITELIB}/pandas/tests/test_msgpack/test_except.pyc -${PYSITELIB}/pandas/tests/test_msgpack/test_except.pyo -${PYSITELIB}/pandas/tests/test_msgpack/test_extension.py -${PYSITELIB}/pandas/tests/test_msgpack/test_extension.pyc -${PYSITELIB}/pandas/tests/test_msgpack/test_extension.pyo -${PYSITELIB}/pandas/tests/test_msgpack/test_format.py -${PYSITELIB}/pandas/tests/test_msgpack/test_format.pyc -${PYSITELIB}/pandas/tests/test_msgpack/test_format.pyo -${PYSITELIB}/pandas/tests/test_msgpack/test_limits.py -${PYSITELIB}/pandas/tests/test_msgpack/test_limits.pyc -${PYSITELIB}/pandas/tests/test_msgpack/test_limits.pyo -${PYSITELIB}/pandas/tests/test_msgpack/test_newspec.py -${PYSITELIB}/pandas/tests/test_msgpack/test_newspec.pyc -${PYSITELIB}/pandas/tests/test_msgpack/test_newspec.pyo -${PYSITELIB}/pandas/tests/test_msgpack/test_obj.py -${PYSITELIB}/pandas/tests/test_msgpack/test_obj.pyc -${PYSITELIB}/pandas/tests/test_msgpack/test_obj.pyo -${PYSITELIB}/pandas/tests/test_msgpack/test_pack.py -${PYSITELIB}/pandas/tests/test_msgpack/test_pack.pyc -${PYSITELIB}/pandas/tests/test_msgpack/test_pack.pyo -${PYSITELIB}/pandas/tests/test_msgpack/test_read_size.py -${PYSITELIB}/pandas/tests/test_msgpack/test_read_size.pyc -${PYSITELIB}/pandas/tests/test_msgpack/test_read_size.pyo -${PYSITELIB}/pandas/tests/test_msgpack/test_seq.py -${PYSITELIB}/pandas/tests/test_msgpack/test_seq.pyc -${PYSITELIB}/pandas/tests/test_msgpack/test_seq.pyo -${PYSITELIB}/pandas/tests/test_msgpack/test_sequnpack.py -${PYSITELIB}/pandas/tests/test_msgpack/test_sequnpack.pyc -${PYSITELIB}/pandas/tests/test_msgpack/test_sequnpack.pyo -${PYSITELIB}/pandas/tests/test_msgpack/test_subtype.py -${PYSITELIB}/pandas/tests/test_msgpack/test_subtype.pyc -${PYSITELIB}/pandas/tests/test_msgpack/test_subtype.pyo -${PYSITELIB}/pandas/tests/test_msgpack/test_unpack.py -${PYSITELIB}/pandas/tests/test_msgpack/test_unpack.pyc -${PYSITELIB}/pandas/tests/test_msgpack/test_unpack.pyo -${PYSITELIB}/pandas/tests/test_msgpack/test_unpack_raw.py -${PYSITELIB}/pandas/tests/test_msgpack/test_unpack_raw.pyc -${PYSITELIB}/pandas/tests/test_msgpack/test_unpack_raw.pyo ${PYSITELIB}/pandas/tests/test_multilevel.py ${PYSITELIB}/pandas/tests/test_multilevel.pyc ${PYSITELIB}/pandas/tests/test_multilevel.pyo @@ -1026,91 +1494,74 @@ ${PYSITELIB}/pandas/tests/test_panel4d.p ${PYSITELIB}/pandas/tests/test_panelnd.py ${PYSITELIB}/pandas/tests/test_panelnd.pyc ${PYSITELIB}/pandas/tests/test_panelnd.pyo -${PYSITELIB}/pandas/tests/test_reshape.py -${PYSITELIB}/pandas/tests/test_reshape.pyc -${PYSITELIB}/pandas/tests/test_reshape.pyo -${PYSITELIB}/pandas/tests/test_rplot.py -${PYSITELIB}/pandas/tests/test_rplot.pyc -${PYSITELIB}/pandas/tests/test_rplot.pyo -${PYSITELIB}/pandas/tests/test_stats.py -${PYSITELIB}/pandas/tests/test_stats.pyc -${PYSITELIB}/pandas/tests/test_stats.pyo +${PYSITELIB}/pandas/tests/test_resample.py +${PYSITELIB}/pandas/tests/test_resample.pyc +${PYSITELIB}/pandas/tests/test_resample.pyo +${PYSITELIB}/pandas/tests/test_sorting.py +${PYSITELIB}/pandas/tests/test_sorting.pyc +${PYSITELIB}/pandas/tests/test_sorting.pyo ${PYSITELIB}/pandas/tests/test_strings.py ${PYSITELIB}/pandas/tests/test_strings.pyc ${PYSITELIB}/pandas/tests/test_strings.pyo ${PYSITELIB}/pandas/tests/test_take.py ${PYSITELIB}/pandas/tests/test_take.pyc ${PYSITELIB}/pandas/tests/test_take.pyo -${PYSITELIB}/pandas/tests/test_testing.py -${PYSITELIB}/pandas/tests/test_testing.pyc -${PYSITELIB}/pandas/tests/test_testing.pyo -${PYSITELIB}/pandas/tests/test_tseries.py -${PYSITELIB}/pandas/tests/test_tseries.pyc -${PYSITELIB}/pandas/tests/test_tseries.pyo -${PYSITELIB}/pandas/tests/test_util.py -${PYSITELIB}/pandas/tests/test_util.pyc -${PYSITELIB}/pandas/tests/test_util.pyo ${PYSITELIB}/pandas/tests/test_window.py ${PYSITELIB}/pandas/tests/test_window.pyc ${PYSITELIB}/pandas/tests/test_window.pyo -${PYSITELIB}/pandas/tests/types/__init__.py -${PYSITELIB}/pandas/tests/types/__init__.pyc -${PYSITELIB}/pandas/tests/types/__init__.pyo -${PYSITELIB}/pandas/tests/types/test_dtypes.py -${PYSITELIB}/pandas/tests/types/test_dtypes.pyc -${PYSITELIB}/pandas/tests/types/test_dtypes.pyo -${PYSITELIB}/pandas/tests/types/test_generic.py -${PYSITELIB}/pandas/tests/types/test_generic.pyc -${PYSITELIB}/pandas/tests/types/test_generic.pyo +${PYSITELIB}/pandas/tests/tools/__init__.py +${PYSITELIB}/pandas/tests/tools/__init__.pyc +${PYSITELIB}/pandas/tests/tools/__init__.pyo +${PYSITELIB}/pandas/tests/tools/test_numeric.py +${PYSITELIB}/pandas/tests/tools/test_numeric.pyc +${PYSITELIB}/pandas/tests/tools/test_numeric.pyo +${PYSITELIB}/pandas/tests/tseries/__init__.py +${PYSITELIB}/pandas/tests/tseries/__init__.pyc +${PYSITELIB}/pandas/tests/tseries/__init__.pyo +${PYSITELIB}/pandas/tests/tseries/data/cday-0.14.1.pickle +${PYSITELIB}/pandas/tests/tseries/data/dateoffset_0_15_2.pickle +${PYSITELIB}/pandas/tests/tseries/test_frequencies.py +${PYSITELIB}/pandas/tests/tseries/test_frequencies.pyc +${PYSITELIB}/pandas/tests/tseries/test_frequencies.pyo +${PYSITELIB}/pandas/tests/tseries/test_holiday.py +${PYSITELIB}/pandas/tests/tseries/test_holiday.pyc +${PYSITELIB}/pandas/tests/tseries/test_holiday.pyo +${PYSITELIB}/pandas/tests/tseries/test_offsets.py +${PYSITELIB}/pandas/tests/tseries/test_offsets.pyc +${PYSITELIB}/pandas/tests/tseries/test_offsets.pyo +${PYSITELIB}/pandas/tests/tseries/test_timezones.py +${PYSITELIB}/pandas/tests/tseries/test_timezones.pyc +${PYSITELIB}/pandas/tests/tseries/test_timezones.pyo +${PYSITELIB}/pandas/tests/util/__init__.py +${PYSITELIB}/pandas/tests/util/__init__.pyc +${PYSITELIB}/pandas/tests/util/__init__.pyo +${PYSITELIB}/pandas/tests/util/test_hashing.py +${PYSITELIB}/pandas/tests/util/test_hashing.pyc +${PYSITELIB}/pandas/tests/util/test_hashing.pyo +${PYSITELIB}/pandas/tests/util/test_testing.py +${PYSITELIB}/pandas/tests/util/test_testing.pyc +${PYSITELIB}/pandas/tests/util/test_testing.pyo +${PYSITELIB}/pandas/tests/util/test_util.py +${PYSITELIB}/pandas/tests/util/test_util.pyc +${PYSITELIB}/pandas/tests/util/test_util.pyo ${PYSITELIB}/pandas/tools/__init__.py ${PYSITELIB}/pandas/tools/__init__.pyc ${PYSITELIB}/pandas/tools/__init__.pyo +${PYSITELIB}/pandas/tools/hashing.py +${PYSITELIB}/pandas/tools/hashing.pyc +${PYSITELIB}/pandas/tools/hashing.pyo ${PYSITELIB}/pandas/tools/merge.py ${PYSITELIB}/pandas/tools/merge.pyc ${PYSITELIB}/pandas/tools/merge.pyo -${PYSITELIB}/pandas/tools/pivot.py -${PYSITELIB}/pandas/tools/pivot.pyc -${PYSITELIB}/pandas/tools/pivot.pyo ${PYSITELIB}/pandas/tools/plotting.py ${PYSITELIB}/pandas/tools/plotting.pyc ${PYSITELIB}/pandas/tools/plotting.pyo -${PYSITELIB}/pandas/tools/rplot.py -${PYSITELIB}/pandas/tools/rplot.pyc -${PYSITELIB}/pandas/tools/rplot.pyo -${PYSITELIB}/pandas/tools/tests/__init__.py -${PYSITELIB}/pandas/tools/tests/__init__.pyc -${PYSITELIB}/pandas/tools/tests/__init__.pyo -${PYSITELIB}/pandas/tools/tests/cut_data.csv -${PYSITELIB}/pandas/tools/tests/test_merge.py -${PYSITELIB}/pandas/tools/tests/test_merge.pyc -${PYSITELIB}/pandas/tools/tests/test_merge.pyo -${PYSITELIB}/pandas/tools/tests/test_pivot.py -${PYSITELIB}/pandas/tools/tests/test_pivot.pyc -${PYSITELIB}/pandas/tools/tests/test_pivot.pyo -${PYSITELIB}/pandas/tools/tests/test_tile.py -${PYSITELIB}/pandas/tools/tests/test_tile.pyc -${PYSITELIB}/pandas/tools/tests/test_tile.pyo -${PYSITELIB}/pandas/tools/tests/test_util.py -${PYSITELIB}/pandas/tools/tests/test_util.pyc -${PYSITELIB}/pandas/tools/tests/test_util.pyo -${PYSITELIB}/pandas/tools/tile.py -${PYSITELIB}/pandas/tools/tile.pyc -${PYSITELIB}/pandas/tools/tile.pyo -${PYSITELIB}/pandas/tools/util.py -${PYSITELIB}/pandas/tools/util.pyc -${PYSITELIB}/pandas/tools/util.pyo ${PYSITELIB}/pandas/tseries/__init__.py ${PYSITELIB}/pandas/tseries/__init__.pyc ${PYSITELIB}/pandas/tseries/__init__.pyo ${PYSITELIB}/pandas/tseries/api.py ${PYSITELIB}/pandas/tseries/api.pyc ${PYSITELIB}/pandas/tseries/api.pyo -${PYSITELIB}/pandas/tseries/base.py -${PYSITELIB}/pandas/tseries/base.pyc -${PYSITELIB}/pandas/tseries/base.pyo -${PYSITELIB}/pandas/tseries/common.py -${PYSITELIB}/pandas/tseries/common.pyc -${PYSITELIB}/pandas/tseries/common.pyo ${PYSITELIB}/pandas/tseries/converter.py ${PYSITELIB}/pandas/tseries/converter.pyc ${PYSITELIB}/pandas/tseries/converter.pyo @@ -1120,131 +1571,55 @@ ${PYSITELIB}/pandas/tseries/frequencies. ${PYSITELIB}/pandas/tseries/holiday.py ${PYSITELIB}/pandas/tseries/holiday.pyc ${PYSITELIB}/pandas/tseries/holiday.pyo -${PYSITELIB}/pandas/tseries/index.py -${PYSITELIB}/pandas/tseries/index.pyc -${PYSITELIB}/pandas/tseries/index.pyo -${PYSITELIB}/pandas/tseries/interval.py -${PYSITELIB}/pandas/tseries/interval.pyc -${PYSITELIB}/pandas/tseries/interval.pyo ${PYSITELIB}/pandas/tseries/offsets.py ${PYSITELIB}/pandas/tseries/offsets.pyc ${PYSITELIB}/pandas/tseries/offsets.pyo -${PYSITELIB}/pandas/tseries/period.py -${PYSITELIB}/pandas/tseries/period.pyc -${PYSITELIB}/pandas/tseries/period.pyo ${PYSITELIB}/pandas/tseries/plotting.py ${PYSITELIB}/pandas/tseries/plotting.pyc ${PYSITELIB}/pandas/tseries/plotting.pyo -${PYSITELIB}/pandas/tseries/resample.py -${PYSITELIB}/pandas/tseries/resample.pyc -${PYSITELIB}/pandas/tseries/resample.pyo -${PYSITELIB}/pandas/tseries/tdi.py -${PYSITELIB}/pandas/tseries/tdi.pyc -${PYSITELIB}/pandas/tseries/tdi.pyo -${PYSITELIB}/pandas/tseries/tests/__init__.py -${PYSITELIB}/pandas/tseries/tests/__init__.pyc -${PYSITELIB}/pandas/tseries/tests/__init__.pyo -${PYSITELIB}/pandas/tseries/tests/data/cday-0.14.1.pickle -${PYSITELIB}/pandas/tseries/tests/data/dateoffset_0_15_2.pickle -${PYSITELIB}/pandas/tseries/tests/data/daterange_073.pickle -${PYSITELIB}/pandas/tseries/tests/data/frame.pickle -${PYSITELIB}/pandas/tseries/tests/data/series.pickle -${PYSITELIB}/pandas/tseries/tests/data/series_daterange0.pickle -${PYSITELIB}/pandas/tseries/tests/test_base.py -${PYSITELIB}/pandas/tseries/tests/test_base.pyc -${PYSITELIB}/pandas/tseries/tests/test_base.pyo -${PYSITELIB}/pandas/tseries/tests/test_converter.py -${PYSITELIB}/pandas/tseries/tests/test_converter.pyc -${PYSITELIB}/pandas/tseries/tests/test_converter.pyo -${PYSITELIB}/pandas/tseries/tests/test_daterange.py -${PYSITELIB}/pandas/tseries/tests/test_daterange.pyc -${PYSITELIB}/pandas/tseries/tests/test_daterange.pyo -${PYSITELIB}/pandas/tseries/tests/test_frequencies.py -${PYSITELIB}/pandas/tseries/tests/test_frequencies.pyc -${PYSITELIB}/pandas/tseries/tests/test_frequencies.pyo -${PYSITELIB}/pandas/tseries/tests/test_holiday.py -${PYSITELIB}/pandas/tseries/tests/test_holiday.pyc -${PYSITELIB}/pandas/tseries/tests/test_holiday.pyo -${PYSITELIB}/pandas/tseries/tests/test_offsets.py -${PYSITELIB}/pandas/tseries/tests/test_offsets.pyc -${PYSITELIB}/pandas/tseries/tests/test_offsets.pyo -${PYSITELIB}/pandas/tseries/tests/test_period.py -${PYSITELIB}/pandas/tseries/tests/test_period.pyc -${PYSITELIB}/pandas/tseries/tests/test_period.pyo -${PYSITELIB}/pandas/tseries/tests/test_plotting.py -${PYSITELIB}/pandas/tseries/tests/test_plotting.pyc -${PYSITELIB}/pandas/tseries/tests/test_plotting.pyo -${PYSITELIB}/pandas/tseries/tests/test_resample.py -${PYSITELIB}/pandas/tseries/tests/test_resample.pyc -${PYSITELIB}/pandas/tseries/tests/test_resample.pyo -${PYSITELIB}/pandas/tseries/tests/test_timedeltas.py -${PYSITELIB}/pandas/tseries/tests/test_timedeltas.pyc -${PYSITELIB}/pandas/tseries/tests/test_timedeltas.pyo -${PYSITELIB}/pandas/tseries/tests/test_timeseries.py -${PYSITELIB}/pandas/tseries/tests/test_timeseries.pyc -${PYSITELIB}/pandas/tseries/tests/test_timeseries.pyo -${PYSITELIB}/pandas/tseries/tests/test_timeseries_legacy.py -${PYSITELIB}/pandas/tseries/tests/test_timeseries_legacy.pyc -${PYSITELIB}/pandas/tseries/tests/test_timeseries_legacy.pyo -${PYSITELIB}/pandas/tseries/tests/test_timezones.py -${PYSITELIB}/pandas/tseries/tests/test_timezones.pyc -${PYSITELIB}/pandas/tseries/tests/test_timezones.pyo -${PYSITELIB}/pandas/tseries/tests/test_tslib.py -${PYSITELIB}/pandas/tseries/tests/test_tslib.pyc -${PYSITELIB}/pandas/tseries/tests/test_tslib.pyo -${PYSITELIB}/pandas/tseries/tests/test_util.py -${PYSITELIB}/pandas/tseries/tests/test_util.pyc -${PYSITELIB}/pandas/tseries/tests/test_util.pyo -${PYSITELIB}/pandas/tseries/timedeltas.py -${PYSITELIB}/pandas/tseries/timedeltas.pyc -${PYSITELIB}/pandas/tseries/timedeltas.pyo -${PYSITELIB}/pandas/tseries/tools.py -${PYSITELIB}/pandas/tseries/tools.pyc -${PYSITELIB}/pandas/tseries/tools.pyo ${PYSITELIB}/pandas/tseries/util.py ${PYSITELIB}/pandas/tseries/util.pyc ${PYSITELIB}/pandas/tseries/util.pyo -${PYSITELIB}/pandas/tslib.so +${PYSITELIB}/pandas/tslib.py +${PYSITELIB}/pandas/tslib.pyc +${PYSITELIB}/pandas/tslib.pyo ${PYSITELIB}/pandas/types/__init__.py ${PYSITELIB}/pandas/types/__init__.pyc ${PYSITELIB}/pandas/types/__init__.pyo -${PYSITELIB}/pandas/types/api.py -${PYSITELIB}/pandas/types/api.pyc -${PYSITELIB}/pandas/types/api.pyo +${PYSITELIB}/pandas/types/common.py +${PYSITELIB}/pandas/types/common.pyc +${PYSITELIB}/pandas/types/common.pyo ${PYSITELIB}/pandas/types/concat.py ${PYSITELIB}/pandas/types/concat.pyc ${PYSITELIB}/pandas/types/concat.pyo -${PYSITELIB}/pandas/types/dtypes.py -${PYSITELIB}/pandas/types/dtypes.pyc -${PYSITELIB}/pandas/types/dtypes.pyo -${PYSITELIB}/pandas/types/generic.py -${PYSITELIB}/pandas/types/generic.pyc -${PYSITELIB}/pandas/types/generic.pyo ${PYSITELIB}/pandas/util/__init__.py ${PYSITELIB}/pandas/util/__init__.pyc ${PYSITELIB}/pandas/util/__init__.pyo +${PYSITELIB}/pandas/util/_decorators.py +${PYSITELIB}/pandas/util/_decorators.pyc +${PYSITELIB}/pandas/util/_decorators.pyo +${PYSITELIB}/pandas/util/_depr_module.py +${PYSITELIB}/pandas/util/_depr_module.pyc +${PYSITELIB}/pandas/util/_depr_module.pyo +${PYSITELIB}/pandas/util/_doctools.py +${PYSITELIB}/pandas/util/_doctools.pyc +${PYSITELIB}/pandas/util/_doctools.pyo ${PYSITELIB}/pandas/util/_move.so -${PYSITELIB}/pandas/util/clipboard.py -${PYSITELIB}/pandas/util/clipboard.pyc -${PYSITELIB}/pandas/util/clipboard.pyo +${PYSITELIB}/pandas/util/_print_versions.py +${PYSITELIB}/pandas/util/_print_versions.pyc +${PYSITELIB}/pandas/util/_print_versions.pyo +${PYSITELIB}/pandas/util/_tester.py +${PYSITELIB}/pandas/util/_tester.pyc +${PYSITELIB}/pandas/util/_tester.pyo +${PYSITELIB}/pandas/util/_validators.py +${PYSITELIB}/pandas/util/_validators.pyc +${PYSITELIB}/pandas/util/_validators.pyo ${PYSITELIB}/pandas/util/decorators.py ${PYSITELIB}/pandas/util/decorators.pyc ${PYSITELIB}/pandas/util/decorators.pyo -${PYSITELIB}/pandas/util/doctools.py -${PYSITELIB}/pandas/util/doctools.pyc -${PYSITELIB}/pandas/util/doctools.pyo -${PYSITELIB}/pandas/util/nosetester.py -${PYSITELIB}/pandas/util/nosetester.pyc -${PYSITELIB}/pandas/util/nosetester.pyo -${PYSITELIB}/pandas/util/print_versions.py -${PYSITELIB}/pandas/util/print_versions.pyc -${PYSITELIB}/pandas/util/print_versions.pyo -${PYSITELIB}/pandas/util/terminal.py -${PYSITELIB}/pandas/util/terminal.pyc -${PYSITELIB}/pandas/util/terminal.pyo +${PYSITELIB}/pandas/util/hashing.py +${PYSITELIB}/pandas/util/hashing.pyc +${PYSITELIB}/pandas/util/hashing.pyo ${PYSITELIB}/pandas/util/testing.py ${PYSITELIB}/pandas/util/testing.pyc ${PYSITELIB}/pandas/util/testing.pyo -${PYSITELIB}/pandas/util/validators.py -${PYSITELIB}/pandas/util/validators.pyc -${PYSITELIB}/pandas/util/validators.pyo Index: pkgsrc/math/py-pandas/distinfo diff -u pkgsrc/math/py-pandas/distinfo:1.10 pkgsrc/math/py-pandas/distinfo:1.11 --- pkgsrc/math/py-pandas/distinfo:1.10 Tue Aug 16 03:22:12 2016 +++ pkgsrc/math/py-pandas/distinfo Sun May 21 08:54:33 2017 @@ -1,6 +1,6 @@ -$NetBSD: distinfo,v 1.10 2016/08/16 03:22:12 maya Exp $ +$NetBSD: distinfo,v 1.11 2017/05/21 08:54:33 adam Exp $ -SHA1 (pandas-0.18.1.tar.gz) = c723655d87c34058200b15db65db9c08ec08367c -RMD160 (pandas-0.18.1.tar.gz) = 0ec98ad31ded0398c503e7e4ddfa2d4f4fcaa124 -SHA512 (pandas-0.18.1.tar.gz) = 73efeb5da475959f1cd36d97986ad7dc0f3ec762943ba3c41e7f634822aa4693ab0e0a264b8c1d4d701d4747c7f367c213ef7fe362b16a1f0d62292ee518ceb3 -Size (pandas-0.18.1.tar.gz) = 7283184 bytes +SHA1 (pandas-0.20.1.tar.gz) = 9eb65e02ec41401084a00377b07792fcfd7eb83e +RMD160 (pandas-0.20.1.tar.gz) = b3b9543c6cdfdcd31e9f03a235a49eab0ea1f946 +SHA512 (pandas-0.20.1.tar.gz) = d477a815914c825efd6430f7eb19f3f9115c1c4ab03000ca6d4f64023f7b5f53eff512792fea2d8b33c7febb3667fc3a3de55f11eeb453f285cae40e6b473707 +Size (pandas-0.20.1.tar.gz) = 10307434 bytes --_----------=_1495356873121780--