Maanas Arora

Results 42 comments of Maanas Arora

Can I work on this feature?

I'm sorry; could I have a bit of clarification as to what is exactly required? By inching forward on a path, do you mean an arbitrary vector path? What do...

Running this script on both branches: ```python import numpy import random import timeit print(numpy.__version__) # '2.0.0rc2' options = ["a", "bb", "ccc", "dddd"] lst = random.choices(options, k=1000) arr_s = numpy.fromiter(lst, dtype="T",...

Yes, agreed, and willing to do a larger refactor! I actually began by considering special casing array sorting for strings overall, but wondered what the preferred approach would be. I...

Thank you both, this was helpful! Starting to plan this now and will surely clarify if needed.

I've added the slots and done some patchy work around using it, and the stringdtype integration. Looking into how to better relate to the array funcs. WIP, but hopefully this...

Yes, nonzero and some other arrayfuncs could definitely use a slot! Thank you for the guidance--I've completed most of the missing pieces I think. I assume we would deprecate some...

No worries; thank you for the detailed feedback actually! It's nice to be able to iron out the direction for the API. I'll address the docs and public API changes...

Sorry for the bit of delay, I was thinking through this and essentially ended up with separating more the legacy sorting machinery from this API. This way, the new signatures...

No worries, I have some things to address as well. Just rebased--sorry not sure if things went perfectly smoothly.