Skip to content

Commit 2b5f380

Browse files
committed
docs
1 parent 7edc25c commit 2b5f380

File tree

2 files changed

+1
-1
lines changed

2 files changed

+1
-1
lines changed

doc/source/whatsnew/v0.20.0.txt

+1
Original file line numberDiff line numberDiff line change
@@ -824,6 +824,7 @@ Bug Fixes
824824
- Bug in ``pd.qcut()`` with a single quantile and an array with identical values (:issue:`15431`)
825825
- Compat with SciPy 0.19.0 for testing on ``.interpolate()`` (:issue:`15662`)
826826

827+
- Compat for 32-bit platforms for ``.qcut/cut``; bins will now be ``in64`` dtype (:issue:`14866`)
827828

828829
- Bug in the display of ``.info()`` where a qualifier (+) would always be displayed with a ``MultiIndex`` that contains only non-strings (:issue:`15245`)
829830
- Bug in ``.replace()`` may result in incorrect dtypes. (:issue:`12747`)

pandas/core/algorithms.py

-1
Original file line numberDiff line numberDiff line change
@@ -174,7 +174,6 @@ def isin(comps, values):
174174
" to isin(), you passed a "
175175
"[{0}]".format(type(values).__name__))
176176

177-
178177
from pandas import DatetimeIndex, PeriodIndex
179178

180179
if needs_i8_conversion(comps):

0 commit comments

Comments
 (0)