It seems that punctuation symbols are not correctly separated.
>>> simple_tokenizer('"test": "that"')
['"', 'test', '":', '"', 'that', '"']
I would have expected:
['"', 'test', '"', ':', '"', 'that', '"']
P.S.: I would rather to review my big refactor before applying any other changes to avoid a constant conflict in the PR 🙂
It seems that punctuation symbols are not correctly separated.
I would have expected:
['"', 'test', '"', ':', '"', 'that', '"']
P.S.: I would rather to review my big refactor before applying any other changes to avoid a constant conflict in the PR 🙂