L.S., I am a newcomer to WebWare and I would like to learn this framework. Is a book about this somewhere? It would be better for me to have a book to practice some example. I would apprciate any information.
Best regards,Nader On 6/20/06, [EMAIL PROTECTED]
<[EMAIL PROTECTED]> wrote:
Send Webwar
Nader Emami wrote:
> I am a newcomer to WebWare and I would like to learn this framework. Is
> a book about this somewhere? It would
> be better for me to have a book to practice some example.
I don't think there is a book on Webware, but there is a bunch of
helpful documentation around anyway.
T
Why not parse the python code fragments before executing them and insert a
check for a stop event in the beginning of each loop. It could even force a
loop counter of some type that would allow the main thread to force the
worker thread to stop processing through a stop event once a threshold has
On Wed, 21 Jun 2006 15:01:03 -0400< "Wheeler, Richard"
<[EMAIL PROTECTED]> wrote:
>Why not parse the python code fragments before executing them and insert a
>check for a stop event in the beginning of each loop. It could even force a
>loop counter of some type that would allow the main thread to
This is a good idea, but a lot of work. (It messes with my head
whenever I get into the parse tree stuff.)
Oliver
--
Wheeler, Richard wrote:
> Why not parse the python code fragments before executing them and insert a
> check for a stop event in the beginning of each loop. It could even fo
Wheeler, Richard wrote:
> Why not parse the python code fragments before executing them and insert a
> check for a stop event in the beginning of each loop. It could even force a
> loop counter of some type that would allow the main thread to force the
> worker thread to stop processing through a
Ian Bicking <[EMAIL PROTECTED]> writes:
> This recipe might be of use:
> http://aspn.activestate.com/ASPN/Cookbook/Python/Recipe/496746
>
> I don't believe it is threadsafe, but I'm not sure. I think it needs to
> run the code in the main thread, then puts an alarm in a subthread that
> interr