From fd40b7792cfeca0b076e89a2ef75f4f7c5223beb Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jure=20=C5=A0orn?= Date: Mon, 5 Aug 2019 06:41:48 +0200 Subject: [PATCH] Sequence --- README.md | 2 +- index.html | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) 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