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

Euh... can we get a bit more information in that checkin message. "towards 1.6b1" says zippo about what is changing or why. Cheers, -g On Thu, Jun 29, 2000 at 01:57:57AM -0700, Fredrik Lundh wrote:
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) */
_______________________________________________ Python-checkins mailing list Python-checkins@python.org http://www.python.org/mailman/listinfo/python-checkins
-- Greg Stein, http://www.lyra.org/

greg wrote:
Euh... can we get a bit more information in that checkin message. "towards 1.6b1" says zippo about what is changing or why.
just bringing the repository in sync with the current development snapshot -- I promise to provide more info when the checkins are more focused... just gotta reach "1.6b1 quality" first... </F>
participants (2)
-
Fredrik Lundh
-
Greg Stein