brandon-neth

Results 5 comments of brandon-neth

I've got first passes at the two methods for the `[]` operator tested and implemented. There's at least one case not yet implemented for `__setitem__`, which is when some keys...

Just found another mismatch, for `__setitem__`. When the rhs is a list of length one, and the key is a repeated label, the single value in the list is assigned...

Found a mismatch with likely performance implications. Consider the following Series and access to it. ``` s = Series(data=[0,1,2,3,4], index=['a','b','c','d','c']) access = s[['c','d']] ``` In the implementation I wrote, the...

I've got the compatibility modules working on my machine for 1.33 and 1.32. For 1.31, changes to IO modules will mean reimplementing the JSON module using 1.31 parlance. This is...