commit | b1d867f14965e2369d31a3fcdab5bca34b4d81b4 | [log] [tgz] |
---|---|---|
author | Martin Panter <vadmium+py@gmail.com> | Thu May 26 05:28:50 2016 +0000 |
committer | Martin Panter <vadmium+py@gmail.com> | Thu May 26 05:28:50 2016 +0000 |
tree | e12a80fb726447f7e1c09839aae24fd9277258ce | |
parent | 5db0b3396e664affee09c0cb2094fdafc94acd94 [diff] [blame] |
Issue #27076: Doc, comment and test function name spelling fixes Most fixes to Doc/ and Lib/ directories by Ville Skyttä.
diff --git a/Lib/collections.py b/Lib/collections.py index 7ecfd46..f2ad972 100644 --- a/Lib/collections.py +++ b/Lib/collections.py
@@ -314,7 +314,7 @@ >>> x, y = p # unpack like a regular tuple >>> x, y (11, 22) - >>> p.x + p.y # fields also accessable by name + >>> p.x + p.y # fields also accessible by name 33 >>> d = p._asdict() # convert to a dictionary >>> d['x']