mirror of
https://github.com/python/cpython.git
synced 2025-11-13 07:26:31 +00:00
Issue #10359: Remove useless comma, invalid in ISO C
This commit is contained in:
parent
9f0b51e4e3
commit
132ef6cca3
1 changed files with 2 additions and 2 deletions
|
|
@ -71,7 +71,7 @@ enum opcode {
|
||||||
|
|
||||||
/* Protocol 3 (Python 3.x) */
|
/* Protocol 3 (Python 3.x) */
|
||||||
BINBYTES = 'B',
|
BINBYTES = 'B',
|
||||||
SHORT_BINBYTES = 'C',
|
SHORT_BINBYTES = 'C'
|
||||||
};
|
};
|
||||||
|
|
||||||
/* These aren't opcodes -- they're ways to pickle bools before protocol 2
|
/* These aren't opcodes -- they're ways to pickle bools before protocol 2
|
||||||
|
|
@ -103,7 +103,7 @@ enum {
|
||||||
MAX_WRITE_BUF_SIZE = 64 * 1024,
|
MAX_WRITE_BUF_SIZE = 64 * 1024,
|
||||||
|
|
||||||
/* Prefetch size when unpickling (disabled on unpeekable streams) */
|
/* Prefetch size when unpickling (disabled on unpeekable streams) */
|
||||||
PREFETCH = 8192 * 16,
|
PREFETCH = 8192 * 16
|
||||||
};
|
};
|
||||||
|
|
||||||
/* Exception classes for pickle. These should override the ones defined in
|
/* Exception classes for pickle. These should override the ones defined in
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue