]> granicus.if.org Git - python/commitdiff
Issue #10359: Remove useless comma, invalid in ISO C
authorVictor Stinner <victor.stinner@haypocalc.com>
Tue, 9 Nov 2010 09:39:41 +0000 (09:39 +0000)
committerVictor Stinner <victor.stinner@haypocalc.com>
Tue, 9 Nov 2010 09:39:41 +0000 (09:39 +0000)
Modules/_pickle.c

index e2d64064629a248673ffa8ef605724ef9a817214..0ef1f22afa287a7e4ef30beaff79aca0aa4cdc6b 100644 (file)
@@ -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