Skip to content
Merged
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
2 changes: 1 addition & 1 deletion src/functions/test_function_arbitrary_arguments.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ def test_function_arbitrary_arguments():
# containing the positional arguments beyond the formal parameter list.
# (*name must occur before **name.) For example, if we define a function like this:
def test_function(first_param, *arguments):
"""This function accepts its arguments through "arguments" tuple and keywords dictionary."""
"""This function accepts its arguments through "arguments" tuple"""
assert first_param == 'first param'
assert arguments == ('second param', 'third param')

Expand Down