From c6c1d3c644b396f559ce78a117c107895580898e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jure=20=C5=A0orn?= Date: Sat, 14 Mar 2020 17:14:16 +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 ec9bc72..10b5438 100644 --- a/README.md +++ b/README.md @@ -162,7 +162,7 @@ Point(x=1, y=2) 1 >>> getattr(p, 'y') 2 ->>> p._fields # Or: Point._fields +>>> p._fields ('x', 'y') ``` diff --git a/index.html b/index.html index e74f1ab..08c4ca8 100644 --- a/index.html +++ b/index.html @@ -327,7 +327,7 @@ Point(x=1, y=2 1 >>> getattr(p, 'y') 2 ->>> p._fields # Or: Point._fields +>>> p._fields ('x', 'y')