Where to find source code for numpy's percentile

numpy, python

Solution

To find it on your own system, try `inspect`:

import inspect
from numpy import percentile
inspect.getfile(percentile)

Problem

Where can I find the source code behind the `percentile` function in `numpy`? I want to inspect it. I have searched Google but haven't come up with anything yet.

Original source