Re: [IronPython] IronPython Console Sample at Pycon

2008-03-17 Thread Jimmy Schementi
http://dynamicsilverlight.net/see/dlrconsole On 3/17/08 10:39 PM, "Kevin Kubasik" <[EMAIL PROTECTED]> wrote: I know that the dynamic console we saw during the presentation is available on the dynamicsilverlight.net, I was having some trouble finding it. Any chance someone has a direct link? --

[IronPython] IronPython Console Sample at Pycon

2008-03-17 Thread Kevin Kubasik
I know that the dynamic console we saw during the presentation is available on the dynamicsilverlight.net, I was having some trouble finding it. Any chance someone has a direct link? -- Kevin Kubasik http://kubasik.net/blog ___ Users mailing list Users@

Re: [IronPython] 2.0B1 Hosting: Creating Python Types

2008-03-17 Thread Dino Viehland
MakeTuple has been moved into PythonOps as PythonOps.MakeTuple. The reason for that change is that we now want the public surface area of the .NET Python types to match the public surface area Python types. File is more of a problem... Unfortunately files do need to be bound to a context (for

[IronPython] 2.0B1 Hosting: Creating Python Types

2008-03-17 Thread Jeff Hardy
Hi, I'm trying to figure out how to create an instance of a Python type (i.e. tuple and file) using the hosting interface (from C#). In older versions there was PythonTuple.MakeTuple, for example, but that seems to have disappeared. Now PythonTuple and PythonFile both require a CodeContext, which I

Re: [IronPython] [AVG SPAM] inheriting from "base" generic type

2008-03-17 Thread Dino Viehland
It might be possible to fix the one language compat issue on our side. And at least one of the 2 SQL issues is already fixed in the latest version of Django. So I'm hoping we can get compatible w/o needing to change Django. But currently I have the tweaks on my own version :(. From: [EMAIL PR

Re: [IronPython] [AVG SPAM] inheriting from "base" generic type

2008-03-17 Thread Miha Valencic
Ahh, thanks for the answer. Quite a few issues to address I see. Do you think it would make sense to run it in IIS somehow? (not via fastcgi with CPython, but with IronPython). Is that even doable yet? Since I am no python expert, but I am rather coming from a C background (and nowdays C# :)), the

Re: [IronPython] [AVG SPAM] inheriting from "base" generic type

2008-03-17 Thread Dino Viehland
The short answer is yes, it runs. The long answer is only 0.96.1 will run on IronPython 2.0 Beta 1 but there are some small issues: 1. You need a database provider (check out http://blogs.msdn.com/dinoviehland/archive/2008/03/17/ironpython-ms-sql-and-pep-249.aspx for my quick and dirty version

Re: [IronPython] [AVG SPAM] inheriting from "base" generic type

2008-03-17 Thread Miha Valencic
Dino, on a Django subject... :) does it run on IronPython? Thanks, Miha. On Mon, Mar 17, 2008 at 5:12 PM, Dino Viehland <[EMAIL PROTECTED]> wrote: > I'm guessing you missed Jim's talk otherwise you would have seen my demo > :) > > But anyway I'm still here - I'm down in Kitty Hawk working on mak

Re: [IronPython] inheriting from "base" generic type

2008-03-17 Thread Dino Viehland
Thanks for following up and sending this to the list. I've opened a bug so we won't lose track of the issue because it doesn't look like we had one already: http://www.codeplex.com/IronPython/WorkItem/View.aspx?WorkItemId=15674 From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Ron

Re: [IronPython] [AVG SPAM] inheriting from "base" generic type

2008-03-17 Thread Dino Viehland
I'm guessing you missed Jim's talk otherwise you would have seen my demo :) But anyway I'm still here - I'm down in Kitty Hawk working on making Django's latest and greatest work. I'm here tomorrow too and leave Wednesday morning. -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAI

[IronPython] Unit testing IP hosting -- update

2008-03-17 Thread Fernando Correia
I've sent some messages to this list about problems trying to use NUnit to test IronPython hosting with IronPython-2.0A8. Just so you know, with IronPython-2.0B1 that seems to be working, at least with a very basic test. Code follows. Class1.cs -- using NUnit.Framework; namespace UnitTe

Re: [IronPython] [AVG SPAM] inheriting from "base" generic type

2008-03-17 Thread Steve Holden
Dino's at PyCon? Shit, this conference is getting too large! If you're still here, Dino (and Ronnie too, come to that) try and find me to say hello. regards Steve Ronnie Maor wrote: > Hi Dino, > > asked you about this at pycon. posting it here per our discussion to > help track it. > I unde

[IronPython] inheriting from "base" generic type

2008-03-17 Thread Ronnie Maor
Hi Dino, asked you about this at pycon. posting it here per our discussion to help track it. I understand it's not high on your priority list (and shouldn't be, considering the other stuff there) details: have a python class (simplified here) that is a wrapper over an event: class Future(object)