From f25092f29a4d00f46c41acb6f909eab18c62d72b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jure=20=C5=A0orn?= Date: Sat, 14 Mar 2020 23:15:59 +0100 Subject: [PATCH] Tuple --- README.md | 2 +- index.html | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 10b5438..7f5d4a4 100644 --- a/README.md +++ b/README.md @@ -162,7 +162,7 @@ Point(x=1, y=2) 1 >>> getattr(p, 'y') 2 ->>> p._fields +>>> Point._fields ('x', 'y') ``` diff --git a/index.html b/index.html index 08c4ca8..5950cc7 100644 --- a/index.html +++ b/index.html @@ -327,7 +327,7 @@ Point(x=1, y=2 1 >>> getattr(p, 'y') 2 ->>> p._fields +>>> Point._fields ('x', 'y')