diff --git a/README.md b/README.md index 676bf74..878a33b 100644 --- a/README.md +++ b/README.md @@ -1278,7 +1278,7 @@ class MyAbcSequence(collections.abc.Sequence): +------------+----------+------------+----------+--------------+ ``` -* **Other useful ABCs that automatically generate missing methods are: MutableSequence, Set, MutableSet, Mapping and MutableMapping — `'.__abstractmethods__'`.** +* **Other ABCs that generate missing methods are: MutableSequence, Set, MutableSet, Mapping and MutableMapping. Required methods: `'.__abstractmethods__'`.** Enum diff --git a/index.html b/index.html index 3dacab2..4ad452d 100644 --- a/index.html +++ b/index.html @@ -1206,7 +1206,7 @@ lock = threading.RLock(); with lock: ...

#Enum

from enum import Enum, auto