[Python-checkins] python/dist/src/Modules cPickle.c,2.104,2.105

tim_one@users.sourceforge.net tim_one@users.sourceforge.net
Fri, 31 Jan 2003 22:30:14 -0800


Update of /cvsroot/python/python/dist/src/Modules
In directory sc8-pr-cvs1:/tmp/cvs-serv9429/Modules

Modified Files:
	cPickle.c 
Log Message:
Removed needless include of errno.h.


Index: cPickle.c
===================================================================
RCS file: /cvsroot/python/python/dist/src/Modules/cPickle.c,v
retrieving revision 2.104
retrieving revision 2.105
diff -C2 -d -r2.104 -r2.105
*** cPickle.c	1 Feb 2003 06:27:59 -0000	2.104
--- cPickle.c	1 Feb 2003 06:30:12 -0000	2.105
***************
*** 11,18 ****
  #endif /* Py_eval_input */
  
- #include <errno.h>
- 
- 
- 
  #define DEL_LIST_SLICE(list, from, to) (PyList_SetSlice(list, from, to, NULL))
  
--- 11,14 ----