Re: [IronPython] Is there any IronPython or CPython lib for CVS?

2006-11-02 Thread Sanghyeon Seo
2006/11/3, Kevien Lee <[EMAIL PROTECTED]>: > Hi everyone, > > Is there any lib for call the API of CVS? > I only found that there just a lib for SVN (PySvn),but not for CVS Google for "python cvs". First hit. -- Seo Sanghyeon ___ users mailing list use

[IronPython] Is there any IronPython or CPython lib for CVS?

2006-11-02 Thread Kevien Lee
Hi everyone,   Is there any lib for call the API of CVS? I only found that there just a lib for SVN (PySvn),but not for CVS   Thaneks Kevien ___ users mailing list users@lists.ironpython.com http://lists.ironpython.com/listinfo.cgi/users-ironpython.com

Re: [IronPython] svn:externals for SOAPpy

2006-11-02 Thread Sanghyeon Seo
2006/11/3, Sanghyeon Seo <[EMAIL PROTECTED]>: > I added svn:externals reference to wstools under SOAPpy/SOAPpy, just > as under zsi/ZSI. I hope this is okay! Sorry, wrong list. -- Seo Sanghyeon ___ users mailing list users@lists.ironpython.com http://l

[IronPython] svn:externals for SOAPpy

2006-11-02 Thread Sanghyeon Seo
I added svn:externals reference to wstools under SOAPpy/SOAPpy, just as under zsi/ZSI. I hope this is okay! http://svn.sourceforge.net/viewvc/pywebsvcs?view=rev&revision=1291 -- Seo Sanghyeon ___ users mailing list users@lists.ironpython.com http://lis

Re: [IronPython] IronPython for ASP.net CTP is now [EMAIL PROTECTED]/ironpython

2006-11-02 Thread Kevin Chu
I found that IronPython for ASP.NET CTP use IronPython.dll is 1.0.60816.1877 but IronPython 1.0's IronPython.dll is 1.0.61005.1977. why IronPython for ASP.NET CTP not use lastest build On 11/3/06, Keith J. Farmer <[EMAIL PROTECTED]> wrote: > So how long until they port Zope to ASP.NET? ;) > >

Re: [IronPython] Importing NMathCore into Iron Python

2006-11-02 Thread Howard R. Hansen
Michael, You are correct. I should have been using CenterSpace.NMath.Core for the namespace. Thank you for your reply. Howard Michael Foord wrote: > Howard R. Hansen wrote: > >> When I use the following procedure to import a dynamic link math library >> into Iron Python I get the error s

Re: [IronPython] Importing NMathCore into Iron Python

2006-11-02 Thread Howard R. Hansen
Dino, Yes the namespace is not NMathCore. About 2 hours after I posted my message I stumbled onto the actually namespace CenterSpace.NMath.Core. Thank you for providing a method for determining an assembly's namespace. Your method will save me a lot of time in the future. Howard Dino Vieh

Re: [IronPython] IronPython for ASP.net CTP is now [EMAIL PROTECTED]/ironpython

2006-11-02 Thread Keith J. Farmer
So how long until they port Zope to ASP.NET? ;) From: [EMAIL PROTECTED] on behalf of Brian Sent: Thu 11/2/2006 2:45 PM To: Discussion of IronPython Subject: Re: [IronPython] IronPython for ASP.net CTP is now [EMAIL PROTECTED]/ironpython On 11/2/06, Keith J. Far

Re: [IronPython] Importing NMathCore into Iron Python

2006-11-02 Thread Michael Foord
Howard R. Hansen wrote: > When I use the following procedure to import a dynamic link math library > into Iron Python I get the error show in the last 4 lines of the > procedure. What am I doing wrong and what should I do to import the > NMathCore math library into Iron Python? > > The namesp

Re: [IronPython] Importing NMathCore into Iron Python

2006-11-02 Thread Dino Viehland
Could the namespaces be something other than NMathCore? You could do: asm = clr.LoadAssemblyFromFile('NMathCore.dll') dir(asm) and you should see the namespaces in the assembly and those should work in the import statement. -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROT

[IronPython] Problem with KeyboardInterrupt by raw_input

2006-11-02 Thread B Kriszio
Hello IronPython people I try to port a little read commands loop from C Python to IronPython while 1: try: line = raw_input('>') if line == 'quit': break print line except KeyboardInterrupt: print 'Canceled' With CPython typing asdf and th

[IronPython] Importing NMathCore into Iron Python

2006-11-02 Thread Howard R. Hansen
When I use the following procedure to import a dynamic link math library into Iron Python I get the error show in the last 4 lines of the procedure. What am I doing wrong and what should I do to import the NMathCore math library into Iron Python? Howard >>> import clr >>> clr.AddReferenceToF

Re: [IronPython] Rewrite of WSGI handler

2006-11-02 Thread Mark Rees
On 11/3/06, Christopher Baus <[EMAIL PROTECTED]> wrote: I'm beginning to wonder if we really need the reload IronPythonfunctionality in WSGI.  It adds some complexity for not a lot of realgain.  I thought one reason for reloading the interpreter would be toreload all the modules, but that can be do

Re: [IronPython] IronPython for ASP.net CTP is now live @www.asp.net/ironpython

2006-11-02 Thread Brian
On 11/2/06, Keith J. Farmer <[EMAIL PROTECTED]> wrote: I wondered when the announcement was going to happen...With days left spare between the CTP release and David Ebbo's presentation at ASP.NET connections in Las Vegas next Tuesday!  ;-) ___ users mail

Re: [IronPython] IronPython for ASP.net CTP is now live @www.asp.net/ironpython

2006-11-02 Thread Keith J. Farmer
I wondered when the announcement was going to happen... From: [EMAIL PROTECTED] on behalf of Mahesh Prakriya Sent: Thu 11/2/2006 1:02 PM To: users@lists.ironpython.com Subject: [IronPython] IronPython for ASP.net CTP is now live @www.asp.net/ironpython We just

[IronPython] IronPython for ASP.net CTP is now live @ www.asp.net/ironpython

2006-11-02 Thread Mahesh Prakriya
We just went live with our Community Technology Preview of IronPython for ASP.net.   There’s a splash on www.asp.net and links to CTP download/whitepaper/walkthroughs/upcoming talks etc. on www.asp.net/ironpython   From the team, in particular, David Ebbo and Qing Ye deserve special kudos for

Re: [IronPython] Rewrite of WSGI handler

2006-11-02 Thread Christopher Baus
I'm beginning to wonder if we really need the reload IronPython functionality in WSGI. It adds some complexity for not a lot of real gain. I thought one reason for reloading the interpreter would be to reload all the modules, but that can be done via WSGI middlewear. Also I ran into a problem wi