Remove PyArg_Parse usage from time module.  (An extra set of eyeballs on
this would be nice.  I'm a little rusty.)
diff --git a/Include/structseq.h b/Include/structseq.h
index e662916..a482bd8 100644
--- a/Include/structseq.h
+++ b/Include/structseq.h
@@ -35,6 +35,10 @@
 #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