bpo-35491, multiprocessing: replace "RUN" with RUN (GH-11178)

diff --git a/Lib/multiprocessing/pool.py b/Lib/multiprocessing/pool.py
index cede9bb..1e26a9b 100644
--- a/Lib/multiprocessing/pool.py
+++ b/Lib/multiprocessing/pool.py
@@ -486,7 +486,7 @@
                 util.debug('result handler got EOFError/OSError -- exiting')
                 return
 
-            if thread._state != "RUN":
+            if thread._state != RUN:
                 assert thread._state == TERMINATE, "Thread not in TERMINATE"
                 util.debug('result handler found thread._state=TERMINATE')
                 break