mirror of
https://github.com/python/cpython.git
synced 2025-10-07 07:31:46 +00:00
Issue #2443: Added a new macro, Py_VA_COPY, which is equivalent to C99
va_copy, but available on all python platforms. Untabified a few unrelated files.
This commit is contained in:
parent
3a879e8a27
commit
f0f45142d5
13 changed files with 74 additions and 124 deletions
|
@ -775,10 +775,10 @@ static PyMappingMethods memory_as_mapping = {
|
|||
};
|
||||
|
||||
static PySequenceMethods memory_as_sequence = {
|
||||
0, /* sq_length */
|
||||
0, /* sq_concat */
|
||||
0, /* sq_repeat */
|
||||
(ssizeargfunc)memory_item, /* sq_item */
|
||||
0, /* sq_length */
|
||||
0, /* sq_concat */
|
||||
0, /* sq_repeat */
|
||||
(ssizeargfunc)memory_item, /* sq_item */
|
||||
};
|
||||
|
||||
/* Buffer methods */
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue