Supply a reduce method for pickling.
diff --git a/Lib/collections.py b/Lib/collections.py
index f26c73e..89a1588 100644
--- a/Lib/collections.py
+++ b/Lib/collections.py
@@ -539,6 +539,9 @@
         'Like dict.copy() but returns a Counter instance instead of a dict.'
         return Counter(self)
 
+    def __reduce__(self):
+        return self.__class__, (dict(self),)
+
     def __delitem__(self, elem):
         'Like dict.__delitem__() but does not raise KeyError for missing values.'
         if elem in self: