Fixed 2.x-ism.
diff --git a/Lib/test/support.py b/Lib/test/support.py
index 09e8574..bdc6164 100644
--- a/Lib/test/support.py
+++ b/Lib/test/support.py
@@ -804,8 +804,8 @@
     # Returns a tuple ({platform_name: run_me}, default_value)
     if not guards:
         return ({'cpython': True}, False)
-    is_true = guards.values()[0]
-    assert guards.values() == [is_true] * len(guards)   # all True or all False
+    is_true = list(guards.values())[0]
+    assert list(guards.values()) == [is_true] * len(guards)   # all True or all False
     return (guards, not is_true)
 
 # Use the following check to guard CPython's implementation-specific tests --