Re: [IronPython] 0.9.2 Module Search Path Error

2005-09-29 Thread Anthony Tarlano
Ok, my bad.. AnthonyOn 9/29/05, Monty Taylor <[EMAIL PROTECTED]> wrote: That doesn't work in CPython either...Python 2.4.1 (#1, May 27 2005, 18:02:40)[GCC 3.3.3 (cygwin special)] on cygwinType "help", "copyright", "credits" or "license" for more information. >>> from xml import *>>> dir()['__built

[IronPython] 0.9.2 Module Search Path Error

2005-09-29 Thread Anthony Tarlano
IronPython 0.9.2 is not allowing module import from packages that were previously imported. See below where I could not import from "Synthesis" after importing it from "System.Speech" unless explicitly importing it from "System.Speech.Synthesis". Anthony IronPython 0.9.2 on .NET 2.0.50215.44 Copy

Re: [IronPython] RE: Numpy port

2005-08-31 Thread Anthony Tarlano
I was thinking about the name thing again and I really like: pythonet   ;-) (sorry if this brings an onslaught of new naming messages)On 8/31/05, Ken Manheimer <[EMAIL PROTECTED] > wrote:just incidentally:On 8/27/05, Thane < [EMAIL PROTECTED]> wrote:> [...]> I think that "numpy" is the import na

Re: [IronPython] An IronPython IDE Project?

2005-08-09 Thread Anthony Tarlano
hi all: Another more lightweight IDE option (i.e. no java!) and one that I would actually use is a nice lisp package for Emacs/XEmacs that integrates IronPython compilation and the features of an object browser, such as the feature from the bicyclerepairman package for CPython.. Just another thou

Re: [IronPython] Access to Enumeration Values

2005-08-08 Thread Anthony Tarlano
ng[] args) { > Console.WriteLine(SocketOptionName.Broadcast); > } > } > } > > Does that answer the question? > > Martin > > -----Original Message- > From: [EMAIL PROTECTED] > [mailto:[EMAIL PROTECTED] On Behalf Of > Anthony Tarlano > Sent: Thur

Re: [IronPython] Python Lib Socket

2005-08-08 Thread Anthony Tarlano
to allow him the opportunity to reply. I will keep you posted. Anthony On 8/7/05, Chu Kevin <[EMAIL PROTECTED]> wrote: > I suggest create project ".NET port of Python standard lib" in > gotdotnet workspace > and I can join this work. > > 2005/8/6, Anthony Tarlano

Re: [IronPython] function thread target delegates

2005-08-06 Thread Anthony Tarlano
Keith, Thanks for your insight and reply. I found that it works if instead of using generics, I just wrapped the function as an ParameterizedThreadStart instance.. Take a look: Anthony IronPython 0.9.2036 on .NET 2.0.50215.44 Copyright (c) Microsoft Corporation. All rights reserved. >>> from S

[IronPython] function thread target delegates

2005-08-06 Thread Anthony Tarlano
I have a quick question regarding threads and IronPython. I need to code a python function having an input parameter to be the target delegate of a newly created thread using the ThreadStart method to pass the parameter. Here an example of the code that fails: IronPython 0.9.2036 on .NET 2.0.50

Re: [IronPython] Python Lib Socket

2005-08-06 Thread Anthony Tarlano
Kevin, Incomplete, would be the answer to your question. Currently, IronPython doesn't come with batteries include (python std libraries). I am actively thinking about creating an effort to complete this part of the puzzel and port all the python standard library interfaces to .NET with community

[IronPython] Access to Enumeration Values

2005-08-04 Thread Anthony Tarlano
the namespace System.Net.Sockets contains an enumation type named SocketOptionName for retrieving Socket options. It's definition is: public enum SocketOptionName { // Fields AcceptConnection = 2, AddMembership = 12, AddSourceMembership = 15, BlockSource = 0x11,

[IronPython] Pondering Monad/MSH and IronPython

2005-07-25 Thread Anthony Tarlano
Hi, I just downloaded "Monad" the MSH shell, watched Jeffery Snover's vision behind Monad and played with the app. After looking at the MSH shell briefly, the big question that popped into my head is what's the big picture game plan for IronPython and Monad? Both IronPython and MSH have interp

Re: [IronPython] ReflectedPackage issue

2005-07-01 Thread Anthony Tarlano
Great job! this is why open source succeeds... Let's hope that the ironPython team accepts your efforts. AnthonyOn 7/1/05, Jonathan Jacobs <[EMAIL PROTECTED]> wrote: Hi,I'd like to start off by saying that I'm not sure whether this is thepreferred place to post patches. If not, you may want to s

Re: [IronPython] Classes don't have doc strings

2005-05-19 Thread Anthony Tarlano
John, It's a known bug. You should think about adding your comment to the existing __doc__ bug over at GDN.  http://gotdotnet.com/workspaces/bugtracker/bugdetails.aspx?id=ad7acff7-ab1e-4bcb-99c0-57ac5a3a9742&bugid=9c2b6240-5c85-4155-8ecb-d072e7ad899e   Anthony On 5/19/05, John Doty <[EMAIL

Re: [IronPython] StringIO???

2005-05-18 Thread Anthony Tarlano
nPython.Objects.Importer.Import(PythonModule mod, String fullName, Listfrom)at IronPython.Objects.Ops.Import(PythonModule mod, String fullName)at input_0.Run(Frame frame)at IronPython.Hosting.PythonEngine.DoOneInteractive(Frame topFrame)at IronPython.Hosting.PythonEngine.RunInteractive ()>>> IP-

Re: [IronPython] StringIO???

2005-05-18 Thread Anthony Tarlano
et)    at IronPython.Objects.Importer.Import(PythonModule mod, String fullName, List  from)    at IronPython.Objects.Ops.Import(PythonModule mod, String fullName)    at input_0.Run(Frame frame)    at IronPython.Hosting.PythonEngine.DoOneInteractive(Frame topFrame)    at IronPython.Hosting.PythonEngine.RunInteractive() >>

[IronPython] StringIO???

2005-05-17 Thread Anthony Tarlano
Martin, I think that while fixing the 'assemblies in the same directory' bug, a new critter may have been introduced... StringIO used to work in IP-0.7.4, now using IP.0.7.5 I see the following trackback.. IronPython 0.7.5 on .NET 2.0.40607.42 Copyright (c) Microsoft Corporation. All rights res

Re: [IronPython] IronPython and standard Python libraries

2005-05-17 Thread Anthony Tarlano
Martin, Great post! Keep up the good work and don't forget to also have some _fun_ in Hawaii and Prague (great beer and since I live in Munich you can take my word for it ;-) Safe trip! Anthony On 5/17/05, Martin Maly <[EMAIL PROTECTED]> wrote: Hello,After reading Anthony's email on CPython's

Re: [IronPython] word Automation

2005-05-15 Thread Anthony Tarlano
Hello, I finally found sometime this weekend to check out IronPython's support for the Office2003 PIA's. Final impression is that somethings work, but most didn't. Here's a link to the bug I opened showing a small amount of interaction with the word application class via the console. AnthonyOn

Re: [IronPython] Word Automation

2005-05-10 Thread Anthony Tarlano
Yann, I found the information that I needed concorning the Office 2003 primary interop assemblies (PIAs) at http://msdn.microsoft.com/library/default.asp?url="" I have not had a chance to look into the PIA deeper, but I will try to get to is as soon as I find sometime.. Regards, AnthonyOn 5/9/

Re: [IronPython] Re: IronPython 0.7.4 released

2005-05-09 Thread Anthony Tarlano
TED]> wrote: Did an answer to this ever come (perhaps privately to you)?At 06:54 AM 5/4/2005, Anthony Tarlano wrote>Great job geeting 0.7.4 out the door!!>>Thanks for the heads up that it's possible to just grab the Lib >directory from Python-2.3.5 and replace the IPython/bin/Lib di

Re: [IronPython] word Automation

2005-05-09 Thread Anthony Tarlano
That should have read "you should not just translate the..." AnthonyOn 5/9/05, Anthony Tarlano <[EMAIL PROTECTED]> wrote: Hi, Yes it should work, but I don't have the correct assembly to be able to test it. You should remember that you should just translate the code

Re: [IronPython] word Automation

2005-05-09 Thread Anthony Tarlano
Hi, Yes it should work, but I don't have the correct assembly to be able to test it. You should remember that you should just translate the code from VB to IronPython. IronPython is a dynamically bound language, so you don't have to do things like declaring the local variable oWord (i.e. 'oWord =

Re: [IronPython] 0.7.4 doesn't allow more than one IronPythonConsole...

2005-05-04 Thread Anthony Tarlano
5, Timothy Fitz <[EMAIL PROTECTED]> wrote: On 5/4/05, Anthony Tarlano <[EMAIL PROTECTED]> wrote:> I filed a bug as usual, but maybe you should consider a 0.7.4.1 release> fixing this and the *[exe,pdb] file pollution problem asapIs the exe "file pollution problem" real

[IronPython] 0.7.4 doesn't allow more than one IronPythonConsole...

2005-05-04 Thread Anthony Tarlano
I filed a bug as usual, but maybe you should consider a 0.7.4.1 release fixing this and the *[exe,pdb] file pollution problem asap Keep up the good work!Anthony___ users-ironpython.com mailing list users-ironpython.com@lists.ironpython.com http://lists

Re: [IronPython] Re: IronPython 0.7.4 released

2005-05-04 Thread Anthony Tarlano
Great job geeting 0.7.4 out the door!! Thanks for the heads up that it's possible to just grab the Lib directory from Python-2.3.5 and replace the IPython/bin/Lib directory to get the ball rolling... One big question comes to mind now that I have all those nice stdlib .py files.. Do you intend to

[IronPython] Developing a System.Web.Service.WebService

2005-05-03 Thread Anthony Tarlano
Hi all, I was wondering if anyone has successfully created a WebService in IronPython and deployed it using ASP.NET? If not I will make it a point to post my results after accomplishing the task.. ;-) One piece of information I need in order to begin is how I set the namespace for a package? I.

Re: [IronPython] To Compile or Not to compile, that's the question

2005-04-16 Thread Anthony Tarlano
Keith, I don't think we are naming a compiler, but naming an interpreter. I am a long time Python (CPython) and Jython user and during development. I never use an Ide other then Xemacs and in the shell window I use the interpreter as a matter of productivity. So, given this background informati

[IronPython] Working with System.Data.DataColumn[]

2005-04-15 Thread Anthony Tarlano
To all: Is there anyway to add a System.Data.DataColumn instance to the PrimaryKey System.Data.DataColumn[] in IronPython?? Please see following code Thanks in advance.. Anthony IronPython 0.7.2 on .NET 2.0.40607.42 Copyright (c) Microsoft Corporation. All rights reserved. >>> import sys >

Re: [IronPython] To Compile or Not to compile, that's the question

2005-04-15 Thread Anthony Tarlano
quot;Python for .NET" -- who's going to come into the community and be able > to tell the difference? There's also > http://www.zope.org/Members/Brian/PythonNet/, which Brian could tell you > about. > > I think the name should be unique -- and short. > > -Or

Re: [IronPython] To Compile or Not to compile, that's the question

2005-04-14 Thread Anthony Tarlano
I still think the name python.net (i.e. python.net.exe) has not been taken. ActiveState's 2001 python for .net, http://www.activestate.com/Corporate/Initiatives/NET/Research.html, should not preempt the use of the name, since they surely aren't doing anything with it and only used the name for th

Re: [IronPython] IronPython, please?

2005-04-10 Thread Anthony Tarlano
Reginald, I second your thoughts.. Let's just name the IronPython(console) python.net.exe and be done with the madness ;-) Anthony On Apr 9, 2005 9:27 PM, R.R. Sprinkhuizen <[EMAIL PROTECTED]> wrote: > People, > > I know we all have our preference of what to call IronPython(Console) in the > f

[IronPython] Converting an script to exe or dll

2005-04-06 Thread Anthony Tarlano
Hello, Does anyone know how I can use IronPython to convert a .py script to a PE (exe or dll) assembly? Thanks, Anthony ___ users-ironpython.com mailing list users-ironpython.com@lists.ironpython.com http://lists.ironpython.com/listinfo.cgi/users-ironp

Re: [IronPython] Renaming IronPythonConsole

2005-04-04 Thread Anthony Tarlano
Another thought is just name it python.net and be done with this iron stuff.. Anthony On Apr 3, 2005 10:26 AM, R.R. Sprinkhuizen <[EMAIL PROTECTED]> wrote: > For the record, I changed my "whining" strategy just yesterday by getting > and installing 2.0-beta. I guess if I like IronPython (which is

Re: [IronPython] Renaming IronPythonConsole

2005-04-01 Thread Anthony Tarlano
I take back my vote for ipython and throw my entire one vote behind nython... "Programming in Nython" ... Anthony On Apr 1, 2005 6:17 PM, Terry L. Triplett <[EMAIL PROTECTED]> wrote: > On Friday 01 April 2005 05:13, [EMAIL PROTECTED] wrote: > > Jim Hugunin wrote: > > > Thanks for the feedback o

Re: [IronPython] Renaming IronPythonConsole

2005-03-31 Thread Anthony Tarlano
Jim, Sorry I didn't get my vote in before you close the ballot.. But I do what to register my vote for ipython Btw, that's what I have named the console already and it is natural for me to continue to type python with just a leading i Give it a try, I think you may like it.. Anthony On T