Skip to content
Snippets Groups Projects
Commit 1e2f8292 authored by Damien George's avatar Damien George
Browse files

tests/basics/string_splitlines: Reinstate feature test for splitlines.

parent cc80c4dd
No related branches found
No related tags found
No related merge requests found
# test string.splitlines() method
try:
str.splitlines
except:
import sys
print("SKIP")
sys.exit()
# test \n as newline
print("foo\nbar".splitlines())
print("foo\nbar\n".splitlines())
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment