diff options
author | Pauli Virtanen <pav@iki.fi> | 2010-10-16 11:36:44 +0200 |
---|---|---|
committer | Pauli Virtanen <pav@iki.fi> | 2010-10-16 11:38:18 +0200 |
commit | d24db3430a6710d18f9f9e77c89ee442e9c0d631 (patch) | |
tree | a04550b64ed4ca9e968c72e5d4c653e3f78cd720 /numpy/core/src/scalarmathmodule.c.src | |
parent | 658a1dc843f26cd9f1815664d1634f3f0f9d8616 (diff) | |
download | numpy-d24db3430a6710d18f9f9e77c89ee442e9c0d631.tar.gz |
BUG: core: adjust ComplexWarning location frame up by one, so that the warning comes from the correct location (#1639)
Diffstat (limited to 'numpy/core/src/scalarmathmodule.c.src')
-rw-r--r-- | numpy/core/src/scalarmathmodule.c.src | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/numpy/core/src/scalarmathmodule.c.src b/numpy/core/src/scalarmathmodule.c.src index 6261c4c73..6913f517d 100644 --- a/numpy/core/src/scalarmathmodule.c.src +++ b/numpy/core/src/scalarmathmodule.c.src @@ -990,7 +990,7 @@ emit_complexwarning() #if PY_VERSION_HEX >= 0x02050000 return PyErr_WarnEx(cls, "Casting complex values to real discards the imaginary " - "part", 0); + "part", 1); #else return PyErr_Warn(cls, "Casting complex values to real discards the imaginary " |