[Python-checkins] CVS: python/dist/src/Modules _sre.c,2.4,2.5

Fredrik Lundh python-dev@python.org
Thu, 29 Jun 2000 01:57:57 -0700


Update of /cvsroot/python/python/dist/src/Modules
In directory slayer.i.sourceforge.net:/tmp/cvs-serv11206

Modified Files:
	_sre.c 
Log Message:
towards 1.6b1

Index: _sre.c
===================================================================
RCS file: /cvsroot/python/python/dist/src/Modules/_sre.c,v
retrieving revision 2.4
retrieving revision 2.5
diff -C2 -r2.4 -r2.5
*** _sre.c	2000/06/01 17:34:20	2.4
--- _sre.c	2000/06/29 08:57:54	2.5
***************
*** 4,20 ****
   * $Id$
   *
!  * simple regular expression matching engine
   *
   * partial history:
!  * 99-10-24 fl	created (based on the template matcher)
   * 99-11-13 fl	added categories, branching, and more (0.2)
   * 99-11-16 fl	some tweaks to compile on non-Windows platforms
   * 99-12-18 fl	non-literals, generic maximizing repeat (0.3)
!  * 99-02-28 fl	tons of changes (not all to the better ;-) (0.4)
[...1589 lines suppressed...]
  
  void
! #if defined(WIN32)
  __declspec(dllexport)
  #endif
***************
*** 1708,1713 ****
          Cursor_Type.ob_type = &PyType_Type;
  
! 	Py_InitModule("_sre", _functions);
  }
  
! #endif
--- 1846,1851 ----
          Cursor_Type.ob_type = &PyType_Type;
  
! 	Py_InitModule("_" MODULE, _functions);
  }
  
! #endif /* !defined(SRE_RECURSIVE) */