Commit 9797f397 authored by Stefan Behnel's avatar Stefan Behnel

added (and disabled) test case for type inference based crash

parent c31ccb13
......@@ -18,6 +18,7 @@ temp_sideeffects_T654
class_scope_T671
slice2_T636
builtin_subtype_methods_T653
dict_values_in_expression
# CPython regression tests that don't current work:
pyregr.test_signal
......
def func(**kwargs):
"""
>>> sorted(func(a=3, b=4))
[1, 2, 3, 4]
"""
return [ arg for arg in [1,2] + kwargs.values() ]
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment