slozier

Results 254 comments of slozier

See https://github.com/IronLanguages/ironpython2/pull/269#discussion_r152788623 for initial discussion.

It looks like the [Mono.Posix.NETStandard](https://www.nuget.org/packages/Mono.Posix.NETStandard/) DLLs are not included in the zip file. Related to https://github.com/IronLanguages/ironpython2/pull/465 As a workaround you can download the nuget package linked above, unzip and place...

Seems to be some sort of deadlock when calling `Console.CursorTop`. Might be the same issue described in https://github.com/dotnet/runtime/issues/34239

@kayoub5 You could try modifying `IsStandardDotNetType` and add something like `!typeof(Enum).IsAssignableFrom(Value.UnderlyingSystemType)` to the list of checks. That way the `__new__` methods defined in `EnumOps` would be picked up. I'm not...

For `2 < DaysInt.Wed` I'm not sure what comparison method it's currently calling, I'm not sure what sort of comparison would decide to return `False`. I'm guessing you could probably...

``` Python stuff = ["a", "b", "c"] x = None tmp = [x for x in stuff if any(x is None for _ in stuff)] assert x == "c" assert...

You can probably try to work around the missing ctypes.pythonapi issue. It's only used in attr\\_compat.py (the attrs package).

@EmmanuelTramoy Thanks for the feedback. The `RawConfigParser` issue is likely the same as https://github.com/IronLanguages/ironpython3/issues/546. I believe you could bypass this by getting rid of the comments in the regex strings...

@EmmanuelTramoy Did a bit of digging and it looks like the issue is essentially the same as https://github.com/IronLanguages/ironpython2/issues/92. The whole file descriptor handling of IronPython is unfortunately somewhat problematic... Was...

Unfortunately the `parser` built-in module is not implemented in IronPython so trying to use that old `pytest-ironpython` branch may be a dead end. I've had some success with the latest...