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

Improve usage of file modes: - os.chmod - os.stat - ...

mono
.NET Core
Port to ipy3

### Description I've included a simple console app that demonstrates the leak and a screenshot of the memory retention graph after all the objects go out of scope and should...

Port to ipy3

### Description The CLR enum have interesting characteristics that makes it too similar to python `IntEnum` and `IntFlag`. however not all of those characteristics are supported in IronPython. Examples: given...

Port to ipy3

`typing` module fails to import with IronPython. Here's the error: > import typing Traceback (most recent call last): File "", line 1, in File "C:\Program Files\IronPython 2.7\Lib\site-packages\typing.py", line 1788, in...

Port to ipy3

Our `listreverseiterator` implementation uses an increasing index relative to the current size of the list while the CPython implementation appears to use the actual index and decreases. CPython: ```Python d...

Port to ipy3
CPython compatibility

Multiple test failures occur when: - Jumping in and out of different types of blocks (with, try/except, try/finally) - Jumping from non-line events For example test_jump_in_nested_finally_2 and test_jump_in_nested_finally_3 are failing...

Port to ipy3

Hi, downloaded the zip file from release 2.7.8. I'm trying to install pip for IronPython on ubuntu 16.04 LTS 64 bits. Tried the dotnet core runtime first with `bash netcoreapp2.0/ipy.sh...

Port to ipy3

We received a report from a Visual Studio customer that IronPython was generating assemblies in optimized mode even though they configured it to load as debug: https://developercommunity.visualstudio.com/content/problem/218002/debugger-step-f10-does-not-work-in-ironpython-vs-1.html They had problems...

Port to ipy3

See Tests/test_help.py. The MemoryStream portion is failing on the latest mono.

Port to ipy3

The code structure below, from inside generate_dynsites.py, sets up an unbounded loop when no match is found when the generated code is executed: The same failed BindCore call can be...

Port to ipy3