Tighten-up the docs for Counter().
diff --git a/Lib/test/test_collections.py b/Lib/test/test_collections.py
index 47b093e..274f531 100644
--- a/Lib/test/test_collections.py
+++ b/Lib/test/test_collections.py
@@ -448,6 +448,11 @@
         self.assertEqual(dict(Counter(s)), dict(Counter(s).items()))
         self.assertEqual(set(Counter(s)), set(s))
 
+    def test_invariant_for_the_in_operator(self):
+        c = Counter(a=10, b=-2, c=0)
+        for elem in c:
+            self.assert_(elem in c)
+
     def test_multiset_operations(self):
         # Verify that adding a zero counter will strip zeros and negatives
         c = Counter(a=10, b=-2, c=0) + Counter()