mirror of
https://github.com/lifting-bits/sleigh
synced 2026-06-21 13:56:12 +00:00
2c197599aa
Python string split behaves differently than I assumed:
>>> "".split("\n")
['']
returns a list of size 1 but
>>> "".split()
[]
returns size 0 and
>>> "".splitlines()
[]
also returns size 0