[Python-checkins] CVS: python/nondist/peps pep2html.py,1.10,1.11

Peter Schneider-Kamp python-dev@python.org
Tue, 15 Aug 2000 03:35:20 -0700


Update of /cvsroot/python/python/nondist/peps
In directory slayer.i.sourceforge.net:/tmp/cvs-serv9896

Modified Files:
	pep2html.py 
Log Message:

remove superfluous special casing for lines beginning with '[*]'



Index: pep2html.py
===================================================================
RCS file: /cvsroot/python/python/nondist/peps/pep2html.py,v
retrieving revision 1.10
retrieving revision 1.11
diff -C2 -r1.10 -r1.11
*** pep2html.py	2000/08/15 05:53:19	1.10
--- pep2html.py	2000/08/15 10:35:17	1.11
***************
*** 119,123 ****
              break
          if line[0] != "\f":
!             if line[0].strip() and line[:3] != '[*]':
                  if line.strip() == LOCALVARS:
                      break
--- 119,123 ----
              break
          if line[0] != "\f":
!             if line[0].strip():
                  if line.strip() == LOCALVARS:
                      break