commit | d1a1def7bf221b04dcf3fc3a67aa19aa2f622f83 | [log] [tgz] |
---|---|---|
author | Serhiy Storchaka <storchaka@gmail.com> | Fri Apr 28 19:17:26 2017 +0300 |
committer | Victor Stinner <victor.stinner@gmail.com> | Fri Apr 28 18:17:26 2017 +0200 |
tree | 0d13f2482de3cad5c65d9507d1bb4a27234578a6 | |
parent | 80a3da4d4aad0b51893e1e2f696b6252eca80e07 [diff] |
bpo-30197: Enhance functions swap_attr() and swap_item() in test.support. (#1341) * bpo-30197: Enhance functions swap_attr() and swap_item() in test.support. They now work when delete replaced attribute or item inside the with statement. The old value of the attribute or item (or None if it doesn't exist) now will be assigned to the target of the "as" clause, if there is one. * Update docstrings.