File tree 2 files changed +4
-1
lines changed
pandas/io/tests/test_json
2 files changed +4
-1
lines changed Original file line number Diff line number Diff line change @@ -370,7 +370,7 @@ Bug Fixes
370
370
- Bug in ``DatetimeIndex`` and ``PeriodIndex.value_counts`` resets name from its result, but retains in result's ``Index``. (:issue:`10150`)
371
371
- Bug in `pd.eval` using ``numexpr`` engine coerces 1 element numpy array to scalar (:issue:`10546`)
372
372
- 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` )
374
374
- Bug in `pandas.read_csv` with kwargs ``index_col=False``, ``index_col=['a', 'b']`` or ``dtype``
375
375
(:issue:`10413`, :issue:`10467`, :issue:`10577`)
376
376
- 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):
114
114
self .assertEqual (sut , decoded )
115
115
116
116
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
+
117
120
num = 1e-40
118
121
self .assertEqual (num , ujson .decode (ujson .encode (num )))
119
122
num = 1e-100
You can’t perform that action at this time.
0 commit comments