diff options
author | Victor Stinner <victor.stinner@gmail.com> | 2014-12-11 21:25:49 (GMT) |
---|---|---|
committer | Victor Stinner <victor.stinner@gmail.com> | 2014-12-11 21:25:49 (GMT) |
commit | eb1a995a7c28052573367a52b7519a6dfc34020f (patch) | |
tree | ca648549a67049caad4221e579f085c8db64f901 | |
parent | 49784f4d14261689aa058bc9f73dfd4ff79bd582 (diff) | |
download | cpython-eb1a995a7c28052573367a52b7519a6dfc34020f.zip cpython-eb1a995a7c28052573367a52b7519a6dfc34020f.tar.gz cpython-eb1a995a7c28052573367a52b7519a6dfc34020f.tar.bz2 |
Issue #22823: Fix typo in unittest/mock.py
-rw-r--r-- | Lib/unittest/mock.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/unittest/mock.py b/Lib/unittest/mock.py index 6b261d6..9d9b3e2 100644 --- a/Lib/unittest/mock.py +++ b/Lib/unittest/mock.py @@ -1682,7 +1682,7 @@ _non_defaults = { '__reduce__', '__reduce_ex__', '__getinitargs__', '__getnewargs__', '__getstate__', '__setstate__', '__getformat__', '__setformat__', '__repr__', '__dir__', '__subclasses__', '__format__', -) +} def _get_method(name, func): |