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

PEP 370[1] specifies where a per-user site-packages directory should go. Right now IronPython picks up the normal Python one, which means that changes to site.py will be required. PEP 370...

mono

t1.py: ``` python def f(*args): print args return f import sys sys.settrace(f) ``` t2.py: ``` python def f(): print 'hi' ``` ``` "C:\Program Files (x86)\IronPython 2.7\ipy.exe" t1.py prints: (, 'call',...

The exception object for the except block is staying alive and keeping a traceback frame alive. The tracebackf rame includes the just_numbers locals. We should null out the exception object...

The ctypes module doesn't work on OSX or Linux, through Mono. There is a discussion on the mailing list about this, which I reproduce here for tracking purposes. I'm not...

mono

``` python import ctypes msvcrt = ctypes.cdll.LoadLibrary("msvcrt") systemfn = ctypes.c_int.from_address(ctypes.addressof(msvcrt.system)) systemfn.value = ctypes.c_int.from_address ``` from_address should return the address of where we store the function pointer address, not the function...

untriaged

Currently IronPython leaks memory when exceptions go repeatedly unhandled as they exit Python code. This is because we are constantly growing a list of exception frames and it only ever...

Original title for this issue was "Does Doc\dotnet-integration.rst really belong in releases?" Changed to better reflect the actual task ## Work Item Details **Original CodePlex Issue:** [Issue 25113](http://ironpython.codeplex.com/workitem/25113) **Status:** Active...

test.py: ``` python import sys def f(*args): print args return f sys.settrace(f) import test2 ``` test2.py: ``` python print 'a' print 'b' print 'c' def f(): print 'hi' f() ```...

In short, we can no longer add references to DLLs containing compiled subclass types for CLR exceptions and IronPythonTest.EngineTest under .NET 4.0. ###### C:\vsl\Merlin\Main\Languages\IronPython\Tests>ipyd IronPython 2.6 Beta 2 DEBUG (2.6.0.20)...

high

We now have a sys.settrace implementation but the CPython test demonstrates a few incompatibilities that we can't fix: 1. Non-deterministic collection of certain objects, such as generators. We'll collect them...

untriaged