New submission from Amandeep Singh Sohal:
when i trying to install the python 3.5.1. It gives a error "window 7 service
pack 1 and all applicable updates are required to install python 3.5.1". here i
am also uploading the log file of installation.
--
components: Installa
Amandeep Singh added the comment:
May be this is a behavior change, that a thread can not be run again. I think
documentation needs to be changed in this case.
--
___
Python tracker
<http://bugs.python.org/issue12
Amandeep Singh added the comment:
I am also not able to call run() twice. I have python 2.5.2 with me, in which I
am able to call run method twice and calling run after start is working.
--
status: pending -> open
___
Python tracker
&l
New submission from Amandeep Singh :
I created a thread, and started it and then called its run method. It raised an
AttributeError exception
from threading import Thread
def func():
print 'abc'
t = Thread(None, func)
t.start()
t.run()
here t.run() raises an