[Python-checkins] python/dist/src/Modules cPickle.c,2.137,2.138

nnorwitz@users.sourceforge.net nnorwitz@users.sourceforge.net
Sat, 15 Feb 2003 07:07:21 -0800


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

Modified Files:
	cPickle.c 
Log Message:
Make 2 module variables static.  Assuming this is correct.

Index: cPickle.c
===================================================================
RCS file: /cvsroot/python/python/dist/src/Modules/cPickle.c,v
retrieving revision 2.137
retrieving revision 2.138
diff -C2 -d -r2.137 -r2.138
*** cPickle.c	15 Feb 2003 03:01:10 -0000	2.137
--- cPickle.c	15 Feb 2003 15:07:17 -0000	2.138
***************
*** 121,128 ****
  
  /* object.__reduce__, the default reduce callable. */
! PyObject *object_reduce;
  
  /* copy_reg._better_reduce, the protocol 2 reduction function. */
! PyObject *better_reduce;
  
  static PyObject *__class___str, *__getinitargs___str, *__dict___str,
--- 121,128 ----
  
  /* object.__reduce__, the default reduce callable. */
! static PyObject *object_reduce;
  
  /* copy_reg._better_reduce, the protocol 2 reduction function. */
! static PyObject *better_reduce;
  
  static PyObject *__class___str, *__getinitargs___str, *__dict___str,