"Talin" <[EMAIL PROTECTED]> wrote in message news:[EMAIL PROTECTED] > For some reason, I have stuck in my head the idea that this concept of > 'quoting' > is central to the whole business
I agree. And in Python, the main means of implicit (unwritten) quoting is to use a statement instead of an expression. For instance, a=b <=> set('a', b) and import xyz <=> xyz = __import__('xyz'). In a def statement, everything is quoted *except* the default arg expressions. But I am not sure how this understanding helps you. Terry Jan Reedy _______________________________________________ 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