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 skrah
Recipients janssen, ronaldoussoren, skrah, vstinner, yig
Date 2010-06-22.09:56:15
SpamBayes Score 0.0075601405
Marked as misclassified No
Message-id <1277200577.7.0.504725041109.issue8621@psf.upfronthosting.co.za>
In-reply-to
Content
Bill, could you try to add this to the tests and see if they
also fail when you run them standalone?


Index: Lib/test/test_uuid.py
===================================================================
--- Lib/test/test_uuid.py       (revision 82109)
+++ Lib/test/test_uuid.py       (working copy)
@@ -479,4 +479,7 @@
     test_support.run_unittest(TestUUID)
 
 if __name__ == '__main__':
+    import threading
+    t = threading.Thread(target=lambda: None)
+    t.start()
     test_main()
History
Date User Action Args
2010-06-22 09:56:17skrahsetrecipients: + skrah, ronaldoussoren, janssen, vstinner, yig
2010-06-22 09:56:17skrahsetmessageid: <1277200577.7.0.504725041109.issue8621@psf.upfronthosting.co.za>
2010-06-22 09:56:16skrahlinkissue8621 messages
2010-06-22 09:56:15skrahcreate