Message73468
Just for information and from an end user perspective.
I have tried to replace the socketserver.py from the original 3.0rc1
distribution by the socketserver.py as proposed by Benjamin Peterson
(r66520).
Script difference (line 568):
if self.daemon_threads:
t.daemon = True
t.start()
and
if self.daemon_threads:
t.set_daemon(True)
t.start()
Unfortunately, no luck, I'm still getting exactly the same error
messages, the msg box and the raised AttributeError:
AttributeError: 'Thread' object has no attribute 'set_daemon' |
|
Date |
User |
Action |
Args |
2008-09-20 18:12:48 | jmfauth | set | recipients:
+ jmfauth, georg.brandl, amaury.forgeotdarc, benjamin.peterson, trentm, twhitema |
2008-09-20 18:12:48 | jmfauth | set | messageid: <1221934368.46.0.208501133507.issue3905@psf.upfronthosting.co.za> |
2008-09-20 18:12:47 | jmfauth | link | issue3905 messages |
2008-09-20 18:12:47 | jmfauth | create | |
|