[Python-checkins] r56195 - python/branches/cpy_merge/Modules/_picklemodule.c

alexandre.vassalotti python-checkins at python.org
Sun Jul 8 21:33:11 CEST 2007


Author: alexandre.vassalotti
Date: Sun Jul  8 21:33:11 2007
New Revision: 56195

Modified:
   python/branches/cpy_merge/Modules/_picklemodule.c
Log:
Remove the unused DEL_LIST_SLICE macro.


Modified: python/branches/cpy_merge/Modules/_picklemodule.c
==============================================================================
--- python/branches/cpy_merge/Modules/_picklemodule.c	(original)
+++ python/branches/cpy_merge/Modules/_picklemodule.c	Sun Jul  8 21:33:11 2007
@@ -9,8 +9,6 @@
 #define Py_eval_input eval_input
 #endif /* Py_eval_input */
 
-#define DEL_LIST_SLICE(list, from, to) (PyList_SetSlice(list, from, to, NULL))
-
 #define WRITE_BUF_SIZE 256
 
 /* Bump this when new opcodes are added to the pickle protocol. */


More information about the Python-checkins mailing list