summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCharles Harris <charlesr.harris@gmail.com>2018-03-16 10:42:01 -0600
committerGitHub <noreply@github.com>2018-03-16 10:42:01 -0600
commit8a67fa9d64cda97172681c0537faf45500155559 (patch)
tree1695541bbeaf92c07f290acc9c25af033172c876
parent7a3db4909498a40bdeec44c9626924e37c51ed12 (diff)
downloadpython-numpy-8a67fa9d64cda97172681c0537faf45500155559.tar.gz
python-numpy-8a67fa9d64cda97172681c0537faf45500155559.tar.bz2
python-numpy-8a67fa9d64cda97172681c0537faf45500155559.zip
MAINT: The histogram_bin_edges function needs a raw docstring.
-rw-r--r--numpy/lib/histograms.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/numpy/lib/histograms.py b/numpy/lib/histograms.py
index 732924657..aa067a431 100644
--- a/numpy/lib/histograms.py
+++ b/numpy/lib/histograms.py
@@ -349,7 +349,7 @@ def _search_sorted_inclusive(a, v):
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.
Parameters