diff options
author | Aaron Hall, MBA <aaronchall@yahoo.com> | 2017-06-06 15:34:57 -0400 |
---|---|---|
committer | Serhiy Storchaka <storchaka@gmail.com> | 2017-06-06 22:34:57 +0300 |
commit | ff48739ed0a3f366c4d56d3c86a37cbdeec600de (patch) | |
tree | 8fb90607c6db799e328cd8a9a52e6905f29b876e /Lib/abc.py | |
parent | ec19ba210bba2c3097232a05d7dbe093beb5f833 (diff) | |
download | cpython-git-ff48739ed0a3f366c4d56d3c86a37cbdeec600de.tar.gz |
bpo-30463: Add an empty __slots__ to abc.ABC.
Diffstat (limited to 'Lib/abc.py')
-rw-r--r-- | Lib/abc.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/abc.py b/Lib/abc.py index 43a34a0bbd..d13a0de89b 100644 --- a/Lib/abc.py +++ b/Lib/abc.py @@ -235,7 +235,7 @@ class ABC(metaclass=ABCMeta): """Helper class that provides a standard way to create an ABC using inheritance. """ - pass + __slots__ = () def get_cache_token(): |