Uh oh!
There was an error while loading. Please reload this page.
gh-102978: Fix mock.patch function signatures for class and staticmethod decorators - #103228
Conversation
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
ab55da7 to
ade55efCompareUh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
tomasr8
commented
Apr 4, 2023
Thanks! I updated the tests |
sobolevn
left a comment
There was a problem hiding this comment.
LGTM, but you will need an approve from the code owner :)
tomasr8
commented
Apr 4, 2023
Awesome, thanks for your time! |
a1b5a6b to
98f562eCompareFixes unittest.mock.patch not enforcing function signatures for methods decorated with @classmethod or @staticmethod when patch is called with autospec=True.
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
miss-islington
commented
Apr 13, 2023
bedevere-bot
commented
Apr 13, 2023
GH-103499 is a backport of this pull request to the 3.11 branch. |
…ticmethod decorators (pythonGH-103228) Fixes unittest.mock.patch not enforcing function signatures for methods decorated with @classmethod or @staticmethod when patch is called with autospec=True. (cherry picked from commit 59e0de4) Co-authored-by: Tomas R <tomas.roun8@gmail.com>
* main: pythongh-103479: [Enum] require __new__ to be considered a data type (pythonGH-103495) pythongh-103365: [Enum] STRICT boundary corrections (pythonGH-103494) pythonGH-103488: Use return-offset, not yield-offset. (pythonGH-103502) pythongh-103088: Fix test_venv error message to avoid bytes/str warning (pythonGH-103500) pythonGH-103082: Turn on branch events for FOR_ITER instructions. (python#103507) pythongh-102978: Fix mock.patch function signatures for class and staticmethod decorators (python#103228) pythongh-103462: Ensure SelectorSocketTransport.writelines registers a writer when data is still pending (python#103463) pythongh-95299: Rework test_cppext.py to not invoke setup.py directly (python#103316)
…ticmethod decorators (python#103228) Fixes unittest.mock.patch not enforcing function signatures for methods decorated with @classmethod or @staticmethod when patch is called with autospec=True.
…aticmethod decorators (GH-103228) (#103499) Fixes unittest.mock.patch not enforcing function signatures for methods decorated with @classmethod or @staticmethod when patch is called with autospec=True. (cherry picked from commit 59e0de4) Co-authored-by: Tomas R <tomas.roun8@gmail.com>
Closes#102978
As reported in the original issue,
unittest.mock.patchdoes not correctly extract function signatures from methods decorated with@classmethodand@staticmethodwhenpatchis called withautospec=True.This fix adds a special case to the extraction logic which uses the original decorated function via
__func__to get the correct signature.I also updated the relevant tests.