From 040e033796dc8e7310a5638486425e73b184d35c Mon Sep 17 00:00:00 2001 From: Tim Peters Date: Sat, 1 Feb 2003 06:30:12 +0000 Subject: [PATCH] Removed needless include of errno.h. --- Modules/cPickle.c | 4 ---- 1 file changed, 4 deletions(-) diff --git a/Modules/cPickle.c b/Modules/cPickle.c index 9cfcaea6e23..e726667b8d9 100644 --- a/Modules/cPickle.c +++ b/Modules/cPickle.c @@ -10,10 +10,6 @@ PyDoc_STRVAR(cPickle_module_documentation, #define Py_eval_input eval_input #endif /* Py_eval_input */ -#include - - - #define DEL_LIST_SLICE(list, from, to) (PyList_SetSlice(list, from, to, NULL)) #define WRITE_BUF_SIZE 256