https://github.com/python/cpython/commit/1de46136b916736487019c2f78af2bf0cadd7ecd
commit: 1de46136b916736487019c2f78af2bf0cadd7ecd
branch: main
author: sobolevn <[email protected]>
committer: sobolevn <[email protected]>
date: 2024-09-14T10:20:44Z
summary:
Remove unused variable in `MagicMixin._mock_set_magics` (#124092)
files:
M Lib/unittest/mock.py
diff --git a/Lib/unittest/mock.py b/Lib/unittest/mock.py
index 480c85bed9b31e..1fa90277e08ec3 100644
--- a/Lib/unittest/mock.py
+++ b/Lib/unittest/mock.py
@@ -2166,8 +2166,6 @@ def _mock_set_magics(self):
if getattr(self, "_mock_methods", None) is not None:
these_magics = orig_magics.intersection(self._mock_methods)
-
- remove_magics = set()
remove_magics = orig_magics - these_magics
for entry in remove_magics:
_______________________________________________
Python-checkins mailing list -- [email protected]
To unsubscribe send an email to [email protected]
https://mail.python.org/mailman3/lists/python-checkins.python.org/
Member address: [email protected]