give the threading API PEP 8 names
diff --git a/Lib/test/test_multiprocessing.py b/Lib/test/test_multiprocessing.py
index a67c296..d75fd20 100644
--- a/Lib/test/test_multiprocessing.py
+++ b/Lib/test/test_multiprocessing.py
@@ -632,7 +632,7 @@
         p.start()

 

         p = threading.Thread(target=self.f, args=(cond, sleeping, woken))

-        p.setDaemon(True)

+        p.set_daemon(True)

         p.start()

         

         # wait for both children to start sleeping

@@ -679,7 +679,7 @@
 

             t = threading.Thread(target=self.f,

                                  args=(cond, sleeping, woken, TIMEOUT1))

-            t.setDaemon(True)

+            t.set_daemon(True)

             t.start()

 

         # wait for them all to sleep

@@ -701,7 +701,7 @@
             p.start()

             

             t = threading.Thread(target=self.f, args=(cond, sleeping, woken))

-            t.setDaemon(True)

+            t.set_daemon(True)

             t.start()

             

         # wait for them to all sleep