> It's a minor thing, but it'd be nice to make a method alias for append() on
> mutable sequences called push(), to go with pop(). 

That would confuse anyone used to Lisp, where after

    (defvar foo (list 1 2 3 4))
    (puch 99 foo)

the value of FOO is (99 1 2 3 4) rather than (1 2 3 4 99).
I take no stand on how much not confusing Lispers matters
to Python 3k.

-- 
g

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

Reply via email to