[Python-checkins] python/dist/src/Modules cPickle.c,2.81,2.82

nnorwitz@sourceforge.net nnorwitz@sourceforge.net
Sun, 21 Apr 2002 16:44:42 -0700


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

Modified Files:
	cPickle.c 
Log Message:
#546156, Remove load_false()/load_true(), they are not used

Index: cPickle.c
===================================================================
RCS file: /cvsroot/python/python/dist/src/Modules/cPickle.c,v
retrieving revision 2.81
retrieving revision 2.82
diff -C2 -d -r2.81 -r2.82
*** cPickle.c	5 Apr 2002 19:30:08 -0000	2.81
--- cPickle.c	21 Apr 2002 23:44:34 -0000	2.82
***************
*** 2610,2627 ****
  
  static int
- load_false(Unpicklerobject *self) 
- {
- 	PDATA_APPEND(self->stack, Py_False, -1);
- 	return 0;
- }
- 
- static int
- load_true(Unpicklerobject *self) 
- {
- 	PDATA_APPEND(self->stack, Py_True, -1);
- 	return 0;
- }
- 
- static int
  bad_readline(void) 
  {
--- 2610,2613 ----