ironpython2 icon indicating copy to clipboard operation
ironpython2 copied to clipboard

Implementation of the Python programming language for .NET Framework; built on top of the Dynamic Language Runtime (DLR).

Results 111 ironpython2 issues
Sort by recently updated
recently updated
newest added

### Description If an `int` is passed to a `float` format specifier, IronPython treats the `float` specifier as an `int` specifier and throws, whereas cpython treats the `int` as a...

### Prerequisites The issue tracker is used to report bugs and request new features, NOT to ask questions. Questions should be posted to the users mailing list which can be...

Given ``` class Meta(type): pass class Thing(object): __metaclass__ = Meta ``` ``` >>> Thing.xyz ``` **Expected behavior:** Verified in cpython 2.7.17 ``` Traceback (most recent call last): File "", line...

confirmed
Port to ipy3

### Description I am trying to access simple python code through C# code using IronPython 2.7.12 on ppc64le architecture. ``` dotnet --version 7.0.105 ``` But I am facing issue with...

This is not a bug, it's a request to download version 2.7.0 I'm working on a plugin for a software called Comicrack that used version 2.7.0 and we don't have...

### Description Using IronPython 2.7.12 nuget package from Nuget.org. IronPython.dll references Mono.Posix on .NET 4.5 build, but its neither included in the package nor referenced via another nuget package. ###...

### Prerequisites The issue tracker is used to report bugs and request new features, NOT to ask questions. Questions should be posted to the users mailing list which can be...

mono

I use SixLabors.ImageSharp to preprocess image, but got ```text System.TypeLoadException: The generic type 'System.Func`4' was used with an invalid instantiation in assembly 'System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e'. ``` The code is:...

```python import System System.ReadOnlySpan[int]((2,3,4)) ``` got ```text System.Reflection.TargetException: Exception of type 'System.Reflection.TargetException' was thrown. ```