We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent cc80c4d commit 1e2f829Copy full SHA for 1e2f829
1 file changed
tests/basics/string_splitlines.py
@@ -1,5 +1,12 @@
1
# test string.splitlines() method
2
3
+try:
4
+ str.splitlines
5
+except:
6
+ import sys
7
+ print("SKIP")
8
+ sys.exit()
9
+
10
# test \n as newline
11
print("foo\nbar".splitlines())
12
print("foo\nbar\n".splitlines())
0 commit comments