diff options
author | keremh <hallackerem@gmail.com> | 2020-04-24 12:30:28 +0300 |
---|---|---|
committer | keremh <hallackerem@gmail.com> | 2020-04-24 14:31:13 +0300 |
commit | ddf0191ea43d763c784dcb5f7ab937d8ef1ae0b0 (patch) | |
tree | a18617e807f9a9b2705ba6af46dd9006d5dffef0 /numpy/lib/histograms.py | |
parent | 6d6df47fefdc503fbcffd8cb14a5daaa956ef220 (diff) | |
download | numpy-ddf0191ea43d763c784dcb5f7ab937d8ef1ae0b0.tar.gz |
ENH: Fix exception causes in four .py files
Diffstat (limited to 'numpy/lib/histograms.py')
-rw-r--r-- | numpy/lib/histograms.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/numpy/lib/histograms.py b/numpy/lib/histograms.py index ede8a26e4..f080cc392 100644 --- a/numpy/lib/histograms.py +++ b/numpy/lib/histograms.py @@ -417,9 +417,9 @@ def _get_bin_edges(a, bins, range, weights): elif np.ndim(bins) == 0: try: n_equal_bins = operator.index(bins) - except TypeError: + except TypeError as e: raise TypeError( - '`bins` must be an integer, a string, or an array') + '`bins` must be an integer, a string, or an array') from e if n_equal_bins < 1: raise ValueError('`bins` must be positive, when an integer') |