[Python-checkins] r54794 - sandbox/trunk/pep0/pep0.py (original) (raw)

brett.cannon python-checkins at python.org
Thu Apr 12 23:38:14 CEST 2007


Author: brett.cannon Date: Thu Apr 12 23:38:09 2007 New Revision: 54794

Modified: sandbox/trunk/pep0/pep0.py Log: Fix handling of names that end in 'Jr.' and such.

Modified: sandbox/trunk/pep0/pep0.py

--- sandbox/trunk/pep0/pep0.py (original) +++ sandbox/trunk/pep0/pep0.py Thu Apr 12 23:38:09 2007 @@ -70,7 +70,15 @@ # Watch out for commas separating multiple names. regex += '(,\s+)?' for match in re.finditer(regex, data):



More information about the Python-checkins mailing list