summaryrefslogtreecommitdiff
path: root/numpy/lib/function_base.py
diff options
context:
space:
mode:
authorTobias Pitters <tobias.pitters@gmail.com>2020-05-27 20:52:39 +0200
committerTobias Pitters <tobias.pitters@gmail.com>2020-05-27 20:52:39 +0200
commiteddef438696729d40092e3f8dfaf939b38ec8d5d (patch)
treeb0ca1496a1f11d05346d5354764151212177dfd0 /numpy/lib/function_base.py
parent214e8302ff92c002853ab03427cae2448a812f7c (diff)
downloadnumpy-eddef438696729d40092e3f8dfaf939b38ec8d5d.tar.gz
remove debug statements
Diffstat (limited to 'numpy/lib/function_base.py')
-rw-r--r--numpy/lib/function_base.py1
1 files changed, 0 insertions, 1 deletions
diff --git a/numpy/lib/function_base.py b/numpy/lib/function_base.py
index 8fb6ba6eb..03e4112d5 100644
--- a/numpy/lib/function_base.py
+++ b/numpy/lib/function_base.py
@@ -3959,7 +3959,6 @@ def _quantile_ureduce_func(a, q, axis=None, out=None, overwrite_input=False,
else:
# weight the points above and below the indices
- #import pdb; pdb.set_trace()
indices_below = not_scalar(floor(indices)).astype(intp)
indices_above = not_scalar(indices_below + 1)