machinalis / mypy-data

mypy typesheds for the Python data stack
BSD 3-Clause "New" or "Revised" License
86 stars 23 forks source link

Implement "popular" top-level functions of numpy #3

Open dmoisset opened 8 years ago

dmoisset commented 8 years ago

Many users use for example numpy.dot(a, b) instead of a.dot(b). Having the top level versions of those functions should cover more use cases

kjyv commented 7 years ago

Apart from global variants of array instance methods there are also others like load or save which don't exist as instance method (save not for multiple arrays), so it's actually more than a nice to have.