On Sat, Nov 23, 2013 at 5:28 PM, Dan Stromberg <drsali...@gmail.com> wrote:
> Teach that python has builtins, not keywords - IOW, you can redefine list or
> int, but you probably shouldn't.  pylint helps with this.

Well, Python has keywords, but uses builtins for many things that
other languages use keywords (or magic) for.

>>> None=1
SyntaxError: assignment to keyword
>>> list=[]
>>> del list

ChrisA
-- 
https://mail.python.org/mailman/listinfo/python-list

Reply via email to