From: Tim Peters Date: Sat, 1 Feb 2003 06:30:12 +0000 (+0000) Subject: Removed needless include of errno.h. X-Git-Tag: v2.3c1~2129 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=040e033796dc8e7310a5638486425e73b184d35c;p=thirdparty%2FPython%2Fcpython.git Removed needless include of errno.h. --- diff --git a/Modules/cPickle.c b/Modules/cPickle.c index 9cfcaea6e23f..e726667b8d9b 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