[Python-checkins] python/dist/src/Modules cPickle.c,2.146,2.147

jhylton@users.sourceforge.net jhylton@users.sourceforge.net
Fri, 11 Jul 2003 12:42:51 -0700


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

Modified Files:
	cPickle.c 
Log Message:
The Unpickler forget about its find_class attribute.


Index: cPickle.c
===================================================================
RCS file: /cvsroot/python/python/dist/src/Modules/cPickle.c,v
retrieving revision 2.146
retrieving revision 2.147
diff -C2 -d -r2.146 -r2.147
*** cPickle.c	16 Jun 2003 20:19:49 -0000	2.146
--- cPickle.c	11 Jul 2003 19:42:49 -0000	2.147
***************
*** 5233,5236 ****
--- 5233,5237 ----
  	Py_XDECREF(self->arg);
  	Py_XDECREF(self->last_string);
+ 	Py_XDECREF(self->find_class);
  
  	if (self->marks) {
***************
*** 5264,5267 ****
--- 5265,5269 ----
  	VISIT(self->arg);
  	VISIT(self->last_string);
+ 	VISIT(self->find_class);
  #undef VISIT
  	return 0;
***************
*** 5280,5283 ****
--- 5282,5286 ----
  	CLEAR(self->arg);
  	CLEAR(self->last_string);
+ 	CLEAR(self->find_class);
  #undef CLEAR
  	return 0;