summaryrefslogtreecommitdiff
path: root/numpy/lib/histograms.py
diff options
context:
space:
mode:
Diffstat (limited to 'numpy/lib/histograms.py')
-rw-r--r--numpy/lib/histograms.py2
1 files changed, 0 insertions, 2 deletions
diff --git a/numpy/lib/histograms.py b/numpy/lib/histograms.py
index ed38ef851..49f741dd4 100644
--- a/numpy/lib/histograms.py
+++ b/numpy/lib/histograms.py
@@ -894,8 +894,6 @@ def histogramdd(sample, bins=10, range=None, normed=False, weights=None):
nbin[i] = len(edges[i]) + 1 # includes an outlier on each end
dedges[i] = np.diff(edges[i])
- nbin = np.asarray(nbin)
-
# Handle empty input.
if N == 0:
return np.zeros(nbin-2), edges