You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: doc/source/whatsnew/v0.21.0.txt
+5
Original file line number
Diff line number
Diff line change
@@ -332,6 +332,9 @@ Performance Improvements
332
332
Bug Fixes
333
333
~~~~~~~~~
334
334
335
+
- Compatibility with PyPy increased by removing the assumption that sets are sorted in ``usecols``
336
+
(of ints) and by checking for a list object before calling PyList_GET_SIZE, which in both
337
+
cases may be considered bugs
335
338
336
339
Conversion
337
340
^^^^^^^^^^
@@ -358,6 +361,8 @@ Indexing
358
361
- Allow unicode empty strings as placeholders in multilevel columns in Python 2 (:issue:`17099`)
359
362
- Bug in ``.iloc`` when used with inplace addition or assignment and an int indexer on a ``MultiIndex`` causing the wrong indexes to be read from and written to (:issue:`17148`)
360
363
- Bug in ``.isin()`` in which checking membership in empty ``Series`` objects raised an error (:issue:`16991`)
364
+
- Tests split into cases for CPython and PyPy where needed, which highlights the fragility
365
+
of index matching with ``float('nan')``, ``np.nan`` and ``NAT``.
0 commit comments