fix: allow arrays with Nones in single argument usage of ak.where#3563
fix: allow arrays with Nones in single argument usage of ak.where#3563
Nones in single argument usage of ak.where#3563Conversation
Nones in single argument usage of ak.where
|
All these tests error on main with |
|
This change makes sense to me, but I seem to not understand yet why it was changed in #2757? Maybe there was a reason for this? |
|
Discussed briefly with Angus at SciPy about this and the reasoning was probably that this was the safest thing to do when |
added that too! 😃 |
|
Oh sorry. I just did no
Oh sorry. I just did now. I thought your comment here was a request to make this change. My bad. |
Fixes #3138
This used to use
ak.operations.to_numpywhich allowedNones to go through until #2757 changed it to useto_backend_arraywithallow_missing=False. I don't think there is any harm in settingallow_missing=Truehere.