[IronPython] TEST, IGNORE

2007-09-04 Thread Bill Chiles
This is a test ... ___ Users mailing list Users@lists.ironpython.com http://lists.ironpython.com/listinfo.cgi/users-ironpython.com

Re: [IronPython] DLR group?

2008-03-14 Thread Bill Chiles
We are embarrassingly light on docs right now. blogs.msdn.com/mmaly has a series of posts going through the ToyScript sample language and explaining mechanism used by language implementers on the DLR. That would help you then to jump into the IPy sources from Codeplex. blogs.msdn.com/Hugunin

Re: [IronPython] Dynamic Silverlight on Codeplex

2008-03-21 Thread Bill Chiles
Jimmy is the best person to answer its status vs. silverlight.net. Thanks, Bill -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Michael Foord Sent: Friday, March 21, 2008 10:17 AM To: Discussion of IronPython Subject: [IronPython] Dynamic Silverlight on C

[IronPython] DLR Codeplex Project Goes Live!

2008-11-26 Thread Bill Chiles
Today we're excited to announce the release of the Dynamic Language Runtime (DLR) as a separate Codeplex project. This release is a beta because we want our v0.9 to be the same sources and bits as IronPython v2.0. Due to a couple of good customer bugs, they wanted to release v2 RC2 in NOV and

[IronPython] DLR Codeplex Project v0.9 Released with IPy v2.0

2008-12-10 Thread Bill Chiles
Today we're excited to announce the final v0.9 release of the Dynamic Language Runtime (DLR). The DLR project provides one-stop shopping for folks who want to: * implement a language on .NET using the DLR * add dynamic features to their existing language like C#'s 'dynamic' (http://

Re: [IronPython] Announcing IronPython 2.0

2008-12-11 Thread Bill Chiles
You can always get the latest docs from http://www.codeplex.com/dlr/Wiki/View.aspx?title=Docs%20and%20specs&referringTitle=Home where I push specs and docs. IPy specific docs like the tutorial and whatnot are only in the IPy zips. bill From: users-boun...@lists.ironpython.com [mailto:users-b

[IronPython] Sympl Language Sample and Walkthrough Document

2009-05-13 Thread Bill Chiles
There's a new DLR sample to which I wanted to draw folks' attentions. There is a small language implementation sample, implemented in both IronPython and C#, with an accompanying walkthrough document. The code is now on the DLR Codeplex site under ...\Languages\Sympl, and the document is on th

[IronPython] Updates to Sympl Sample

2009-06-23 Thread Bill Chiles
I've updated the Sympl language sample to show how to support the DLR Hosting APIs. Since the base sample works with only the bits we plan to put into CLR 4.0, and we expect to show some other examples with Sympl that use APIs shipping on Codeplex only, I have split the sources into two C# vers

Re: [IronPython] IronPython Tools for Visual Studio 2010

2010-04-20 Thread Bill Chiles
We're working on widely releasing updated bits very soon, and we'll post here when that goes out. We're still working on some issues preventing us from just putting the code into the IPy sources, so there will be at least one more bits-only update. The previous version was released only at pyc

Re: [IronPython] Crippled Intellisense?

2010-07-15 Thread Bill Chiles
mk, very sorry this seems to have gone so long without a response! We've been pushing hard to ready another release soon. All this stuff should work, and we do NOT limit our functionality based on the SKU of VS you have :-). If the tools load (which they don't in the Express SKUs), then you g

Re: [IronPython] IronPy Tools CTP3 - Bugs

2010-07-17 Thread Bill Chiles
Thanks for the bug reports, Steve! Ironically, you couldn't know we were trying to get the next release out yesterday (and with sources :-)). I've entered several bugs for those things you mentioned that are still in IPyTools. We've been maintaining bugs internally until we got the sources ou

Re: [IronPython] IronPy Tools CTP3 - Bugs

2010-07-19 Thread Bill Chiles
ven't been contributing to any O-S projects recently, but since this is something I've attempted privately (twice!) I'm quite keen to dig around in your code :) On Sun, Jul 18, 2010 at 05:05, Bill Chiles wrote: > Thanks for the bug reports, Steve!  Ironically, you couldn'

Re: [IronPython] Status of Accepting External Contributions

2010-07-19 Thread Bill Chiles
Ok, before there's jumping for joy or holding of the breath :-), we're interested in getting to take back contributions. Jeff's comments about the goodness are clearly spot on. However, there's still quite a bit of row to hoe to get to that point. We're discussing taking contributions and wha

[IronPython] IronPython Hosting ?

2011-02-28 Thread Bill Chiles
I'm trying to gather information and concrete examples about IronPython hosting. I'll sift through some of the old email, but I'd super appreciate if you could send me some info about hosting IronPython if you're doing that. The questions I'd have are: * Briefly what are your goals for hosti

Re: [IronPython] IronPython Hosting ?

2011-02-28 Thread Bill Chiles
or asking how we use hosting? *Why does it matter what the purpose of my application is, as long as I feel it is worthwhile? *I'm still discovering the features I have available, and lamenting those I don't. From: users-boun...@lists.ironpython.com [mailto:users-boun...@lists.ironpython.com]

Re: [IronPython] IronPython Hosting ?

2011-03-03 Thread Bill Chiles
ers-boun...@lists.ironpython.com [mailto:users-boun...@lists.ironpython.com] On Behalf Of Bill Chiles Sent: Monday, February 28, 2011 2:48 PM To: Discussion of IronPython Subject: [IronPython] IronPython Hosting ? I'm trying to gather information and concrete examples about IronPython hostin

Re: [IronPython] IronPython Hosting ?

2011-03-03 Thread Bill Chiles
g the list at users-ow...@lists.ironpython.com When replying, please edit your Subject line so it is more specific than "Re: Contents of Users digest..." Today's Topics: 1. IronPython Hosting ? (Bill Chiles) ------

Re: [IronPython] IronPython generators' scope [dlr:249060]

2011-03-09 Thread Bill Chiles
27;m wrong, and it is just the generator's closure didn't have the right context flowed into it. Bill From: paolomoretti [mailto:notificati...@codeplex.com] Sent: Wednesday, March 09, 2011 9:21 AM To: Bill Chiles Subject: IronPython generators' scope [dlr:249060] From: paolomor

Re: [IronPython] IronLanguages

2011-03-29 Thread Bill Chiles
You'll want to look at the DLR overview doc and then the Sympl sample walkthrough doc: http://dlr.codeplex.com/wikipage?title=Docs%20and%20specs&referringTitle=Home&ProjectName=dlr You'll want to type the parameter to testComplexObject as 'dynamic' and implement IDMOP on JSObject, which you ca

[IronPython] Expr Tree Spec Updated

2011-06-02 Thread Bill Chiles
I've been sitting on some incremental updates for several months and finally cleared a couple out of my inbox backlog, so I pushed an updated version to codeplex. I don't recall all of what's in the update, but for example, I added more clarification around using and creating byref parameters (