str.splitlines() takes one argument keepends: it is a keyword argument in Python 3, but it is only positional in Python 2.
The following line in open_slk triggers an error with Python 2:
for line in data.splitlines(keepends=False):
The bug is fixed in PR #769
str.splitlines() takes one argument
keepends: it is a keyword argument in Python 3, but it is only positional in Python 2.The following line in open_slk triggers an error with Python 2:
The bug is fixed in PR #769