summaryrefslogtreecommitdiffstats
path: root/Objects/structseq.c
diff options
context:
space:
mode:
authorRaymond Hettinger <python@rcn.com>2008-01-15 03:02:37 (GMT)
committerRaymond Hettinger <python@rcn.com>2008-01-15 03:02:37 (GMT)
commitc216df9288d03d43462c87dd9ee2ae3c340376a5 (patch)
tree5ab5cd43a8f75d4dac2f6777e09315b5e78eb453 /Objects/structseq.c
parenta01ed0305885d57731c0be69c7c0b10200e48535 (diff)
downloadcpython-c216df9288d03d43462c87dd9ee2ae3c340376a5.zip
cpython-c216df9288d03d43462c87dd9ee2ae3c340376a5.tar.gz
cpython-c216df9288d03d43462c87dd9ee2ae3c340376a5.tar.bz2
Issue 1820: structseq objects did not work with the % formatting operator or isinstance(t, tuple).
Orignal patch (without tests) by Leif Walsh.
Diffstat (limited to 'Objects/structseq.c')
-rw-r--r--Objects/structseq.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/Objects/structseq.c b/Objects/structseq.c
index b6126ba..6b1b590 100644
--- a/Objects/structseq.c
+++ b/Objects/structseq.c
@@ -460,7 +460,7 @@ static PyTypeObject _struct_sequence_template = {
structseq_methods, /* tp_methods */
NULL, /* tp_members */
0, /* tp_getset */
- 0, /* tp_base */
+ &PyTuple_Type, /* tp_base */
0, /* tp_dict */
0, /* tp_descr_get */
0, /* tp_descr_set */