[EMAIL PROTECTED] writes: > Unrelated: Ruby and Lisp use ? and ! at the end of the function/method > names to denote a predicate or a function that mutates in place (With > them the list.sort() may be called list.sort!() ). Using Python I > usually put an Q at the end of the name for this purpose. Can Py 3.0 > support names ending with "?" too?
I don't think that's part of the plan. However, Python seems to use the -ed suffix for the non-mutating versions of these functions, e.g. sorted(list) instead of the mutating list.sort(). -- http://mail.python.org/mailman/listinfo/python-list