2014-04-13 07:17:04 +00:00
|
|
|
try:
|
2017-02-15 15:11:16 +00:00
|
|
|
try:
|
|
|
|
from ucollections import namedtuple
|
2018-02-03 12:50:00 +00:00
|
|
|
except ImportError:
|
|
|
|
from collections import namedtuple
|
2014-04-13 07:17:04 +00:00
|
|
|
except ImportError:
|
2017-02-15 15:11:16 +00:00
|
|
|
print("SKIP")
|
2017-06-10 17:03:01 +00:00
|
|
|
raise SystemExit
|
2014-02-27 20:22:04 +00:00
|
|
|
|
2014-12-20 15:37:40 +00:00
|
|
|
T = namedtuple("Tup", ["foo", "bar"])
|
2014-02-27 20:22:04 +00:00
|
|
|
# CPython prints fully qualified name, what we don't bother to do so far
|
|
|
|
#print(T)
|
2014-12-20 15:38:40 +00:00
|
|
|
for t in T(1, 2), T(bar=1, foo=2):
|
|
|
|
print(t)
|
|
|
|
print(t[0], t[1])
|
|
|
|
print(t.foo, t.bar)
|
2014-02-27 20:22:04 +00:00
|
|
|
|
2014-12-20 15:38:40 +00:00
|
|
|
print(len(t))
|
|
|
|
print(bool(t))
|
|
|
|
print(t + t)
|
|
|
|
print(t * 3)
|
2014-02-27 20:49:47 +00:00
|
|
|
|
2014-12-20 15:38:40 +00:00
|
|
|
print([f for f in t])
|
2014-05-10 17:15:49 +00:00
|
|
|
|
2014-12-20 15:38:40 +00:00
|
|
|
print(isinstance(t, tuple))
|
2014-02-27 20:22:04 +00:00
|
|
|
|
2017-06-29 07:49:10 +00:00
|
|
|
# Create using positional and keyword args
|
|
|
|
print(T(3, bar=4))
|
|
|
|
|
2014-02-27 20:22:04 +00:00
|
|
|
try:
|
|
|
|
t[0] = 200
|
|
|
|
except TypeError:
|
|
|
|
print("TypeError")
|
|
|
|
try:
|
|
|
|
t.bar = 200
|
|
|
|
except AttributeError:
|
2014-12-20 15:37:40 +00:00
|
|
|
print("AttributeError")
|
2014-02-27 20:22:04 +00:00
|
|
|
|
|
|
|
try:
|
|
|
|
t = T(1)
|
|
|
|
except TypeError:
|
|
|
|
print("TypeError")
|
|
|
|
|
|
|
|
try:
|
|
|
|
t = T(1, 2, 3)
|
|
|
|
except TypeError:
|
|
|
|
print("TypeError")
|
|
|
|
|
2014-12-20 15:38:40 +00:00
|
|
|
try:
|
|
|
|
t = T(foo=1)
|
|
|
|
except TypeError:
|
|
|
|
print("TypeError")
|
|
|
|
|
|
|
|
try:
|
|
|
|
t = T(1, foo=1)
|
|
|
|
except TypeError:
|
|
|
|
print("TypeError")
|
|
|
|
|
2015-04-04 23:03:43 +00:00
|
|
|
# enough args, but kw is wrong
|
|
|
|
try:
|
|
|
|
t = T(1, baz=3)
|
|
|
|
except TypeError:
|
|
|
|
print("TypeError")
|
|
|
|
|
|
|
|
# bad argument for member spec
|
|
|
|
try:
|
|
|
|
namedtuple('T', 1)
|
|
|
|
except TypeError:
|
|
|
|
print("TypeError")
|
|
|
|
|
2014-12-20 15:37:40 +00:00
|
|
|
# Try single string
|
2015-04-04 23:03:43 +00:00
|
|
|
T3 = namedtuple("TupComma", "foo bar")
|
|
|
|
t = T3(1, 2)
|
|
|
|
print(t.foo, t.bar)
|
2014-12-20 15:37:40 +00:00
|
|
|
|
2016-05-22 17:28:04 +00:00
|
|
|
# Try tuple
|
|
|
|
T4 = namedtuple("TupTuple", ("foo", "bar"))
|
|
|
|
t = T4(1, 2)
|
|
|
|
print(t.foo, t.bar)
|
|
|
|
|
2017-05-29 07:08:14 +00:00
|
|
|
# Try single string with comma field separator
|
2014-12-20 15:37:40 +00:00
|
|
|
# Not implemented so far
|
|
|
|
#T2 = namedtuple("TupComma", "foo,bar")
|
|
|
|
#t = T2(1, 2)
|