mirror of
https://github.com/python/cpython.git
synced 2025-08-22 17:55:18 +00:00
Remove PyArg_Parse usage from time module. (An extra set of eyeballs on
this would be nice. I'm a little rusty.)
This commit is contained in:
parent
b382b84abe
commit
41cfce9c2b
2 changed files with 55 additions and 10 deletions
|
@ -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
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue