Re: IronPython 1.0 released today!

2006-09-07 Thread Super Spinner
Congrats on reaching 1.0, Jim. BTW, here's a John Udell screencast of Jim demo'ing IronPython. Among other things, it shows IronPython integrating with Visual Studio, Monad, C#, VB.NET, and WPF. It's a great video. http://weblog.infoworld.com/udell/2006/08/30.html#a1515 -- http://mail.python.o

Re: IronPython 1.0 - Bugs or Features?

2006-09-06 Thread Super Spinner
Claudio Grondi wrote: > tjreedy wrote: > > "Claudio Grondi" <[EMAIL PROTECTED]> wrote in message > > news:[EMAIL PROTECTED] > > > >>I also erroneously assumed, that the first problem was detected during > >>parsing ... so, by the way: how can I distinguish an error raised while > >>parsing the cod

Re: How to organize Python files in a (relatively) big project

2005-10-19 Thread spinner
I have this problem myself, and as I am a recent Python convert my aproach may not be conventional - but as it is working for me I thought I would share. First off you need to split your code into logical objects. In my case I have an obvious client and server object, But within each I have indi

Re: Queue question

2005-10-16 Thread spinner
Ahh the penny has dropped at last. I am using the WingIDE and .not_empty is one of the properties it exposes with it's intellisense. As such its use is not documented. No problem. Using the exception would more accurate - I can see that. In my simple case the queue is a one to one link, into an

Queue question

2005-10-15 Thread spinner
- A two parter newbie question I am afraid. Am I right in thinking that using something like ... item = a_queue.get() print item will not print 'item' unless or until there is an item in the queue to retrieve. Effectively stalling the thread at the .