diff options
author | Amaury Forgeot d'Arc <amauryfa@gmail.com> | 2011-11-04 21:29:24 (GMT) |
---|---|---|
committer | Amaury Forgeot d'Arc <amauryfa@gmail.com> | 2011-11-04 21:29:24 (GMT) |
commit | 9028a101440bd1526cf1fa0e77db8b4b1200fc29 (patch) | |
tree | 4434b3a5c747f20f9c0a78c15db3e5a1be0f514c /Lib/test | |
parent | 3dbb1f17cbbc6f616a75e902c527a41bb7fc8bfe (diff) | |
parent | 97c1bef6a4f3c522826386480c62ec27fe46301d (diff) | |
download | cpython-9028a101440bd1526cf1fa0e77db8b4b1200fc29.zip cpython-9028a101440bd1526cf1fa0e77db8b4b1200fc29.tar.gz cpython-9028a101440bd1526cf1fa0e77db8b4b1200fc29.tar.bz2 |
Issue #13343: Fix a SystemError when a lambda expression uses a global
variable in the default value of a keyword-only argument:
(lambda *, arg=GLOBAL_NAME: None)
Diffstat (limited to 'Lib/test')
-rw-r--r-- | Lib/test/test_keywordonlyarg.py | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/Lib/test/test_keywordonlyarg.py b/Lib/test/test_keywordonlyarg.py index 44be32c..61d40f9 100644 --- a/Lib/test/test_keywordonlyarg.py +++ b/Lib/test/test_keywordonlyarg.py @@ -162,6 +162,14 @@ class KeywordOnlyArgTestCase(unittest.TestCase): self.assertEqual(Example.f(Example(), k1=1, k2=2), (1, 2)) self.assertRaises(TypeError, Example.f, k1=1, k2=2) + def test_issue13343(self): + # The Python compiler must scan all symbols of a function to + # determine their scope: global, local, cell... + # This was not done for the default values of keyword + # arguments in a lambda definition, and the following line + # used to fail with a SystemError. + lambda *, k1=unittest: None + def test_main(): run_unittest(KeywordOnlyArgTestCase) |