py: Use sequence of strings for named tuple initialization

- remove single string initialization style
- take list of strings instead
- store list in the type for fast lookup
This commit is contained in:
stijn
2014-12-20 16:37:40 +01:00
committed by Paul Sokolovsky
parent 8422cac088
commit 12340147b0
5 changed files with 32 additions and 82 deletions

View File

@@ -3,7 +3,7 @@ try:
except ImportError:
from _collections import namedtuple
T = namedtuple("Tup", "foo bar")
T = namedtuple("Tup", ["foo", "bar"])
# CPython prints fully qualified name, what we don't bother to do so far
#print(T)
t = T(1, 2)
@@ -27,7 +27,7 @@ except TypeError:
try:
t.bar = 200
except AttributeError:
print("AttribiteError")
print("AttributeError")
try:
t = T(1)
@@ -39,13 +39,12 @@ try:
except TypeError:
print("TypeError")
# Try comma field separator
T2 = namedtuple("TupComma", "foo,bar")
t = T2(1, 2)
print(t)
print(t.foo, t.bar)
# Try list of fields
# Try single string
# Not implemented so far
#T3 = namedtuple("TupComma", ["foo", "bar"])
#T3 = namedtuple("TupComma", "foo bar")
#t = T3(1, 2)
# Try single string with comma field seperator
# Not implemented so far
#T2 = namedtuple("TupComma", "foo,bar")
#t = T2(1, 2)