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

Using IronPython 2.7.9 Using the "Explicitly-implemented interface" method to call methods defined by an interface usually works fine. I now have a case where the stupid interface has duplicate methods...

Port to ipy3
.NET interop

Looking at the code we have: ```C# public static int __hash__(decimal x) { return ((BigInteger)x).GetHashCode(); } ``` In particular this means it's always `0` for values of `x` in `-1...

Port to ipy3
.NET interop

Assemblies in the DLLs folder are not loaded properly. This only occurs for .NET Core since the assembly probing occurs differently. Changing `InitializeExtensionDLLs` to use `AddReferenceToFile` loads the assembly into...

.NET Core
Port to ipy3

Using Python 2.7: ```python >>> round(1.15, 1) 1.1 >>> round(2.675, 2) 2.67 ``` The reason that these numbers are rounded down, not up like Python 2 generally should do, is...

Port to ipy3
CPython compatibility

To reproduce: ```python IronPython 2.7.9rc1 (2.7.9.0) on .NET 4.0.30319.42000 (64-bit) Type "help", "copyright", "credits" or "license" for more information. >>> import re, sys >>> re.compile(r"\'%s\'" % sys.maxint) >>> re.compile(r"\'%s\'" %...

Port to ipy3

`pyexpat` does not support Python encoding names. This is because the names are not understood by `System.Xml.XmlReader` which is used under the hood. ```Python from xml.etree import ElementTree as ET...

Port to ipy3

The following tests cases in the mpmath tests are failing: - [ ] test_functions.areal_inverses - [ ] test_functions.complex_inverse_functions - [ ] test_gammazeta.rs_zeta - [ ] test_interval.interval_complex Looks like most of...

Port to ipy3
good first issue

### Prerequisites * [x] Are you running the latest version? * [x] Are you reporting to the correct repository? * [x] Did you perform a cursory search? ### Description _sourceFiles...

Port to ipy3

The initial implementation of pyexpat has some issues running the suite of tests from the python stdlib * [ ] Progressive parsing * [ ] UseForeignDTD * [ ] unicode...

Port to ipy3

* [ ] \_as\_parameter\_ not implemented for CFuncPtr in ctypes (see _as_parameter_ not implemented for CFuncPtr in ctypes) * [ ] Debug issue with ctypes\test\test_frombuffer.py#test_abstract * [ ] Marshaling of...

macos
Port to ipy3
ctypes