Hi ironpython,

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

In today's digest:ISSUES

1. [New issue] sys.settrace: Provide events for calls to non-IronPython code
2. [New comment] Visual Studio Tools 2.7: Can't edit Python code in WPF app
3. [New issue] Ebedded: Can't import extension DLLs like ipy does
4. [New comment] Ebedded: Can't import extension DLLs like ipy does
5. [New comment] Ebedded: Can't import extension DLLs like ipy does
6. [New comment] Could not get dependencies for project reference 
'PythonLibrary1'
7. [New comment] console mode "exit()" command does not work.

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

ISSUES

1. [New issue] sys.settrace: Provide events for calls to non-IronPython code
http://ironpython.codeplex.com/workitem/32971
User MarkusSchaber has proposed the issue:

"I always found it a deficiency of IronPython settrace that it does not offer 
events for calls to non-IronPython .NET methods (either statically compiled 
from C#/VB/F#... or from other dynamic languages).

cPython has c_call, c_return and c_exception for this. Maybe IronPython could 
be extended to support those, or maybe dotnet_call, dotnet_return and 
dotnet_exception.

(This issue is filed in consent with Jeff Hardy)."-----------------

2. [New comment] Visual Studio Tools 2.7: Can't edit Python code in WPF app
http://ironpython.codeplex.com/workitem/28630
User AlexFor1987 has commented on the issue:

"i can't debugger it  ... what's the matter ?"-----------------

3. [New issue] Ebedded: Can't import extension DLLs like ipy does
http://ironpython.codeplex.com/workitem/32973
User tibel has proposed the issue:

"ipy imports all extension dlls (in DLLs) folder on startup (see 
InitializeExtensionDLLs() in PythonCommandLine.cs).

When I embed IronPython in C#, i have to do this manually. Problem is here that 
the code from PythonCommandLine.cs does not work because it uses internal 
classes:
ClrModule.AddReference(PythonContext.SharedContext, new FileInfo(file).Name);

At the moment I load them like this:
var assembly = Assembly.LoadFile(file);
runtime.LoadAssembly(assembly);

But this way I can only load .NET assemblies and not CPython 
extensions."-----------------

4. [New comment] Ebedded: Can't import extension DLLs like ipy does
http://ironpython.codeplex.com/workitem/32973
User slide_o_mix has commented on the issue:

"You can't load CPython extensions, they are native code and this is not 
supported."-----------------

5. [New comment] Ebedded: Can't import extension DLLs like ipy does
http://ironpython.codeplex.com/workitem/32973
User tibel has commented on the issue:

"Is there a difference between loading with ClrModule.AddReference() and 
runtime.LoadAssembly() ?"-----------------

6. [New comment] Could not get dependencies for project reference 
'PythonLibrary1'
http://ironpython.codeplex.com/workitem/10245
User yYHernan has commented on the issue:

"Can someone give an example of what's a filesystem website? Is this just an 
html file not hosted by http server?"-----------------

7. [New comment] console mode "exit()" command does not work.
http://ironpython.codeplex.com/workitem/31419
User yYHernan has commented on the issue:

"This is working in IPY 2.7.2.1, see below for console dump:

Microsoft Windows [Version 6.1.7601]
Copyright (c) 2009 Microsoft Corporation.  All rights reserved.

C:\Users\Y>ipy
IronPython 2.7.2.1 (2.7.0.40) on .NET 4.0.30319.17626 (32-bit)
Type "help", "copyright", "credits" or "license" for more information.
>>> exit
Use exit() or Ctrl-Z plus Return to exit
>>> exit()

C:\Users\Y>"
----------------------------------------------



----------------------------------------------
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.
_______________________________________________
Ironpython-users mailing list
Ironpython-users@python.org
http://mail.python.org/mailman/listinfo/ironpython-users

Reply via email to