slozier
slozier
@BCSharp I guess I should have waited a bit! https://github.com/IronLanguages/ironpython3/pull/1405 could use a review.
> Should I open issues for these? I think `struct.unpack_from` will take a bit of effort to implement properly and might be worth its own issue. I can take a...
Sounds like you are trying to use the .NET Framework version of the assemblies on .NET 6 (or .NET Core 3.1). This will not work. How are you linking in...
This is exactly the issue you would get when trying to use the .NET Framework version of the assemblies. Can you try changing your program to: ```cs Console.WriteLine(IronPython.Runtime.ClrModule.TargetFramework); ``` What...
Ahh, sorry about that. Should have `is True` in the assert statements. Just edited the top post with the proper repro.
I'm not sure if there are real world scenarios, but the one I ran into was basically this (from `test_heapq`): ```py class EvilClass(int): def __lt__(self, o): # do something return...
Well, I guess it would save me having to patch `test_heapq` in 3.6. Although the tests appear to be failing for other reasons after they're patched so until I figure...
There are tests for these in: - test_grammar.test_former_statements_refer_to_builtins - test_print.TestPy2MigrationHint (in 3.6) - test_exceptions.testSyntaxErrorMissingParens (in 3.6)
I bumped up the System.CodeDom package for .NET 6 in the DLR but when `make.ps1 package` is run it's restoring the old version (because of the DLR reference in the...
License for the repository is Apache 2.0.