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

I used IronPython V2.7.12 on WPF. If I operate the code below, the message is printed well. ``` import logging logging.warning("warning message") logging.error("error message") ``` But the following exceptions occur:...

### Description In IronPython 2.7.12 (and 3.4.0-beta1) _RE_Match.groupdict()_ contains the mangled names of orginally unnamed groups, when both named and unnamed groups are present in the expression. CPython only lists...

confirmed
good first issue

We have a large .Net 4.x WPF desktop application that is in the process of being migrated to .Net 6. The app calls numerous py modules, one of which contains...

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

confirmed
Port to ipy3

Hi there, I have searched, but apologies if this is a known bug. (I know I can and should just code this as "if key in chars" but this is...

bug
confirmed

_From @slide on March 14, 2017 15:48_ Mono seems to put in a different value for [Optional] parameters than MS.NET, need to debug why and file a mono issue if...

mono
Test Failure

Runtime: NET6.0 IronPython: 2.7.11 In mongodb, there are many methods with default value as default(CancellationToken) ```csharp long CountDocuments(FilterDefinition filter, CountOptions options = null, CancellationToken cancellationToken = default(CancellationToken)); ``` but in...

confirmed
Port to ipy3

.NET6 and IronPython 2.7.11 call the function: ```python def cnt(): import System, clr clr.AddReference("MongoDB.Bson") clr.AddReference("MongoDB.Driver") from MongoDB.Bson import * from MongoDB.Driver import * connStr = "....." client = MongoClient(connStr) database...

confirmed
Port to ipy3

### Description I try to compile a DLL, containing several python-Files with /target:dll. Although in https://github.com/IronLanguages/ironpython2/blob/master/Src/IronPythonCompiler/README.md option /main is only valid for /target:exe, it aks me for a main in...

confirmed
Port to ipy3

### Description I am using a 3rd party library targeting .netstandard2.0 in Blazor which is built on web assembly which uses mono. This library uses IronPython. In Blazor version 3.2.1...

confirmed
Port to ipy3