Revert change, func_name of lambda's is back to <lambda>.
diff --git a/Lib/test/test_repr.py b/Lib/test/test_repr.py
index a139473..4ded484 100644
--- a/Lib/test/test_repr.py
+++ b/Lib/test/test_repr.py
@@ -123,7 +123,7 @@
 
     def test_lambda(self):
         self.failUnless(repr(lambda x: x).startswith(
-            "<function lambda"))
+            "<function <lambda"))
         # XXX anonymous functions?  see func_repr
 
     def test_builtin_function(self):