Here's a couple of examples of the sort of answer I was thinking of:
Conditional Expressions
Instead of the and-or trick, 2.5 offers a new way to write conditional expressions.
#and-or trick:
x = condition and 'true_value' or 'false_value'
#new in 2.5:
x = 'true_value' if condition else 'false_value'
Testing for keys in dictionaries
has_key() is deprecated in favor of key in d.
>>>d={'key':'value','key2':'value2'}
>>>'key1' in d
True
