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

IronPython.SQLite removes leading slash on filenames. Tested (on Linux) patch commenting out the two lines is attached here: ``` index 97e9cbb..76f54d8 100644 --- a/Languages/IronPython/IronPython.SQLite/c#sqlite/os_win_c.cs +++ b/Languages/IronPython/IronPython.SQLite/c#sqlite/os_win_c.cs @@ -2643,8 +2643,11 @@...

mono

I'm using IronPython 2.7.4rc1 (2.7.0.40) on Mono 4.0.30319.17020 (64-bit) I git cloned the latest version of ipython, navigated to the ipython directory, and ran ipy setup.py install Got the following...

mono

Bug 410803 PS C:\vsl\Merlin\External\Languages\IronPython20\25\Lib> ipy IronPython 2.0 Beta (2.0.0.1000) on .NET 2.0.50727.1434 Copyright (c) Microsoft Corporation. All rights reserved. > > > import sys > > > module = type(sys)...

The first argument should be the class that the __new__method belongs to. The first call to *\* new *\* works as expected, but the second one also works even though...

Complex math module should improve precision on certain operations and, in some cases, correctness. Test coverage should also be improved, as single failures appear to hide others. # ## FAIL:...

D:\rft\vsl\dlr\Languages\IronPython\Tests>26 -c "list('a[1]a'._formatter_field_name_split()[1])" D:\rft\vsl\dlr\Languages\IronPython\Tests>27 -c "list('a[1]a'._formatter_field_name_split()[1])" Traceback (most recent call last): File "", line 1, in ValueError: Only '.' or '[' may follow ']' in format field specifier D:\rft\vsl\dlr\Languages\IronPython\Tests>ipyd -c...

Hi, For debugging via SetTrace, it would be good to have a way to find the ScriptSource instance of the current code. Via TraceBackFrame, one can go to f_code.co_name which...

I'm have configured IIS 7 to use IronPython for CGI scripts ( [ http://www.tikalk.com/net/configuring-ironpython-cgi-iis-7 ](http://www.tikalk.com/net/configuring-ironpython-cgi-iis-7) ). ## Not let's say I have following Python script that simply reads from stdin...

I define a side-effect-free (pure) lambda expression in IronPython and assign it to a C# delegate. When invoking the delegate simultaneously from multiple threads i get exceptions of type *\*...

high

ipy -c "import re; print re.sub('a', 'b', 'a', -1)" ---> b python -c "import re; print re.sub('a', 'b', 'a', -1)" ---> a Negative count in re module works differently than...