ubuiltins: Fix missing types on print args.

This commit is contained in:
Laurens Valk
2022-12-01 16:49:45 +01:00
parent 961cebe48b
commit 52cb0fe81e
+3 -3
View File
@@ -985,9 +985,9 @@ def print(*args):
objects: Zero or more objects to print.
Keyword Arguments:
sep: This is printed between objects, if there is more than one.
end: This is printed after the last object.
file: By default, the result is printed in the terminal window. This
sep (str): This is printed between objects, if there is more than one.
end (str): This is printed after the last object.
file (FileIO): By default, the result is printed in the terminal window. This
argument lets you print it to a file instead, if files are
supported.
"""