[Python-checkins] cpython: Issue #11333: Add __slots__ to the collections ABCs.

raymond.hettinger python-checkins at python.org
Tue Mar 22 19:46:34 CET 2011


http://hg.python.org/cpython/rev/d50a71994f51
changeset:   68834:d50a71994f51
user:        Raymond Hettinger <python at rcn.com>
date:        Tue Mar 22 11:46:25 2011 -0700
summary:
  Issue #11333: Add __slots__ to the collections ABCs.

files:
  Lib/collections/abc.py
  Misc/NEWS

diff --git a/Lib/collections/abc.py b/Lib/collections/abc.py
--- a/Lib/collections/abc.py
+++ b/Lib/collections/abc.py
@@ -46,6 +46,8 @@
 
 class Hashable(metaclass=ABCMeta):
 
+    __slots__ = ()
+
     @abstractmethod
     def __hash__(self):
         return 0
@@ -63,6 +65,8 @@
 
 class Iterable(metaclass=ABCMeta):
 
+    __slots__ = ()
+
     @abstractmethod
     def __iter__(self):
         while False:
@@ -78,6 +82,8 @@
 
 class Iterator(Iterable):
 
+    __slots__ = ()
+
     @abstractmethod
     def __next__(self):
         raise StopIteration
@@ -109,6 +115,8 @@
 
 class Sized(metaclass=ABCMeta):
 
+    __slots__ = ()
+
     @abstractmethod
     def __len__(self):
         return 0
@@ -123,6 +131,8 @@
 
 class Container(metaclass=ABCMeta):
 
+    __slots__ = ()
+
     @abstractmethod
     def __contains__(self, x):
         return False
@@ -137,6 +147,8 @@
 
 class Callable(metaclass=ABCMeta):
 
+    __slots__ = ()
+
     @abstractmethod
     def __call__(self, *args, **kwds):
         return False
@@ -164,6 +176,8 @@
     then the other operations will automatically follow suit.
     """
 
+    __slots__ = ()
+
     def __le__(self, other):
         if not isinstance(other, Set):
             return NotImplemented
@@ -275,6 +289,8 @@
 
 class MutableSet(Set):
 
+    __slots__ = ()
+
     @abstractmethod
     def add(self, value):
         """Add an element."""
@@ -348,6 +364,8 @@
 
 class Mapping(Sized, Iterable, Container):
 
+    __slots__ = ()
+
     @abstractmethod
     def __getitem__(self, key):
         raise KeyError
@@ -451,6 +469,8 @@
 
 class MutableMapping(Mapping):
 
+    __slots__ = ()
+
     @abstractmethod
     def __setitem__(self, key, value):
         raise KeyError
@@ -530,6 +550,8 @@
     __getitem__, and __len__.
     """
 
+    __slots__ = ()
+
     @abstractmethod
     def __getitem__(self, index):
         raise IndexError
@@ -575,12 +597,16 @@
     XXX Should add all their methods.
     """
 
+    __slots__ = ()
+
 ByteString.register(bytes)
 ByteString.register(bytearray)
 
 
 class MutableSequence(Sequence):
 
+    __slots__ = ()
+
     @abstractmethod
     def __setitem__(self, index, value):
         raise IndexError
diff --git a/Misc/NEWS b/Misc/NEWS
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -84,6 +84,8 @@
 - Issue #11371: Mark getopt error messages as localizable.  Patch by Filip
   Gruszczyński.
 
+- Issue #11333: Add __slots__ to collections ABCs.
+
 - Issue #11628: cmp_to_key generated class should use __slots__
 
 - Issue #5537: Fix time2isoz() and time2netscape() functions of

-- 
Repository URL: http://hg.python.org/cpython


More information about the Python-checkins mailing list