This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author jmfauth
Recipients amaury.forgeotdarc, benjamin.peterson, georg.brandl, jmfauth, trentm, twhitema
Date 2008-09-20.18:12:47
SpamBayes Score 0.00064935454
Marked as misclassified No
Message-id <1221934368.46.0.208501133507.issue3905@psf.upfronthosting.co.za>
In-reply-to
Content
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'
History
Date User Action Args
2008-09-20 18:12:48jmfauthsetrecipients: + jmfauth, georg.brandl, amaury.forgeotdarc, benjamin.peterson, trentm, twhitema
2008-09-20 18:12:48jmfauthsetmessageid: <1221934368.46.0.208501133507.issue3905@psf.upfronthosting.co.za>
2008-09-20 18:12:47jmfauthlinkissue3905 messages
2008-09-20 18:12:47jmfauthcreate