Why don't people like lisp?

Andrew Dalke adalke at mindspring.com
Wed Oct 22 03:18:48 EDT 2003


Me:
>         if _name_re.match(token):
>             names.append(token)

Should be
         if _name_re.match(token):
             if token not in names:
                names.append(token)

                    Andrew
                    dalke at dalkescientific.com






More information about the Python-list mailing list