You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Under debug, there is a dead loop in Converter.ToArray() method:
null should be checked before adding to the list:
while (true)
{
using var item = Runtime.PyIter_Next(IterObject.Borrow());
if (item.IsNull()) break;
if (!Converter.ToManaged(item.Borrow(), elementType, out var obj, setError))
{
return false;
}
**if (obj == null) break;**
list.Add(obj);
}
The text was updated successfully, but these errors were encountered:
Environment
Details
Program hangs and crashes.
Under debug, there is a dead loop in Converter.ToArray() method:

null should be checked before adding to the list:
The text was updated successfully, but these errors were encountered: