From 1f53ff61fffb4cc9b42ddf7e331e225c1b48b4ff Mon Sep 17 00:00:00 2001 From: Damien George Date: Wed, 7 Feb 2018 15:55:52 +1100 Subject: 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. --- tests/basics/print.py | 20 -------------------- 1 file changed, 20 deletions(-) delete mode 100644 tests/basics/print.py (limited to 'tests/basics/print.py') diff --git a/tests/basics/print.py b/tests/basics/print.py deleted file mode 100644 index 880aaf44f..000000000 --- a/tests/basics/print.py +++ /dev/null @@ -1,20 +0,0 @@ -# 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}]) -- cgit v1.2.3