We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 265500c commit 8f6ef8dCopy full SHA for 8f6ef8d
1 file changed
tests/basics/namedtuple1.py
@@ -24,6 +24,9 @@
24
25
print(isinstance(t, tuple))
26
27
+# Create using positional and keyword args
28
+print(T(3, bar=4))
29
+
30
try:
31
t[0] = 200
32
except TypeError:
0 commit comments