summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorTim Peters <tim.peters@gmail.com>2003-02-01 06:30:12 (GMT)
committerTim Peters <tim.peters@gmail.com>2003-02-01 06:30:12 (GMT)
commit040e033796dc8e7310a5638486425e73b184d35c (patch)
tree2a944fec72ddc4de06f87b8d0cc2e9abccbe2986
parent64c04d1df3ed33e9a99362db7651f22668bafc06 (diff)
downloadcpython-040e033796dc8e7310a5638486425e73b184d35c.zip
cpython-040e033796dc8e7310a5638486425e73b184d35c.tar.gz
cpython-040e033796dc8e7310a5638486425e73b184d35c.tar.bz2
Removed needless include of errno.h.
-rw-r--r--Modules/cPickle.c4
1 files changed, 0 insertions, 4 deletions
diff --git a/Modules/cPickle.c b/Modules/cPickle.c
index 9cfcaea..e726667 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 <errno.h>
-
-
-
#define DEL_LIST_SLICE(list, from, to) (PyList_SetSlice(list, from, to, NULL))
#define WRITE_BUF_SIZE 256