File tree Expand file tree Collapse file tree 2 files changed +4
-1
lines changed
pandas/io/tests/test_json Expand file tree Collapse file tree 2 files changed +4
-1
lines changed Original file line number Diff line number Diff line change @@ -370,7 +370,7 @@ Bug Fixes
370370- Bug in ``DatetimeIndex`` and ``PeriodIndex.value_counts`` resets name from its result, but retains in result's ``Index``. (:issue:`10150`)
371371- Bug in `pd.eval` using ``numexpr`` engine coerces 1 element numpy array to scalar (:issue:`10546`)
372372- Bug in `pandas.concat` with ``axis=0`` when column is of dtype ``category`` (:issue:`10177`)
373- - Bug in ``read_msgpack`` where input type is not always checked (:issue:`10369`)
373+ - Bug in ``read_msgpack`` where input type is not always checked (:issue:`10369`, :issue:`10630` )
374374- Bug in `pandas.read_csv` with kwargs ``index_col=False``, ``index_col=['a', 'b']`` or ``dtype``
375375 (:issue:`10413`, :issue:`10467`, :issue:`10577`)
376376- Bug in `Series.from_csv` with ``header`` kwarg not setting the ``Series.name`` or the ``Series.index.name`` (:issue:`10483`)
Original file line number Diff line number Diff line change @@ -114,6 +114,9 @@ def test_decimalDecodeTestPrecise(self):
114114 self .assertEqual (sut , decoded )
115115
116116 def test_encodeDoubleTinyExponential (self ):
117+ if compat .is_platform_windows () and not compat .PY3 :
118+ raise nose .SkipTest ("buggy on win-64 for py2" )
119+
117120 num = 1e-40
118121 self .assertEqual (num , ujson .decode (ujson .encode (num )))
119122 num = 1e-100
You can’t perform that action at this time.
0 commit comments