We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3d17cc0 commit a2ab447Copy full SHA for a2ab447
tests/snippets/print_const.py
tests/snippets/printing.py
@@ -0,0 +1,15 @@
1
+print(2 + 3)
2
+
3
+try:
4
+ print('test', end=4)
5
+except TypeError:
6
+ pass
7
+else:
8
+ assert False, "Expected TypeError on wrong type passed to end"
9
10
11
+ print('test', sep=['a'])
12
13
14
15
+ assert False, "Expected TypeError on wrong type passed to sep"
0 commit comments