slozier
slozier
PatcherLib.dll is x86 so you can't load it in 64-bit. Try using `ipy32.exe` instead.
Unfortunately I don't think there's much I can do about the error message since it comes from the .NET runtime. In your case it happened to be an x86/x64 issue,...
ctypes\test\test_arrays.py (new with 2.7.18 StdLib) ``` ====================================================================== FAIL: test_bpo36504_signed_int_overflow (__main__.ArrayTestCase) ---------------------------------------------------------------------- Traceback (most recent call last): File "R:\Documents\Programming-github\ironpython2\Src\StdLib\Lib\ctypes\test\test_arrays.py", line 156, in test_bpo36504_signed_int_overflow c_char * sys.maxsize * 2 AssertionError: OverflowError not...
Thanks for the report. I've always wanted to try IronPython in Blazor but never got around to it. I was able to reproduce the issue but I'm having a hard...
@syedqutub I'm guessing you're running into this issue: https://github.com/IronLanguages/ironpython2/issues/762
No workaround that I know of - will need a release to fix.
The generate_dynsites.py generated code was actually part of `Microsoft.Scripting.Core` which was integrated to the .NET framework. The generator script is basically dead code. Here's some repro code for the issue:...
Thanks for the report, seems to be an issue with all types of `for` statements: ```Python for 1 in []: pass ```
@andyste1 Sorry for the late reply. I guess you're not using the IronPython version of the standard library? I think you can override the version string via `_scriptEngine.SetHostVariables`.
> When you say "standard library", I assume you mean the C:\Python27\ folder that was installed by Python. Yes and no. I am referring to `C:\Python27\Lib`, but IronPython has its...