summaryrefslogtreecommitdiffstats
path: root/Modules
diff options
context:
space:
mode:
authorVictor Stinner <victor.stinner@haypocalc.com>2010-11-09 09:39:41 (GMT)
committerVictor Stinner <victor.stinner@haypocalc.com>2010-11-09 09:39:41 (GMT)
commit132ef6cca3b52c1cbc09f0b5476254089e1a8bf5 (patch)
tree68db186bb490ee70eb6de7fe1893dbd3dbea1bf6 /Modules
parent9f0b51e4e319f5950d89bb5055bb947712ff953d (diff)
downloadcpython-132ef6cca3b52c1cbc09f0b5476254089e1a8bf5.zip
cpython-132ef6cca3b52c1cbc09f0b5476254089e1a8bf5.tar.gz
cpython-132ef6cca3b52c1cbc09f0b5476254089e1a8bf5.tar.bz2
Issue #10359: Remove useless comma, invalid in ISO C
Diffstat (limited to 'Modules')
-rw-r--r--Modules/_pickle.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/Modules/_pickle.c b/Modules/_pickle.c
index e2d6406..0ef1f22 100644
--- a/Modules/_pickle.c
+++ b/Modules/_pickle.c
@@ -71,7 +71,7 @@ enum opcode {
/* Protocol 3 (Python 3.x) */
BINBYTES = 'B',
- SHORT_BINBYTES = 'C',
+ SHORT_BINBYTES = 'C'
};
/* These aren't opcodes -- they're ways to pickle bools before protocol 2
@@ -103,7 +103,7 @@ enum {
MAX_WRITE_BUF_SIZE = 64 * 1024,
/* 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