[IronPython] FW: What is mean of "/*!*/" in source code.

2008-07-25 Thread Han Kejing
Hi, all, I'm reading the source code of IronPython 2.0 beta 4. I found some flags like "/*!*/" in source code. Who can tell me what is mean of this flag? I'm not sure that there is right place to ask this question. But I cannot find the answer from Google & Baidu J Thanks.

Re: [IronPython] imports & .NET classes...

2008-07-25 Thread Michael Foord
Dino Viehland wrote: We’ve recently been discussing a bug ( http://www.codeplex.com/IronPython/WorkItem/View.aspx?WorkItemId=16323 ) internally and thought we’d get some broader input on it. Just so you don’t have to click on this link this bug is all about how properties get imported and ad

[IronPython] imports & .NET classes...

2008-07-25 Thread Dino Viehland
We've recently been discussing a bug ( http://www.codeplex.com/IronPython/WorkItem/View.aspx?WorkItemId=16323 ) internally and thought we'd get some broader input on it. Just so you don't have to click on this link this bug is all about how properties get imported and additionally how we deal

Re: [IronPython] Switching Mailing List to CodePlex

2008-07-25 Thread Jimmy Schementi
If anything, the mailman archive would stay where it is, no point in removing it. Harry, when we spoke with the Codeplex folks, I gave them a feature request to allow using this feature with existing addresses, like google groups where you just tell them an external email address and they keep

Re: [IronPython] [Ironruby-core] DLR IDE

2008-07-25 Thread Douglas S. Blank
Ben Hall wrote: Hi Douglas, Integration into Microsoft Robotics Developer Studio for IronPython is something which is very interesting. It sounds like you guys are doing some interesting stuff, maybe a bit out of the scope which I had planned for IronEditor. I take it as your using this as an

Re: [IronPython] IronPython Post 2.0 Roadmap

2008-07-25 Thread Michael Foord
Curt Hagenlocher wrote: On Fri, Jul 25, 2008 at 12:30 PM, Michael Foord <[EMAIL PROTECTED]> wrote: At Resolver Systems we've used the DllImport attribute extensively. If we had a good ctypes/native interop mechanism, would it take care of that? Yep. :-) Thanks Michae; In my o

Re: [IronPython] IronPython Post 2.0 Roadmap

2008-07-25 Thread Curt Hagenlocher
On Fri, Jul 25, 2008 at 12:30 PM, Michael Foord <[EMAIL PROTECTED]> wrote: > > At Resolver Systems we've used the DllImport attribute extensively. If we had a good ctypes/native interop mechanism, would it take care of that? > In my own projects I've used the Silverlight Scriptable attribute seve

Re: [IronPython] IronPython Post 2.0 Roadmap

2008-07-25 Thread Michael Foord
Curt Hagenlocher wrote: So, we had a brief hallway discussion today about this topic, and the upshot is that I'm interested in hearing your "real world" use cases for a) attributes, and At Resolver Systems we've used the DllImport attribute extensively. In my own projects I've used the Silver

Re: [IronPython] [Ironruby-core] DLR IDE

2008-07-25 Thread Michael Foord
Ben Hall wrote: Hi Stefan, An interesting approach - you want people to collaborate so you start a new project? Hehe. That's a computing classic. "There are too many protocols, we need to invent a new one so that everyone will use that one..." Michael When writing the editors, people

Re: [IronPython] Garbage collection of imported modules

2008-07-25 Thread Dino Viehland
It's not just tied to debug because there's also performance reasons to generate it as an uncollectible type. In 1.x there is a -X:GenerateAsSnippets command line option which forces the modules to be collectible (you could also programmatically set Options.GenerateModulesAsSnippets to true).

[IronPython] Garbage collection of imported modules

2008-07-25 Thread Christian Muirhead
Hi guys - If I execute the following: ### from System.Diagnostics import Process M = 1024 * 1024 import bigmodule for i in range(1000): m = reload(bigmodule) print i, Process.GetCurrentProcess().PrivateMemorySize64 / M ### (in IP 1.1.1), I see steadily increasing memory usage - the a

Re: [IronPython] DLR IDE

2008-07-25 Thread Mitch Barnett
Hi Stefan, Looks like fun, count me in! Mitch _ From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Stefan Dobrev Sent: Thursday, July 24, 2008 11:39 PM To: Discussion of IronPython; [EMAIL PROTECTED] Subject: [IronPython] DLR IDE Hi all, Wouldn't be nice if we

Re: [IronPython] [Ironruby-core] DLR IDE

2008-07-25 Thread Stefan Dobrev
Hi Benn, I haven't created the codeplex project to start coding ASAP. My idea was to use the codeplex wiki to gather requirements for what a good DLR IDE (name it editor if you like). Actually I have first created a pbwiki for this, but then realized that codeplex's wiki can be used as well, so no

Re: [IronPython] [Ironruby-core] DLR IDE

2008-07-25 Thread Ben Hall
Hi Douglas, Integration into Microsoft Robotics Developer Studio for IronPython is something which is very interesting. It sounds like you guys are doing some interesting stuff, maybe a bit out of the scope which I had planned for IronEditor. I take it as your using this as an educational exerci

Re: [IronPython] [Ironruby-core] DLR IDE

2008-07-25 Thread Douglas Blank
Stefan, Ben, and all, It looks like there may be a few choices to choose from! We are also working on an IDE, but it is part of a larger project. Our goal is to create an educational framework for teaching ideas in computer science. It is also open source, but no doubt differs from your initial

Re: [IronPython] [Ironruby-core] DLR IDE

2008-07-25 Thread Ben Hall
Hi Stefan, An interesting approach - you want people to collaborate so you start a new project? When writing the editors, people have lots of different reasons for doing so - not everyone wants to create an IDE, some people just want to create a cool sample to learn Silverlight \ DLR which they t