tests/basics: Rename remaining tests that are for built-in functions.

For consistency with all of the other tests that are named builtin_XXX.py.
This commit is contained in:
Damien George
2018-02-07 15:55:52 +11:00
parent b45c8c17f0
commit 1f53ff61ff
8 changed files with 0 additions and 0 deletions

View File

@@ -0,0 +1,20 @@
# test builtin print function
print()
print(None)
print('')
print(1)
print(1, 2)
print(sep='')
print(sep='x')
print(end='')
print(end='x\n')
print(1, sep='')
print(1, end='')
print(1, sep='', end='')
print(1, 2, sep='')
print(1, 2, end='')
print(1, 2, sep='', end='')
print([{1:2}])