tattr__, list.append, etc.), and like I
said, this is just an idle thought, but still, if it was possible, you could
freeze just about anything and not have to create special frozen varieties
of every containiner type.
Skip
___
Python-3000-check
What about the few
bits of string that have no obvious other place to live (lowercase, digits,
etc)? Do they somehow become attributes of the str class?
Skip
___
Python-3000-checkins mailing list
[email protected]
http://mail.python.org/mailman/listinfo/python-3000-checkins
list(form.keys()):
value = form[key].value
-print "", cgi.escape(key), ":", cgi.escape(value)
+print("", cgi.escape(key), ":", cgi.escape(value))
if __name__ == "__main__&qu
>> Run 2to3 over the Demo/ directory to shut up parse errors from 2to3
>> about lingering print statements.
Skip> Shouldn't the list(dictionary.keys()) construct only be applied
Skip> where it's needed?
Guido> Yeah, but the tool doesn't kn