commit | d5fbe9b1a3d65ceeb9159c5ba999ee966a945f76 | [log] [tgz] |
---|---|---|
author | Pablo Aguiar <scorphus@gmail.com> | Sat Sep 08 00:04:48 2018 +0200 |
committer | Pablo Galindo <Pablogsal@gmail.com> | Fri Sep 07 23:04:48 2018 +0100 |
tree | f2124d01569a59c8bc937f02a0954b9f2f807e1f | |
parent | 4e519377b1b84c9414a360961276993d24198825 [diff] |
bpo-34246: Use no mutable default args in smtplib (GH-8554) Some methods of the SMTP class use mutable default arguments. Specially `send_message` is affected as it mutates one of the args by appending items to it, which has side effects on further calls.