Thanks to visit codestin.com
Credit goes to github.com

Skip to content
Draft
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
Fix accidental move of Reset call
  • Loading branch information
filmor committed Sep 23, 2023
commit df53d68fc387937aeef1aacecd789ed1f43159d7
2 changes: 1 addition & 1 deletion src/runtime/Runtime.cs
Original file line number Diff line number Diff line change
Expand Up @@ -312,9 +312,9 @@ internal static void Shutdown(bool allowReload)
Debug.Assert(everythingSeemsCollected);
}

ResetPyMembers();
Finalizer.Shutdown();
InternString.Shutdown();
ResetPyMembers();

if (!HostedInPython)
{
Expand Down