diff options
author | Tim Peters <tim.peters@gmail.com> | 2003-02-01 06:30:12 +0000 |
---|---|---|
committer | Tim Peters <tim.peters@gmail.com> | 2003-02-01 06:30:12 +0000 |
commit | f60e319fe0ed533f22940437d17496fb39b46ec4 (patch) | |
tree | 9f1b5c785c19b75f4c0326bf18656893d75d7caf /Modules/cPickle.c | |
parent | 9625793b493632f0940d6db1225b31f3c02604b5 (diff) | |
download | cpython-f60e319fe0ed533f22940437d17496fb39b46ec4.tar.gz |
Removed needless include of errno.h.
Diffstat (limited to 'Modules/cPickle.c')
-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 9cfcaea6e2..e726667b8d 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 |