slozier

Results 254 comments of slozier

Thanks for the tip. I was able to reproduce the failure on Windows by bumping the range to 25000 and on .NET 6 (with 50000). I managed to get the...

@DamianReeves This PR only enables the test suite. Is there a problem running the existing (.NET 6) DLLs on .NET 7?

Also samples: https://github.com/IronLanguages/main/tree/master/Languages/IronPython/Samples

@jstacoder no idea. I assume the docs were just forked from the Python docs (with minor changes).

.NET 6 added an overload [`FirstOrDefault(IEnumerable, TSource)`](https://learn.microsoft.com/en-us/dotnet/api/system.linq.enumerable.firstordefault?view=net-6.0#system-linq-enumerable-firstordefault-1(system-collections-generic-ienumerable((-0))-0)) so, other than being explicit about your type, I'm not sure there's a whole lot you can do for this one: ```py import...

I had looked at this a while back, you could deduplicate the methods in `ExtensionMethodSet.GetExtensionMethods`. Something like https://github.com/IronLanguages/ironpython3/pull/1620. Not sure why I had not gone ahead with this fix, maybe...

> Another idea: what if methods are being resolved in in a way that those defined in types with `TypeForwardedToAttribute` have a lower priority than regular type methods? If there...

> In the meantime, is there any way one would be able to compile using NET4x but then run in .NET Core? Perhaps removing the use of types like `System.Runtime.CompilerServices.Closure`...