slozier

Results 254 comments of slozier

The install path is available in the registry: ``` > reg query HKLM\SOFTWARE\IronPython\3.4\InstallPath /ve HKEY_LOCAL_MACHINE\SOFTWARE\IronPython\3.4\InstallPath (Default) REG_SZ C:\Program Files\IronPython 3.4\ ``` Or in the [PEP-514](https://peps.python.org/pep-0514/) location: ``` > reg query...

Thanks for the report. This failure is probably fixed by https://github.com/IronLanguages/ironpython3/pull/1528 which replace the default encoding with `utf-8` on macOS. As for why `cp936` is failing, it's because `encodings.gbk` is...

What version of Mono are you using?

The `GC.Collect` on `Shutdown` seems OK, however the cleanup loop seems really icky. What happens if you have a `__del__` method that relies on a global and it gets deleted...

From https://docs.microsoft.com/en-us/dotnet/api/system.object.finalize#how-finalization-works. > The garbage collector then calls the Finalize method automatically under the following conditions: > On .NET Framework only, during shutdown of an application domain, unless the object...

Here's a thought I had this morning. Instead of trying to delete the world, would it not be enough for practical cases to release references to the `__main__` module (e.g....

Thanks! Seems to hit an assertion error in debug mode.

This one is interesting, I guess would need to break up our slice evaluation into two steps. CPython introduced C APIs to do this in 3.6.1 ([PySlice_Unpack](https://docs.python.org/3/c-api/slice.html#c.PySlice_Unpack) and [PySlice_AdjustIndices](https://docs.python.org/3/c-api/slice.html#c.PySlice_AdjustIndices)). I'm...

@BCSharp Are you able to reproduce the failure on macOS with .NET 7? I think it's occurring in `test_re_stdlib` but I don't have a macOS system to test with. If...