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

Jack Jansen python-dev@python.org
Mon, 7 Aug 2000 14:02:53 -0700


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

Modified Files:
	_sre.c 
Log Message:
Added a missing } in the USE_STACKCHECK code.


Index: _sre.c
===================================================================
RCS file: /cvsroot/python/python/dist/src/Modules/_sre.c,v
retrieving revision 2.34
retrieving revision 2.35
diff -C2 -r2.34 -r2.35
*** _sre.c	2000/08/07 20:59:04	2.34
--- _sre.c	2000/08/07 21:02:50	2.35
***************
*** 571,574 ****
--- 571,575 ----
      if (level % 10 == 0 && PyOS_CheckStack()) {
          return SRE_ERROR_RECURSION_LIMIT;
+     }
  #endif