slozier

Results 254 comments of slozier

> > I'm not sure if it'll impact overload resolution. > > Just tested a bit by hacking `BinderTest`. Overloads using `Half` are not accepting any numeric values (float or...

I'm not able to reproduce the issue with the sample code. Could you maybe provide more details on how to reproduce? Is this a Blazor app? It could be Blazor...

This one also crashes CPython (3.9.5). Note that your two examples are not equivalent, the first one should be: ```py def foo(): try: print(new) for i in range(100): yield i...

Maybe more of a hack than a proper solution, but I'm thinking the following in `ReflectedProperty.CallGetter` would do the trick: ```C# Debug.Assert(members.Length == 1); if (members[0].IsStatic) instance = null; ```

This one also kills the CPython interpreter.

CPython bug report: https://bugs.python.org/issue44718

Thanks for the report. I think this occurs whenever a boolean is assigned to ctypes field with a bit count. Managed to hit the exception with code like this: ```py...

@sensokame Thanks for the report. I managed to get the same error with alpha1 and with beta1 the same issue as the original poster. However, the issue appears to have...

https://github.com/IronLanguages/ironpython3/pull/1466 partially resolves this by letting the expression flow through to the .NET regex engine which supports `imnsx` (see [Regular Expression Options](https://docs.microsoft.com/en-us/dotnet/standard/base-types/regular-expression-language-quick-reference#regular-expression-options)). However there are still some failures such as:...