From 41cfce9c2bcfe6153ee2b42e05ff1d782d1d3b91 Mon Sep 17 00:00:00 2001 From: Skip Montanaro Date: Fri, 24 Aug 2007 21:11:00 +0000 Subject: Remove PyArg_Parse usage from time module. (An extra set of eyeballs on this would be nice. I'm a little rusty.) --- Include/structseq.h | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'Include/structseq.h') 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 -- cgit v1.2.1