[Ironpython-users] IronPython, Daily Digest 12/18/2012

2012-12-19 Thread no_reply
Hi ironpython, Here's your Daily Digest of new issues for project "IronPython". In today's digest:ISSUES 1. [New comment] Unclosed file handles after execution of ZipFile.extractall method -- ISSUES 1. [New comment] Unclosed file handles after exec

Re: [Ironpython-users] Using System.Diagnostics.Process results in Errno 22

2012-12-19 Thread Jackie Sproat
Curt, Thanks for the suggestion. I believe you are right. I no longer get the error message, but the command itself is not successful. Is there any other way in IronPython to run commands ? Cheers, Jackie From: Curt Hagenlocher [mailto:c...@hagenlocher.org] Sent: Tuesday, December 18, 2012 4:03

Re: [Ironpython-users] Using System.Diagnostics.Process results in Errno 22

2012-12-19 Thread Jackie Sproat
Thanks for the suggestion - I tried both solutions but, neither one of them solves the problem. System.Diagnostics.Process seems to only work if you want to launch an .exe with given arguments -Original Message- From: Jeff Hardy [mailto:jdha...@gmail.com] Sent: Tuesday, December 18, 201

Re: [Ironpython-users] No module named datetime

2012-12-19 Thread Ian Gorse
Thank you both. I will look into this when I get back to the office. P.S I am not sure if this is replying to the whole mailing list or not. Sorry for the amateurish attempts! On Tue, Dec 18, 2012 at 5:39 PM, Keith Rome wrote: > Hello Ian. The easiest thing would probably be to just use the met

Re: [Ironpython-users] Using System.Diagnostics.Process results in Errno 22

2012-12-19 Thread Curt Hagenlocher
Arg, bitten again by "reply-to"! You might need to supply a full path to java.exe in the file name. The "os.exec*" family of functions should work on IronPython, as should "os.system". On Wed, Dec 19, 2012 at 6:19 AM, Jackie Sproat wrote: > Curt, > > Thanks for the suggestion. I believe yo

Re: [Ironpython-users] Using System.Diagnostics.Process results in Errno 22

2012-12-19 Thread Jackie Sproat
Thanks os.popen is working for me! From: Curt Hagenlocher [mailto:c...@hagenlocher.org] Sent: Wednesday, December 19, 2012 7:32 AM To: Jackie Sproat Cc: ironpython-users@python.org Subject: Re: [Ironpython-users] Using System.Diagnostics.Process results in Errno 22 Arg, bitten again by "reply-to

Re: [Ironpython-users] WF and Ipy

2012-12-19 Thread Jeff Hardy
On Sun, Dec 9, 2012 at 10:11 AM, wrote: > Hello, > > I have a WPF app (written in C#) which re-hosts the WF designer along > with a toolbox control, and I want to add activities written as python > classes (inherited from NativeActivity) to the toolbox. > Creating a class and wrapping it in Toolb

Re: [Ironpython-users] Help with NumPy

2012-12-19 Thread Jeff Hardy
On Mon, Dec 10, 2012 at 7:17 AM, Kent Johnson wrote: > Hi, > > Where is the best place to get help on NumPy for IronPython? (I > cross-posted also to the SciPy4dotNet list but that list looks kind of > dead...) Unfortunately, I don't know if there is a good spot. > > My current question is, how

Re: [Ironpython-users] POST requests to IronPython CGI under IIS 7.5

2012-12-19 Thread Jeff Hardy
On Tue, Dec 11, 2012 at 3:26 AM, Dalius Dobravolskas wrote: > Hi, > > I have created python CGI script that should handle POST requests. I'm > running this script under IIS 7.5. It works without problems if I'm using > CPython but with IronPython I have problem (therefore I know it is > IronPython

Re: [Ironpython-users] Help with NumPy

2012-12-19 Thread David Peterson
You could always try the Enthought, or Continuum IO, dev mailing lists. As I understand it, people at these companies were involved in porting NumPy to IronPython? -- Dave On 19 Dec 2012, at 16:47, Jeff Hardy wrote: > On Mon, Dec 10, 2012 at 7:17 AM, Kent Johnson wrote: >> Hi, >> >> Where

Re: [Ironpython-users] Help with NumPy

2012-12-19 Thread Kent Johnson
Thank you everyone who offered suggestions. One of the Numpy for .NET developers confirmed that the project is pretty much dead, and also that there is no way to get a .NET array into a Numpy ndarray without copying the values. (See https://mail.enthought.com/pipermail/scipy4dotnet/2012-December/00

Re: [Ironpython-users] POST requests to IronPython CGI under IIS 7.5

2012-12-19 Thread Dalius Dobravolskas
Thank you, Jeff, Here is another alternative that fits my needs: http://www.voidspace.org.uk/ironpython/simple_http_server.shtml Best regards, Dalius On Wed, Dec 19, 2012 at 6:51 PM, Jeff Hardy wrote: > On Tue, Dec 11, 2012 at 3:26 AM, Dalius Dobravolskas > wrote: > > Hi, > > > > I have crea