diff --git a/README.md b/README.md index 6523362..d286a6a 100644 --- a/README.md +++ b/README.md @@ -1274,7 +1274,7 @@ class MyAbcSequence(collections.abc.Sequence): +------------+----------+------------+----------+--------------+ ``` -* **Other useful ABCs that automatically generate missing methods are: MutableSequence, Set, MutableSet, Mapping and MutableMapping.** +* **Other useful ABCs that automatically generate missing methods are: MutableSequence, Set, MutableSet, Mapping and MutableMapping — `'.__abstractmethods__'`.** Enum diff --git a/index.html b/index.html index 2ceedb8..6bf148d 100644 --- a/index.html +++ b/index.html @@ -1200,7 +1200,7 @@ lock = threading.RLock(); with lock: ...

#Enum

from enum import Enum, auto