summaryrefslogtreecommitdiff
path: root/numpy/lib/histograms.py
diff options
context:
space:
mode:
authormattip <matti.picus@gmail.com>2019-01-21 23:42:56 +0200
committermattip <matti.picus@gmail.com>2019-01-21 23:42:56 +0200
commitd2a6daead874762f992532106502c448a9d43758 (patch)
treebf103119227626d08321e058ef8280fdb021dfeb /numpy/lib/histograms.py
parent3cbc11ac56054ad3ac7461e57433aefe37f2e3e4 (diff)
downloadnumpy-d2a6daead874762f992532106502c448a9d43758.tar.gz
DOC: remove python2-only methods, small cleanups
Diffstat (limited to 'numpy/lib/histograms.py')
-rw-r--r--numpy/lib/histograms.py3
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
----------