Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
just throw
  • Loading branch information
koubaa committed Sep 20, 2020
commit f9216a28bb3f8bb89495e20ec86ce0e6ea3321dc
2 changes: 1 addition & 1 deletion src/runtime/pytuple.cs
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@ private static IntPtr FromArray(PyObject[] items)
if (res == 0)
Comment thread
koubaa marked this conversation as resolved.
Outdated
{
Runtime.Py_DecRef(val);
PythonException.ThrowIfIsNotZero(res);
throw new PythonException();
}
}
return val;
Expand Down