I think I finally figured out where Raymond is coming from.

For Raymond, "head" is where he started processing -- for rpartition,
this is the .endswith part.

For me, "head" is the start of the data structure -- always the
.startswith part.

We won't resolve that with anything suggesting a sequential order; we
need something that makes it clear which part is the large leftover.

    S.partition(sep) -> (record, sep, remains)
    S.rpartition(sep) -> (remains, sep, record)

I do like the plural (or collective) sound of "remains".

I have no solid reasoning for "record" vs "rec" vs "onerec".  I would
welcome a word that did not suggest it would have further internal
structure.

-jJ
_______________________________________________
Python-Dev mailing list
Python-Dev@python.org
http://mail.python.org/mailman/listinfo/python-dev
Unsubscribe: 
http://mail.python.org/mailman/options/python-dev/archive%40mail-archive.com

Reply via email to