Jean-Michel Fauth <[EMAIL PROTECTED]> added the comment:
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'
_______________________________________
Python tracker <[EMAIL PROTECTED]>
<http://bugs.python.org/issue3905>
_______________________________________
_______________________________________________
Python-bugs-list mailing list
Unsubscribe:
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com