diff options
author | Serhiy Storchaka <storchaka@gmail.com> | 2015-06-28 17:09:11 +0300 |
---|---|---|
committer | Serhiy Storchaka <storchaka@gmail.com> | 2015-06-28 17:09:11 +0300 |
commit | 9aad9f27407861d674570bf5c0bd957bbe13663b (patch) | |
tree | 90c1467cde02dbc8e1006123aa07b18cd5ca7495 /Lib/test/test_with.py | |
parent | 2eff9e9441d76904792141b4b38b0eb649d9eb86 (diff) | |
parent | eab770404437bd49ebf897b681221784b0035795 (diff) | |
download | cpython-git-9aad9f27407861d674570bf5c0bd957bbe13663b.tar.gz |
Issue #24336: The contextmanager decorator now works with functions with
keyword arguments called "func" and "self". Patch by Martin Panter.
Diffstat (limited to 'Lib/test/test_with.py')
-rw-r--r-- | Lib/test/test_with.py | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/Lib/test/test_with.py b/Lib/test/test_with.py index 5dbd1e6325..e8d789bc2c 100644 --- a/Lib/test/test_with.py +++ b/Lib/test/test_with.py @@ -11,8 +11,8 @@ from contextlib import _GeneratorContextManager, contextmanager class MockContextManager(_GeneratorContextManager): - def __init__(self, func, *args, **kwds): - super().__init__(func, *args, **kwds) + def __init__(self, *args): + super().__init__(*args) self.enter_called = False self.exit_called = False self.exit_args = None @@ -30,7 +30,7 @@ class MockContextManager(_GeneratorContextManager): def mock_contextmanager(func): def helper(*args, **kwds): - return MockContextManager(func, *args, **kwds) + return MockContextManager(func, args, kwds) return helper |