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
Add StackTrace of C# exception
  • Loading branch information
amos402 authored and Martin-Molinero committed Mar 27, 2019
commit 1959a6a87c091e7aa9eacc31733e149134ffb8b2
2 changes: 1 addition & 1 deletion src/runtime/pythonexception.cs
Original file line number Diff line number Diff line change
Expand Up @@ -136,7 +136,7 @@ public override string Message
/// </remarks>
public override string StackTrace
{
get { return _tb; }
get { return _tb + base.StackTrace; }
}

/// <summary>
Expand Down