diff options
author | Tim Peters <tim.peters@gmail.com> | 2003-02-01 06:30:12 (GMT) |
---|---|---|
committer | Tim Peters <tim.peters@gmail.com> | 2003-02-01 06:30:12 (GMT) |
commit | 040e033796dc8e7310a5638486425e73b184d35c (patch) | |
tree | 2a944fec72ddc4de06f87b8d0cc2e9abccbe2986 /Modules | |
parent | 64c04d1df3ed33e9a99362db7651f22668bafc06 (diff) | |
download | cpython-040e033796dc8e7310a5638486425e73b184d35c.zip cpython-040e033796dc8e7310a5638486425e73b184d35c.tar.gz cpython-040e033796dc8e7310a5638486425e73b184d35c.tar.bz2 |
Removed needless include of errno.h.
Diffstat (limited to 'Modules')
-rw-r--r-- | Modules/cPickle.c | 4 |
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 |