main icon indicating copy to clipboard operation
main copied to clipboard

Work for this repo has moved to https://github.com/IronLanguages/ironpython2

Results 100 main issues
Sort by recently updated
recently updated
newest added

Referencing a compiled dll that contains a module with the same name as a builtin, causes the module from the dll to be imported instead of the builtin. e.g Assume...

Most of the attributes on Python's frame object are missing from IronPython's. Python 2.5: [' *\* class *\* ', ' *\* delattr *\* ', ' *\* doc *\* ', '...

CPython has no "-D" flag. If "-D" is intended to perform the same functionality as CPython's "-d" flag, we should rename it to "-d". If this is not the case,...

Readme.html in IronPython 2.0B5 binary package says "To run, IronPython 2.0B5 requires .NET Framework version 2.0 to be installed on your system. You can install the latest version from Microsoft:...

high

In Python2.5,the initial value of copy_reg.dispatch_table has 5 elements,but in IronPython,just has one.the code as follow: import copy_reg t = copy_reg.dispatch_table for name ,value in t.items(): ``` print name,value ```...

untriaged

It seems that PythonContext objects created under the hood in hosted scripting can leak in some circumstances. From my observations, it seems normal and acceptable that the first instance of...

high

there are some funtions don't implement for binascii module against Ironpython .  for the test case working around, i report this bug. select from binascii.cs [PythonName("a2b_qp")] public static object DecodeQuotedPrintable(object...

IronPython 1.0 (1.0) on .NET 2.0.50727.112 Copyright (c) Microsoft Corporation. All rights reserved. > > > from collections import deque > > > class C(deque): pass > > > ......

Input() throws an EOFError when stdin is StringIO() in CPython2.5, but IronPython throws a SyntaxError. like below code: import sys import cStringIO sys.stdin = cStringIO.StringIO() input() CPython result :"Traceback (most...

Below code has different result in IronPython 2.0A4 and Cpython, as follow: re.sub('x', r'\111', 'x') re.sub('x', r'\117', 'x') re.sub('x', r'\1111', 'x') re.sub('x', r'\1111', 'x') re.sub('x', r'\400', 'x') re.sub('x', r'\777', 'x')...