Browse Source

Namedtuple

pull/9/head
Jure Šorn 6 years ago
parent
commit
9c67c4205f
1 changed files with 1 additions and 1 deletions
  1. 2
      README.md

2
README.md

@ -146,7 +146,7 @@ Point(x=1, y=2)
1 1
>>> getattr(p, 'y') >>> getattr(p, 'y')
2 2
>>> Point._fields # Or: p._fields
>>> p._fields # Or: Point._fields
('x', 'y') ('x', 'y')
``` ```

Loading…
Cancel
Save