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
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
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
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
-
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 .