Re: [Python-3000-checkins] r45652 - in python/branches/p3yk

2006-04-25 Thread skip
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

Re: [Python-3000-checkins] r55359 - python/branches/py3k-struni/Lib/test/test_strop.py

2007-05-16 Thread skip
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

Re: [Python-3000-checkins] r56418 ...

2007-07-23 Thread skip
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

Re: [Python-3000-checkins] r56418 ...

2007-07-26 Thread skip
>> 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