[Ironpython-users] IronPython, Daily Digest 8/25/2014

CodePlex no_reply at codeplex.com
Tue Aug 26 09:26:55 CEST 2014


Hi ironpython,

Here's your Daily Digest of new issues for project "IronPython".

In today's digest:ISSUES

1. [New issue] Failed to load language 'IronPython 2.7.3': The method or operation is not implemented.

----------------------------------------------

ISSUES

1. [New issue] Failed to load language 'IronPython 2.7.3': The method or operation is not implemented.
http://ironpython.codeplex.com/workitem/35497
User pkinoc has proposed the issue:

"When I run the following unit test manually in Visual Studio 2010 it runs perfectly fine but when I run it as a method in a loadtest I get the following exception. We initially started getting the exception in a much bigger solution so I created a new solution that contains one unit test and only calls CreateEngine(). I also referenced the following DLL's in the .Net40 Platform in the IronPython 2.7.3 installation. I've uninstalled/re-installed IP 2.7.3 several times and I do not have IronRuby installed. I also don't have the Iron Python Visual Studio Tools installed since I don't need the IP IDE as part of VS

IronPython
IronPython.Modules
Microsoft.Dynamic
Microsoft.Scripting
Microsoft.Scripting.Metadata

Test method IronPythonTest.UnitTest1.TestIronPython threw exception: 
System.Reflection.TargetInvocationException: Failed to load language 'IronPython 2.7.3': The method or operation is not implemented. ---> System.NotImplementedException: The method or operation is not implemented.

Microsoft.VisualStudio.TestTools.Common.EqtStringPerThreadWriter.get_Encoding()
System.IO.TextWriter.SyncTextWriter.get_Encoding()
IronPython.Runtime.PythonFile.InitializeConsole(SharedIO io, ConsoleStreamType type, String name)
IronPython.Runtime.PythonContext.SetStandardIO()
IronPython.Runtime.PythonContext.InitializeSystemState()
IronPython.Runtime.PythonContext..ctor(ScriptDomainManager manager, IDictionary`2 options)
Microsoft.Scripting.Runtime.LanguageConfiguration.LoadLanguageContext(ScriptDomainManager domainManager, Boolean& alreadyLoaded)
Microsoft.Scripting.Runtime.DlrConfiguration.LoadLanguageContext(ScriptDomainManager manager, LanguageConfiguration config)
Microsoft.Scripting.Runtime.DlrConfiguration.TryLoadLanguage(ScriptDomainManager manager, AssemblyQualifiedTypeName providerName, LanguageContext& language)
Microsoft.Scripting.Runtime.ScriptDomainManager.GetLanguageByTypeName(String providerAssemblyQualifiedTypeName)
Microsoft.Scripting.Hosting.ScriptRuntime.GetEngineByTypeName(String assemblyQualifiedTypeName)
IronPython.Hosting.Python.GetEngine(ScriptRuntime runtime)
IronPython.Hosting.Python.CreateEngine()
IronPythonTest.UnitTest1.TestIronPython() in C:\Users\qascript\Documents\Visual Studio 2010\Projects\IronPythonTest\IronPythonTest\UnitTest1.cs: line 35



[TestMethod]
    public void TestIronPython()
    {
        try
        {
            Console.WriteLine("Before CreateEngine");
            Console.WriteLine("PATH=" + System.Environment.GetEnvironmentVariable("path"));
            ScriptEngine m_engine = Python.CreateEngine();
            Console.WriteLine("After CreateEngine");
            ScriptScope m_scope = null;

        }
        catch (Exception ex)
        {
            Console.WriteLine("EXCEPTION: " + ex.Message);                throw;
        }
     }
"
----------------------------------------------



----------------------------------------------
You are receiving this email because you subscribed to notifications on CodePlex.

To report a bug, request a feature, or add a comment, visit IronPython Issue Tracker. You can unsubscribe or change your issue notification settings on CodePlex.com.
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://mail.python.org/pipermail/ironpython-users/attachments/20140826/075835b5/attachment.html>


More information about the Ironpython-users mailing list