[issue26056] installation failure

2016-01-09 Thread Amandeep Singh Sohal
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

[issue12525] Unable to run a thread

2011-07-10 Thread Amandeep Singh
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

[issue12525] Unable to run a thread

2011-07-10 Thread Amandeep Singh
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

[issue12525] Unable to run a thread

2011-07-10 Thread Amandeep Singh
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