Python 3: dict.haskey -> key in dict (#9697)
* Outlook Express app module: dict.has_key -> key in dict. Re #9640.
Python 3 retires dict.has_key in favor of testing for membership (key in dict), thus use this method instead.
* JAB objects: dict.has_key -> key in dict. Re #9640.