diff options
author | Serhiy Storchaka <storchaka@gmail.com> | 2015-06-28 14:06:07 (GMT) |
---|---|---|
committer | Serhiy Storchaka <storchaka@gmail.com> | 2015-06-28 14:06:07 (GMT) |
commit | 101ff3541cbe5bd9549722dc53c28d6c21b9389c (patch) | |
tree | 58ae6bba18ae65ca686f8a7ea89a78b482400f5e /Lib/test/test_with.py | |
parent | acac1e0e3bf564fbad2107d8f50d7e9c42e5ef22 (diff) | |
download | cpython-101ff3541cbe5bd9549722dc53c28d6c21b9389c.zip cpython-101ff3541cbe5bd9549722dc53c28d6c21b9389c.tar.gz cpython-101ff3541cbe5bd9549722dc53c28d6c21b9389c.tar.bz2 |
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 7068a80..cbaafcf 100644 --- a/Lib/test/test_with.py +++ b/Lib/test/test_with.py @@ -12,8 +12,8 @@ from test.support import run_unittest 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 @@ -31,7 +31,7 @@ class MockContextManager(_GeneratorContextManager): def mock_contextmanager(func): def helper(*args, **kwds): - return MockContextManager(func, *args, **kwds) + return MockContextManager(func, args, kwds) return helper |