Results 34 issues of Alex Earl

_From @ironpythonbot on December 9, 2014 17:42_ Even the most trivial cases utilizing System.Diagnostics.Contracts are broken: C:\Users\dfugate\Desktop>type class1.py import System System.Diagnostics.Contracts.Contract.Requires(True) ## C:\Users\dfugate\Desktop>C:\Users\dfugate\Desktop\MainAllBuildsNet40ClrDlr \Merlin\Main\Bin\Release\ipy.exe class1.py ## ipy.exe - Assert Failure...

untriaged
Port to ipy3

According to the jenkins doc about Using anonymous classes in remoting (https://www.jenkins.io/doc/developer/extensibility/serialization-of-anonymous-classes/#usages-in-remoting), it is better to use a private static class, as anonymous classes sometimes have issues being sent across...

_From @jpmaterial on May 18, 2016 12:8_ I tried setting up an https server as described here: http://www.piware.de/2011/01/creating-an-https-server-in-python/comment-page-1/#comment-507199 ``` import BaseHTTPServer, SimpleHTTPServer import ssl httpd = BaseHTTPServer.HTTPServer(('localhost', 4443), SimpleHTTPServer.SimpleHTTPRequestHandler) httpd.socket...

Port to ipy3

The APIs in pylint have changes and some classes/interfaces have been removed. This updates the code to support pylint 3.2.0 and above by updating the usage of interfaces, members and...