Bug #2565: The repr() of type objects now calls them 'class',
not 'type' - whether they are builtin types or not.
diff --git a/Lib/test/test_genexps.py b/Lib/test/test_genexps.py
index 6c60d02..46f7ab8 100644
--- a/Lib/test/test_genexps.py
+++ b/Lib/test/test_genexps.py
@@ -27,7 +27,7 @@
 
     >>> g = (i*i for i in range(4))
     >>> type(g)
-    <type 'generator'>
+    <class 'generator'>
     >>> list(g)
     [0, 1, 4, 9]