[Python-checkins] python/dist/src/Modules arraymodule.c,2.76,2.77 md5module.c,2.31,2.32 pyexpat.c,2.68,2.69 rotormodule.c,2.35,2.36 selectmodule.c,2.65,2.66 xxmodule.c,2.29,2.30 zlibmodule.c,2.63,2.64

tim_one@users.sourceforge.net tim_one@users.sourceforge.net
Wed, 17 Jul 2002 09:49:05 -0700


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

Modified Files:
	arraymodule.c md5module.c pyexpat.c rotormodule.c 
	selectmodule.c xxmodule.c zlibmodule.c 
Log Message:
Removed more stray instances of statichere, but left _sre.c alone.


Index: arraymodule.c
===================================================================
RCS file: /cvsroot/python/python/dist/src/Modules/arraymodule.c,v
retrieving revision 2.76
retrieving revision 2.77
diff -C2 -d -r2.76 -r2.77
*** arraymodule.c	17 Jul 2002 16:30:36 -0000	2.76
--- arraymodule.c	17 Jul 2002 16:49:03 -0000	2.77
***************
*** 1859,1863 ****
  ");
  
! statichere PyTypeObject Arraytype = {
  	PyObject_HEAD_INIT(NULL)
  	0,
--- 1859,1863 ----
  ");
  
! static PyTypeObject Arraytype = {
  	PyObject_HEAD_INIT(NULL)
  	0,

Index: md5module.c
===================================================================
RCS file: /cvsroot/python/python/dist/src/Modules/md5module.c,v
retrieving revision 2.31
retrieving revision 2.32
diff -C2 -d -r2.31 -r2.32
*** md5module.c	17 Jul 2002 16:30:37 -0000	2.31
--- md5module.c	17 Jul 2002 16:49:03 -0000	2.32
***************
*** 188,192 ****
  copy() -- return a copy of the current md5 object");
  
! statichere PyTypeObject MD5type = {
  	PyObject_HEAD_INIT(NULL)
  	0,			  /*ob_size*/
--- 188,192 ----
  copy() -- return a copy of the current md5 object");
  
! static PyTypeObject MD5type = {
  	PyObject_HEAD_INIT(NULL)
  	0,			  /*ob_size*/

Index: pyexpat.c
===================================================================
RCS file: /cvsroot/python/python/dist/src/Modules/pyexpat.c,v
retrieving revision 2.68
retrieving revision 2.69
diff -C2 -d -r2.68 -r2.69
*** pyexpat.c	17 Jul 2002 16:30:37 -0000	2.68
--- pyexpat.c	17 Jul 2002 16:49:03 -0000	2.69
***************
*** 1740,1744 ****
  }
  
! statichere struct HandlerInfo handler_info[] = {
      {"StartElementHandler",
       (xmlhandlersetter)XML_SetStartElementHandler,
--- 1740,1744 ----
  }
  
! static struct HandlerInfo handler_info[] = {
      {"StartElementHandler",
       (xmlhandlersetter)XML_SetStartElementHandler,

Index: rotormodule.c
===================================================================
RCS file: /cvsroot/python/python/dist/src/Modules/rotormodule.c,v
retrieving revision 2.35
retrieving revision 2.36
diff -C2 -d -r2.35 -r2.36
*** rotormodule.c	17 Jul 2002 16:30:37 -0000	2.35
--- rotormodule.c	17 Jul 2002 16:49:03 -0000	2.36
***************
*** 576,580 ****
  
  
! statichere PyTypeObject Rotor_Type = {
  	PyObject_HEAD_INIT(NULL)
  	0,				/*ob_size*/
--- 576,580 ----
  
  
! static PyTypeObject Rotor_Type = {
  	PyObject_HEAD_INIT(NULL)
  	0,				/*ob_size*/

Index: selectmodule.c
===================================================================
RCS file: /cvsroot/python/python/dist/src/Modules/selectmodule.c,v
retrieving revision 2.65
retrieving revision 2.66
diff -C2 -d -r2.65 -r2.66
*** selectmodule.c	17 Jul 2002 16:30:37 -0000	2.65
--- selectmodule.c	17 Jul 2002 16:49:03 -0000	2.66
***************
*** 560,564 ****
  }
  
! statichere PyTypeObject poll_Type = {
  	/* The ob_type field must be initialized in the module init function
  	 * to be portable to Windows without using C++. */
--- 560,564 ----
  }
  
! static PyTypeObject poll_Type = {
  	/* The ob_type field must be initialized in the module init function
  	 * to be portable to Windows without using C++. */

Index: xxmodule.c
===================================================================
RCS file: /cvsroot/python/python/dist/src/Modules/xxmodule.c,v
retrieving revision 2.29
retrieving revision 2.30
diff -C2 -d -r2.29 -r2.30
*** xxmodule.c	17 Jul 2002 16:30:37 -0000	2.29
--- xxmodule.c	17 Jul 2002 16:49:03 -0000	2.30
***************
*** 94,98 ****
  }
  
! statichere PyTypeObject Xxo_Type = {
  	/* The ob_type field must be initialized in the module init function
  	 * to be portable to Windows without using C++. */
--- 94,98 ----
  }
  
! static PyTypeObject Xxo_Type = {
  	/* The ob_type field must be initialized in the module init function
  	 * to be portable to Windows without using C++. */

Index: zlibmodule.c
===================================================================
RCS file: /cvsroot/python/python/dist/src/Modules/zlibmodule.c,v
retrieving revision 2.63
retrieving revision 2.64
diff -C2 -d -r2.63 -r2.64
*** zlibmodule.c	17 Jul 2002 16:30:37 -0000	2.63
--- zlibmodule.c	17 Jul 2002 16:49:03 -0000	2.64
***************
*** 786,790 ****
  };
  
! statichere PyTypeObject Comptype = {
      PyObject_HEAD_INIT(0)
      0,
--- 786,790 ----
  };
  
! static PyTypeObject Comptype = {
      PyObject_HEAD_INIT(0)
      0,
***************
*** 803,807 ****
  };
  
! statichere PyTypeObject Decomptype = {
      PyObject_HEAD_INIT(0)
      0,
--- 803,807 ----
  };
  
! static PyTypeObject Decomptype = {
      PyObject_HEAD_INIT(0)
      0,