Fix broken contextlib test from last checkin (I'd've sworn I tested that before checking it in. . .)
diff --git a/Lib/test/test_contextlib.py b/Lib/test/test_contextlib.py
index c23e428..1a70997 100644
--- a/Lib/test/test_contextlib.py
+++ b/Lib/test/test_contextlib.py
@@ -152,6 +152,8 @@
         def a():
             yield 1
         class b(object):
+            def __context__(self):
+                return self
             def __enter__(self):
                 return 2
             def __exit__(self, *exc_info):