[Python-checkins] python/nondist/peps pep2html.py,1.38,1.39

bwarsaw@users.sourceforge.net bwarsaw@users.sourceforge.net
Tue, 30 Jul 2002 09:25:20 -0700


Update of /cvsroot/python/python/nondist/peps
In directory usw-pr-cvs1:/tmp/cvs-serv14254

Modified Files:
	pep2html.py 
Log Message:
Oops, get rid of debugging prints.


Index: pep2html.py
===================================================================
RCS file: /cvsroot/python/python/nondist/peps/pep2html.py,v
retrieving revision 1.38
retrieving revision 1.39
diff -C2 -d -r1.38 -r1.39
*** pep2html.py	30 Jul 2002 16:17:11 -0000	1.38
--- pep2html.py	30 Jul 2002 16:25:17 -0000	1.39
***************
*** 193,197 ****
              mailtos = []
              for part in re.split(',\s*', v):
-                 print 'part:', part
                  if '@' in part:
                      realname, addr = parseaddr(part)
--- 193,196 ----
***************
*** 206,210 ****
                  else:
                      mailtos.append(part)
-             print 'mailtos:', mailtos
              v = COMMASPACE.join(mailtos)
          elif k.lower() in ('replaces', 'replaced-by'):
--- 205,208 ----