00000031 ?÷al" href="stdtypes.html#dict.items" title="dict.items">dict.items(), dict.iterkeys() to dict.keys(), and dict.itervalues() to dict.values(). Similarly, dict.viewitems(), dict.viewkeys() and dict.viewvalues() are converted respectively to dict.items(), dict.keys() and dict.values(). It also wraps existing usages of dict.items(), dict.keys(), and dict.values() in a call to list.

except¶

Converts except X, T to except X as T.

exec¶

Converts the exec statement to the exec() function.

execfile¶

Removes usage of execfile()