On 14/06/2019 10:32, INJAMUL HOQUE wrote:
...nothing. I'm afraid your email had no content when it reached us.
If you included a screen shot, I'm afraid it was automatically removed
before it reached us.
--
Rhodri James *-* Kynesim Ltd
--
https://mail.python.org/mailman/listinfo/python-list
On Mon, Jun 17, 2019 at 5:03 AM INJAMUL HOQUE wrote:
>
>
Reading problem...
> --
> https://mail.python.org/mailman/listinfo/python-list
--
https://mail.python.org/mailman/listinfo/python-list
--
https://mail.python.org/mailman/listinfo/python-list
Hi Kent,
that's exactly the solution for my problem. Thanks a lot!
Martin
--
http://mail.python.org/mailman/listinfo/python-list
peleme wrote:
> The threads which arrives to the s function should wait for each other
> until the last one. So A, B, and C executes the last function
> 'together', while D executes it seperate.
> I only know that three threads have to be in synch.
Take a look at the Barrier patter in The Little B
Hi,
Here is a code example to visualize my problem.
--
import thread
import threading
from time import sleep
def a():
print "exec a"
sleep(1)
def b():
print "exec b"
sleep(4)
def c()