summaryrefslogtreecommitdiff
path: root/Include/structseq.h
diff options
context:
space:
mode:
authorSkip Montanaro <skip@pobox.com>2007-08-24 21:11:00 +0000
committerSkip Montanaro <skip@pobox.com>2007-08-24 21:11:00 +0000
commit41cfce9c2bcfe6153ee2b42e05ff1d782d1d3b91 (patch)
treed29c82adfa534b7f7689a2004222858803febc65 /Include/structseq.h
parentb382b84abec70ca86683972ac1b0170d93ba7ea4 (diff)
downloadcpython-git-41cfce9c2bcfe6153ee2b42e05ff1d782d1d3b91.tar.gz
Remove PyArg_Parse usage from time module. (An extra set of eyeballs on
this would be nice. I'm a little rusty.)
Diffstat (limited to 'Include/structseq.h')
-rw-r--r--Include/structseq.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/Include/structseq.h b/Include/structseq.h
index e662916fe4..a482bd8491 100644
--- a/Include/structseq.h
+++ b/Include/structseq.h
@@ -35,6 +35,10 @@ typedef struct {
#define PyStructSequence_SET_ITEM(op, i, v) \
(((PyStructSequence *)(op))->ob_item[i] = v)
+#define PyStructSequence_GET_ITEM(op, i) \
+ (((PyStructSequence *)(op))->ob_item[i])
+
+
#ifdef __cplusplus
}
#endif