Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

TST: deprecation warnings #21137

Closed
jreback opened this issue May 19, 2018 · 8 comments
Closed

TST: deprecation warnings #21137

jreback opened this issue May 19, 2018 · 8 comments
Labels
Testing pandas testing functions or related to the test suite
Milestone

Comments

@jreback
Copy link
Contributor

jreback commented May 19, 2018

https://travis-ci.org/pandas-dev/pandas/jobs/381128602

some deprecated usages in tests (can be fixed with multiple PRs)

pandas/tests/test_panel.py::TestPanel::()::test_median
  /home/travis/miniconda3/envs/pandas/lib/python3.6/site-packages/numpy/lib/function_base.py:4033: RuntimeWarning: All-NaN slice encountered
    r = func(a, **kwargs)
pandas/tests/test_resample.py::TestResamplerGrouper::()::test_tab_complete_ipython6_warning
  /home/travis/miniconda3/envs/pandas/lib/python3.6/site-packages/IPython/core/interactiveshell.py:763: UserWarning: Attempting to work in a virtualenv. If you encounter problems, please install IPython inside the virtualenv.
    warn("Attempting to work in a virtualenv. If you encounter problems, please "
pandas/tests/test_window.py::TestMoments::()::test_cmov_window_special[slepian]
  /home/travis/miniconda3/envs/pandas/lib/python3.6/site-packages/scipy/signal/windows/windows.py:1541: DeprecationWarning: slepian is deprecated and will be removed in a future version, use dpss instead
    'version, use dpss instead', DeprecationWarning)
pandas/tests/test_window.py::TestMoments::()::test_cmov_window_special_linear_range[slepian]
  /home/travis/miniconda3/envs/pandas/lib/python3.6/site-packages/scipy/signal/windows/windows.py:1541: DeprecationWarning: slepian is deprecated and will be removed in a future version, use dpss instead
    'version, use dpss instead', DeprecationWarning)
pandas/tests/categorical/test_warnings.py::TestCategoricalWarnings::()::test_tab_complete_warning
  /home/travis/miniconda3/envs/pandas/lib/python3.6/site-packages/IPython/core/interactiveshell.py:763: UserWarning: Attempting to work in a virtualenv. If you encounter problems, please install IPython inside the virtualenv.
    warn("Attempting to work in a virtualenv. If you encounter problems, please "
pandas/tests/frame/test_indexing.py::TestDataFrameIndexing::()::test_getitem_setitem_ix_negative_integers
  /home/travis/build/pandas-dev/pandas/pandas/tests/frame/test_indexing.py:401: DeprecationWarning: 
  .ix is deprecated. Please use
  .loc for label based indexing or
  .iloc for positional indexing
  
  See the documentation here:
  http://pandas.pydata.org/pandas-docs/stable/indexing.html#ix-indexer-is-deprecated
    df.ix[[-1]]
  /home/travis/build/pandas-dev/pandas/pandas/tests/frame/test_indexing.py:404: DeprecationWarning: 
  .ix is deprecated. Please use
  .loc for label based indexing or
  .iloc for positional indexing
  
  See the documentation here:
  http://pandas.pydata.org/pandas-docs/stable/indexing.html#ix-indexer-is-deprecated
    df.ix[:, [-1]]
  /home/travis/build/pandas-dev/pandas/pandas/core/indexing.py:890: DeprecationWarning: 
  .ix is deprecated. Please use
  .loc for label based indexing or
  .iloc for positional indexing
  
  See the documentation here:
  http://pandas.pydata.org/pandas-docs/stable/indexing.html#ix-indexer-is-deprecated
    retval = getattr(retval, self.name)._getitem_axis(key, axis=i)
pandas/tests/frame/test_analytics.py::TestDataFrameAnalytics::()::test_median
  /home/travis/miniconda3/envs/pandas/lib/python3.6/site-packages/numpy/lib/function_base.py:4033: RuntimeWarning: All-NaN slice encountered
    r = func(a, **kwargs)
pandas/tests/frame/test_analytics.py::TestDataFrameAnalytics::()::test_median_corner
  /home/travis/miniconda3/envs/pandas/lib/python3.6/site-packages/numpy/lib/function_base.py:4033: RuntimeWarning: All-NaN slice encountered
    r = func(a, **kwargs)
pandas/tests/frame/test_missing.py::TestDataFrameMissingData::()::test_fillna_categorical_nan
  /home/travis/miniconda3/envs/pandas/lib/python3.6/site-packages/numpy/lib/function_base.py:4033: RuntimeWarning: All-NaN slice encountered
    r = func(a, **kwargs)
pandas/tests/frame/test_api.py::TestDataFrameMisc::()::test_tab_complete_warning
  /home/travis/miniconda3/envs/pandas/lib/python3.6/site-packages/IPython/core/interactiveshell.py:763: UserWarning: Attempting to work in a virtualenv. If you encounter problems, please install IPython inside the virtualenv.
    warn("Attempting to work in a virtualenv. If you encounter problems, please "
pandas/tests/groupby/test_filters.py::test_filter_and_transform_with_non_unique_float_index
  /home/travis/build/pandas-dev/pandas/pandas/core/indexes/base.py:3063: FutureWarning: elementwise comparison failed; returning scalar instead, but in the future will perform elementwise comparison
    return self._engine.get_loc(key)
pandas/tests/groupby/test_groupby.py::test_cython_grouper_series_bug_noncontig
  /home/travis/miniconda3/envs/pandas/lib/python3.6/site-packages/numpy/lib/nanfunctions.py:1018: RuntimeWarning: Mean of empty slice
    return np.nanmean(a, axis, out=out, keepdims=keepdims)
pandas/tests/groupby/aggregate/test_cython.py::test_cythonized_aggers[median]
  /home/travis/miniconda3/envs/pandas/lib/python3.6/site-packages/numpy/lib/nanfunctions.py:1018: RuntimeWarning: Mean of empty slice
    return np.nanmean(a, axis, out=out, keepdims=keepdims)
pandas/tests/indexes/datetimes/test_tools.py::TestGuessDatetimeFormat::()::test_guess_datetime_format_for_array
  /home/travis/miniconda3/envs/pandas/lib/python3.6/site-packages/dateutil/parser/__init__.py:46: DeprecationWarning: _timelex is a private class and may break without warning, it will be moved and or renamed in future versions.
    warnings.warn(msg, DeprecationWarning)
  /home/travis/miniconda3/envs/pandas/lib/python3.6/site-packages/dateutil/parser/__init__.py:46: DeprecationWarning: _timelex is a private class and may break without warning, it will be moved and or renamed in future versions.
    warnings.warn(msg, DeprecationWarning)
  /home/travis/miniconda3/envs/pandas/lib/python3.6/site-packages/dateutil/parser/__init__.py:46: DeprecationWarning: _timelex is a private class and may break without warning, it will be moved and or renamed in future versions.
    warnings.warn(msg, DeprecationWarning)
pandas/tests/indexes/datetimes/test_tools.py::TestToDatetimeInferFormat::()::test_to_datetime_infer_datetime_format_consistent_format[True]
  /home/travis/miniconda3/envs/pandas/lib/python3.6/site-packages/dateutil/parser/__init__.py:46: DeprecationWarning: _timelex is a private class and may break without warning, it will be moved and or renamed in future versions.
    warnings.warn(msg, DeprecationWarning)
  /home/travis/miniconda3/envs/pandas/lib/python3.6/site-packages/dateutil/parser/__init__.py:46: DeprecationWarning: _timelex is a private class and may break without warning, it will be moved and or renamed in future versions.
    warnings.warn(msg, DeprecationWarning)
  /home/travis/miniconda3/envs/pandas/lib/python3.6/site-packages/dateutil/parser/__init__.py:46: DeprecationWarning: _timelex is a private class and may break without warning, it will be moved and or renamed in future versions.
    warnings.warn(msg, DeprecationWarning)
pandas/tests/indexes/datetimes/test_tools.py::TestToDatetimeInferFormat::()::test_to_datetime_infer_datetime_format_consistent_format[False]
  /home/travis/miniconda3/envs/pandas/lib/python3.6/site-packages/dateutil/parser/__init__.py:46: DeprecationWarning: _timelex is a private class and may break without warning, it will be moved and or renamed in future versions.
    warnings.warn(msg, DeprecationWarning)
  /home/travis/miniconda3/envs/pandas/lib/python3.6/site-packages/dateutil/parser/__init__.py:46: DeprecationWarning: _timelex is a private class and may break without warning, it will be moved and or renamed in future versions.
    warnings.warn(msg, DeprecationWarning)
  /home/travis/miniconda3/envs/pandas/lib/python3.6/site-packages/dateutil/parser/__init__.py:46: DeprecationWarning: _timelex is a private class and may break without warning, it will be moved and or renamed in future versions.
    warnings.warn(msg, DeprecationWarning)
pandas/tests/indexes/datetimes/test_tools.py::TestToDatetimeInferFormat::()::test_to_datetime_infer_datetime_format_inconsistent_format[True]
  /home/travis/miniconda3/envs/pandas/lib/python3.6/site-packages/dateutil/parser/__init__.py:46: DeprecationWarning: _timelex is a private class and may break without warning, it will be moved and or renamed in future versions.
    warnings.warn(msg, DeprecationWarning)
  /home/travis/miniconda3/envs/pandas/lib/python3.6/site-packages/dateutil/parser/__init__.py:46: DeprecationWarning: _timelex is a private class and may break without warning, it will be moved and or renamed in future versions.
    warnings.warn(msg, DeprecationWarning)
pandas/tests/indexes/datetimes/test_tools.py::TestToDatetimeInferFormat::()::test_to_datetime_infer_datetime_format_inconsistent_format[False]
  /home/travis/miniconda3/envs/pandas/lib/python3.6/site-packages/dateutil/parser/__init__.py:46: DeprecationWarning: _timelex is a private class and may break without warning, it will be moved and or renamed in future versions.
    warnings.warn(msg, DeprecationWarning)
  /home/travis/miniconda3/envs/pandas/lib/python3.6/site-packages/dateutil/parser/__init__.py:46: DeprecationWarning: _timelex is a private class and may break without warning, it will be moved and or renamed in future versions.
    warnings.warn(msg, DeprecationWarning)
pandas/tests/indexes/datetimes/test_tools.py::TestToDatetimeInferFormat::()::test_to_datetime_infer_datetime_format_series_with_nans[True]
  /home/travis/miniconda3/envs/pandas/lib/python3.6/site-packages/dateutil/parser/__init__.py:46: DeprecationWarning: _timelex is a private class and may break without warning, it will be moved and or renamed in future versions.
    warnings.warn(msg, DeprecationWarning)
pandas/tests/indexes/datetimes/test_tools.py::TestToDatetimeInferFormat::()::test_to_datetime_infer_datetime_format_series_with_nans[False]
  /home/travis/miniconda3/envs/pandas/lib/python3.6/site-packages/dateutil/parser/__init__.py:46: DeprecationWarning: _timelex is a private class and may break without warning, it will be moved and or renamed in future versions.
    warnings.warn(msg, DeprecationWarning)
pandas/tests/indexing/test_indexing.py::TestFancy::()::test_dups_fancy_indexing
  /home/travis/build/pandas-dev/pandas/pandas/tests/indexing/test_indexing.py:200: DeprecationWarning: 
  .ix is deprecated. Please use
  .loc for label based indexing or
  .iloc for positional indexing
  
  See the documentation here:
  http://pandas.pydata.org/pandas-docs/stable/indexing.html#ix-indexer-is-deprecated
    dfnu.ix[['E']]
pandas/tests/io/formats/test_printing.py::TestTableSchemaRepr::()::test_publishes
  /home/travis/miniconda3/envs/pandas/lib/python3.6/site-packages/IPython/core/interactiveshell.py:763: UserWarning: Attempting to work in a virtualenv. If you encounter problems, please install IPython inside the virtualenv.
    warn("Attempting to work in a virtualenv. If you encounter problems, please "
pandas/tests/series/test_api.py::TestSeriesMisc::()::test_tab_complete_warning
  /home/travis/miniconda3/envs/pandas/lib/python3.6/site-packages/IPython/core/interactiveshell.py:763: UserWarning: Attempting to work in a virtualenv. If you encounter problems, please install IPython inside the virtualenv.
    warn("Attempting to work in a virtualenv. If you encounter problems, please "
pandas/tests/plotting/test_misc.py::TestDataFramePlots::()::test_parallel_coordinates_with_sorted_labels
  /home/travis/miniconda3/envs/pandas/lib/python3.6/site-packages/matplotlib/axes/_base.py:3124: UserWarning: Attempting to set identical left==right results
  in singular transformations; automatically expanding.
  left=0, right=0
    'left=%s, right=%s') % (left, right))
pandas/tests/tslibs/test_parsing.py::TestGuessDatetimeFormat::()::test_guess_datetime_format_with_parseable_formats[20111230-%Y%m%d]
  /home/travis/miniconda3/envs/pandas/lib/python3.6/site-packages/dateutil/parser/__init__.py:46: DeprecationWarning: _timelex is a private class and may break without warning, it will be moved and or renamed in future versions.
    warnings.warn(msg, DeprecationWarning)
pandas/tests/tslibs/test_parsing.py::TestGuessDatetimeFormat::()::test_guess_datetime_format_with_parseable_formats[2011-12-30-%Y-%m-%d]
  /home/travis/miniconda3/envs/pandas/lib/python3.6/site-packages/dateutil/parser/__init__.py:46: DeprecationWarning: _timelex is a private class and may break without warning, it will be moved and or renamed in future versions.
    warnings.warn(msg, DeprecationWarning)
pandas/tests/tslibs/test_parsing.py::TestGuessDatetimeFormat::()::test_guess_datetime_format_with_parseable_formats[30-12-2011-%d-%m-%Y]
  /home/travis/miniconda3/envs/pandas/lib/python3.6/site-packages/dateutil/parser/__init__.py:46: DeprecationWarning: _timelex is a private class and may break without warning, it will be moved and or renamed in future versions.
    warnings.warn(msg, DeprecationWarning)
pandas/tests/tslibs/test_parsing.py::TestGuessDatetimeFormat::()::test_guess_datetime_format_with_parseable_formats[2011-12-30 00:00:00-%Y-%m-%d %H:%M:%S]
  /home/travis/miniconda3/envs/pandas/lib/python3.6/site-packages/dateutil/parser/__init__.py:46: DeprecationWarning: _timelex is a private class and may break without warning, it will be moved and or renamed in future versions.
    warnings.warn(msg, DeprecationWarning)
pandas/tests/tslibs/test_parsing.py::TestGuessDatetimeFormat::()::test_guess_datetime_format_with_parseable_formats[2011-12-30T00:00:00-%Y-%m-%dT%H:%M:%S]
  /home/travis/miniconda3/envs/pandas/lib/python3.6/site-packages/dateutil/parser/__init__.py:46: DeprecationWarning: _timelex is a private class and may break without warning, it will be moved and or renamed in future versions.
    warnings.warn(msg, DeprecationWarning)
pandas/tests/tslibs/test_parsing.py::TestGuessDatetimeFormat::()::test_guess_datetime_format_with_parseable_formats[2011-12-30 00:00:00.000000-%Y-%m-%d %H:%M:%S.%f]
  /home/travis/miniconda3/envs/pandas/lib/python3.6/site-packages/dateutil/parser/__init__.py:46: DeprecationWarning: _timelex is a private class and may break without warning, it will be moved and or renamed in future versions.
    warnings.warn(msg, DeprecationWarning)
pandas/tests/tslibs/test_parsing.py::TestGuessDatetimeFormat::()::test_guess_datetime_format_with_dayfirst[True-%d/%m/%Y]
  /home/travis/miniconda3/envs/pandas/lib/python3.6/site-packages/dateutil/parser/__init__.py:46: DeprecationWarning: _timelex is a private class and may break without warning, it will be moved and or renamed in future versions.
    warnings.warn(msg, DeprecationWarning)
pandas/tests/tslibs/test_parsing.py::TestGuessDatetimeFormat::()::test_guess_datetime_format_with_dayfirst[False-%m/%d/%Y]
  /home/travis/miniconda3/envs/pandas/lib/python3.6/site-packages/dateutil/parser/__init__.py:46: DeprecationWarning: _timelex is a private class and may break without warning, it will be moved and or renamed in future versions.
    warnings.warn(msg, DeprecationWarning)
pandas/tests/tslibs/test_parsing.py::TestGuessDatetimeFormat::()::test_guess_datetime_format_invalid_inputs
  /home/travis/miniconda3/envs/pandas/lib/python3.6/site-packages/dateutil/parser/__init__.py:46: DeprecationWarning: _timelex is a private class and may break without warning, it will be moved and or renamed in future versions.
    warnings.warn(msg, DeprecationWarning)
  /home/travis/miniconda3/envs/pandas/lib/python3.6/site-packages/dateutil/parser/__init__.py:46: DeprecationWarning: _timelex is a private class and may break without warning, it will be moved and or renamed in future versions.
    warnings.warn(msg, DeprecationWarning)
  /home/travis/miniconda3/envs/pandas/lib/python3.6/site-packages/dateutil/parser/__init__.py:46: DeprecationWarning: _timelex is a private class and may break without warning, it will be moved and or renamed in future versions.
    warnings.warn(msg, DeprecationWarning)
pandas/tests/tslibs/test_parsing.py::TestGuessDatetimeFormat::()::test_guess_datetime_format_nopadding[2011-1-1-%Y-%m-%d]
  /home/travis/miniconda3/envs/pandas/lib/python3.6/site-packages/dateutil/parser/__init__.py:46: DeprecationWarning: _timelex is a private class and may break without warning, it will be moved and or renamed in future versions.
    warnings.warn(msg, DeprecationWarning)
pandas/tests/tslibs/test_parsing.py::TestGuessDatetimeFormat::()::test_guess_datetime_format_nopadding[30-1-2011-%d-%m-%Y]
  /home/travis/miniconda3/envs/pandas/lib/python3.6/site-packages/dateutil/parser/__init__.py:46: DeprecationWarning: _timelex is a private class and may break without warning, it will be moved and or renamed in future versions.
    warnings.warn(msg, DeprecationWarning)
pandas/tests/tslibs/test_parsing.py::TestGuessDatetimeFormat::()::test_guess_datetime_format_nopadding[1/1/2011-%m/%d/%Y]
  /home/travis/miniconda3/envs/pandas/lib/python3.6/site-packages/dateutil/parser/__init__.py:46: DeprecationWarning: _timelex is a private class and may break without warning, it will be moved and or renamed in future versions.
    warnings.warn(msg, DeprecationWarning)
pandas/tests/tslibs/test_parsing.py::TestGuessDatetimeFormat::()::test_guess_datetime_format_nopadding[2011-1-1 00:00:00-%Y-%m-%d %H:%M:%S]
  /home/travis/miniconda3/envs/pandas/lib/python3.6/site-packages/dateutil/parser/__init__.py:46: DeprecationWarning: _timelex is a private class and may break without warning, it will be moved and or renamed in future versions.
    warnings.warn(msg, DeprecationWarning)
pandas/tests/tslibs/test_parsing.py::TestGuessDatetimeFormat::()::test_guess_datetime_format_nopadding[2011-1-1 0:0:0-%Y-%m-%d %H:%M:%S]
  /home/travis/miniconda3/envs/pandas/lib/python3.6/site-packages/dateutil/parser/__init__.py:46: DeprecationWarning: _timelex is a private class and may break without warning, it will be moved and or renamed in future versions.
    warnings.warn(msg, DeprecationWarning)
pandas/tests/tslibs/test_parsing.py::TestGuessDatetimeFormat::()::test_guess_datetime_format_nopadding[2011-1-3T00:00:0-%Y-%m-%dT%H:%M:%S]
  /home/travis/miniconda3/envs/pandas/lib/python3.6/site-packages/dateutil/parser/__init__.py:46: DeprecationWarning: _timelex is a private class and may break without warning, it will be moved and or renamed in future versions.
    warnings.warn(msg, DeprecationWarning)
pandas/tests/scalar/timestamp/test_timezones.py::TestTimestampTZOperations::()::test_tz_localize_pushes_out_of_bounds
  /home/travis/build/pandas-dev/pandas/pandas/tests/scalar/timestamp/test_timezones.py:32: RuntimeWarning: overflow encountered in long_scalars
    Timestamp.min.tz_localize('Asia/Tokyo')
  /home/travis/build/pandas-dev/pandas/pandas/tests/scalar/timestamp/test_timezones.py:39: RuntimeWarning: overflow encountered in long_scalars
    Timestamp.max.tz_localize('US/Pacific')
-- Docs: http://doc.pytest.org/en/latest/warnings.html
 24703 passed, 1037 skipped, 79 xfailed, 31 xpassed, 53 warnings in 824.37 seconds 
/home/travis/build/pandas-dev/pandas/pandas/core/strings.py:257: DeprecationWarning: invalid escape sequence \$
  """
/home/travis/build/pandas-dev/pandas/pandas/core/strings.py:382: DeprecationWarning: invalid escape sequence \d
  """
@jreback jreback added the Testing pandas testing functions or related to the test suite label May 19, 2018
@jreback jreback added this to the 0.23.1 milestone May 19, 2018
@gfyoung
Copy link
Member

gfyoung commented May 21, 2018

So if I'm reading this right, there are four warning types going on here:

  1. .ix deprecations (easy patch, wrap or rewrite)

  2. Escape sequence deprecations (easy patch, escape the \, as in DOC, BUG: Fix Python 3.6 invalid escape sequence. numpy/numpy#9552)

  3. slepian deprecation (easy patch, replace with dpss)

  4. _timelex deprecation (internal Cython code, needs discussion)

try:
# Since these are private methods from dateutil, it is safely imported
# here so in case this interface changes, pandas will just fallback
# to not using the functionality
from dateutil.parser import _timelex
if hasattr(_timelex, 'split'):
def _lexer_split_from_str(dt_str):
# The StringIO(str(_)) is for dateutil 2.2 compatibility
return _timelex.split(StringIO(str(dt_str)))
_DATEUTIL_LEXER_SPLIT = _lexer_split_from_str
except (ImportError, AttributeError):
pass

@jreback : Given that we are supporting dateutil >= 2.5.0, any reason why we can't just remove this?

@gfyoung gfyoung self-assigned this May 21, 2018
gfyoung added a commit to forking-repos/pandas that referenced this issue May 21, 2018
@jreback
Copy link
Contributor Author

jreback commented May 21, 2018

the _timelex is only in newer versions of dateutil, a bit more tricky.

jreback pushed a commit that referenced this issue May 21, 2018
@gfyoung
Copy link
Member

gfyoung commented May 21, 2018

the _timelex is only in newer versions of dateutil, a bit more tricky.

Tricky in what way? From the warning, it looks like it's going to be removed.

@jreback
Copy link
Contributor Author

jreback commented May 21, 2018

tricky in that we have to replicate this functionaility

@gfyoung
Copy link
Member

gfyoung commented May 21, 2018

Ah, right, that's fair. In that case, I suppose we should table that as a non-blocker for this issue?

gfyoung added a commit to forking-repos/pandas that referenced this issue May 21, 2018
gfyoung added a commit to forking-repos/pandas that referenced this issue May 21, 2018
jreback pushed a commit that referenced this issue May 21, 2018
gfyoung added a commit to forking-repos/pandas that referenced this issue May 22, 2018
@gfyoung
Copy link
Member

gfyoung commented May 22, 2018

@jreback : Given that _timelex is much trickier to patch, can we defer that for later and close this issue after merging #21173?

@gfyoung gfyoung assigned gfyoung and unassigned gfyoung May 22, 2018
gfyoung added a commit to forking-repos/pandas that referenced this issue May 22, 2018
jreback pushed a commit that referenced this issue May 23, 2018
@gfyoung gfyoung removed their assignment May 23, 2018
@jreback jreback closed this as completed Jun 4, 2018
@jreback
Copy link
Contributor Author

jreback commented Jun 4, 2018

@gfyoung do we have an issue for the _timelex issues? if not can you create one. ty.

@gfyoung
Copy link
Member

gfyoung commented Jun 5, 2018

@jreback : Yep, done.

jorisvandenbossche pushed a commit to jorisvandenbossche/pandas that referenced this issue Jun 8, 2018
jorisvandenbossche pushed a commit to jorisvandenbossche/pandas that referenced this issue Jun 8, 2018
Partially addresses pandas-devgh-21137.
(cherry picked from commit 1abfd1b)
jorisvandenbossche pushed a commit that referenced this issue Jun 9, 2018
Partially addresses gh-21137.
(cherry picked from commit ac32ce8)
jorisvandenbossche pushed a commit that referenced this issue Jun 9, 2018
Partially addresses gh-21137.
(cherry picked from commit 1abfd1b)
david-liu-brattle-1 pushed a commit to david-liu-brattle-1/pandas that referenced this issue Jun 18, 2018
david-liu-brattle-1 pushed a commit to david-liu-brattle-1/pandas that referenced this issue Jun 18, 2018
david-liu-brattle-1 pushed a commit to david-liu-brattle-1/pandas that referenced this issue Jun 18, 2018
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Testing pandas testing functions or related to the test suite
Projects
None yet
Development

No branches or pull requests

2 participants