Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions .cspell.dict/cpython.txt
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,7 @@ IMMUTABLETYPE
ismine
Itertool
keeped
kwnames
kwonlyarg
kwonlyargs
lasti
Expand All @@ -44,6 +45,7 @@ mult
multibytecodec
newsemlockobject
nkwargs
nkwelts
noraise
numer
orelse
Expand All @@ -65,6 +67,7 @@ stackdepth
stginfo
stringlib
structseq
subkwargs
subparams
swappedbytes
ticketer
Expand Down
4 changes: 0 additions & 4 deletions Lib/test/test_compile.py
Original file line number Diff line number Diff line change
Expand Up @@ -1422,8 +1422,6 @@ def test_dict(self):
def test_func_args(self):
self.check_stack_size("f(" + "x, " * self.N + ")")

# TODO: RUSTPYTHON
@unittest.expectedFailure
def test_func_kwargs(self):
kwargs = (f'a{i}=x' for i in range(self.N))
self.check_stack_size("f(" + ", ".join(kwargs) + ")")
Expand All @@ -1433,8 +1431,6 @@ def test_func_kwargs(self):
def test_meth_args(self):
self.check_stack_size("o.m(" + "x, " * self.N + ")")

# TODO: RUSTPYTHON
@unittest.expectedFailure
def test_meth_kwargs(self):
kwargs = (f'a{i}=x' for i in range(self.N))
self.check_stack_size("o.m(" + ", ".join(kwargs) + ")")
Expand Down
Loading