commit | a0d1d96771f41e24c1c369ef8b10e5a8f7d6c36a | [log] [tgz] |
---|---|---|
author | Raymond Hettinger <python@rcn.com> | Mon Mar 21 17:50:28 2011 -0700 |
committer | Raymond Hettinger <python@rcn.com> | Mon Mar 21 17:50:28 2011 -0700 |
tree | d8afb23aaed3e15c3c8fd1b45002d64d1a1f86b1 | |
parent | 779a5b0b3aac6a5dcd8473f770e1573a48b51f7d [diff] |
Issue #11628: cmp_to_key should use __slots__.
diff --git a/Lib/functools.py b/Lib/functools.py index 03de69a..e92a2fc 100644 --- a/Lib/functools.py +++ b/Lib/functools.py
@@ -96,6 +96,7 @@ def cmp_to_key(mycmp): """Convert a cmp= function into a key= function""" class K(object): + __slots__ = ['obj'] def __init__(self, obj, *args): self.obj = obj def __lt__(self, other):