-
Given classes that look like the following:
public abstract class Term {
```
public static Term op_Implicit(double x);
public static Term op_Addition(Term, Term);
```
}
public class Decision…
-
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('…
-
This seems to be happening with any XML file I try to parse with minidom, I
don't think it depends on the file contents at all.
IronPython 2.7.1 (2.7.0.40) on .NET 4.0.30319.239
Type "help", "cop…
-
For example:
import decimal
import System
x = decimal.Decimal('12.34')
y = System.Decimal(x) # No error
print y # however, y is 12.00, not 12.34
## Work Item Details
**Original CodePlex…
-
When we try to use a .Net 4.5 compiled version of IronPython in an
application, we get the following error in our development environment:
"Dynamic operations can only be performed in homogenous Ap…
-
Copy and paste the repro code from the "Repro Snippet" tab into an ipy.exe
session to repro. It should print 'pass', instead it is printing 'FAIL'.
Basically, in a remote execution scenario if we …
-
The expression 2 + 2 is successfully evaluated, but 2 + 2.5 crashes the app.
The expression 2.5 + 2.5 is evaluated successfully.
Please see the attached sample.
## Work Item Details
**Origina…
-
Even though I chose a different installation directory when installing
IronPython 2.7.5b2, it did uninstall my stable 2.7.4 installation.
This should be changed that several IronPython installation…
-
Would be nice to allow use of `memoryview` on .NET arrays, for example:
```Python
memoryview(System.Array[int]([1,2,3]))
```
This was supported with `buffer` in IronPython 2.
@BCSharp if you …
-
Looks like there are some samples at https://github.com/IronLanguages/main/tree/ipy-2.7-maint/Languages/IronPython/Public which never made it over to the repo. Might be worth seeing if there's anythin…