diff options
author | mattip <matti.picus@gmail.com> | 2019-01-21 23:42:56 +0200 |
---|---|---|
committer | mattip <matti.picus@gmail.com> | 2019-01-21 23:42:56 +0200 |
commit | d2a6daead874762f992532106502c448a9d43758 (patch) | |
tree | bf103119227626d08321e058ef8280fdb021dfeb /numpy/lib/histograms.py | |
parent | 3cbc11ac56054ad3ac7461e57433aefe37f2e3e4 (diff) | |
download | numpy-d2a6daead874762f992532106502c448a9d43758.tar.gz |
DOC: remove python2-only methods, small cleanups
Diffstat (limited to 'numpy/lib/histograms.py')
-rw-r--r-- | numpy/lib/histograms.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/numpy/lib/histograms.py b/numpy/lib/histograms.py index 7b229cc89..b00f4c372 100644 --- a/numpy/lib/histograms.py +++ b/numpy/lib/histograms.py @@ -461,7 +461,8 @@ def _histogram_bin_edges_dispatcher(a, bins=None, range=None, weights=None): @array_function_dispatch(_histogram_bin_edges_dispatcher) def histogram_bin_edges(a, bins=10, range=None, weights=None): r""" - Function to calculate only the edges of the bins used by the `histogram` function. + Function to calculate only the edges of the bins used by the `histogram` + function. Parameters ---------- |