Skip to content

Commit 124ca9c

Browse files
committed
v1.0.8
1 parent 3149371 commit 124ca9c

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -56,3 +56,4 @@ tssplit('--:--;--,--"--/--"--\'--:--\'--# Ignore this',
5656
* 2022.02.04 v1.0.5 Added `quote_keep` option to preserve quote marks in the output or not
5757
* 2023.01.12 v1.0.6 Remark characters interrupt string parsing
5858
* 2024.04.03 v1.0.7 Cosmetics to make pylint happy
59+
* 2024.10.19 v1.0.8 Better module import; minor cosmetic changes

setup.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77

88
setup(
99
name='tssplit',
10-
version='1.0.7',
10+
version='1.0.8',
1111
py_modules=['tssplit.tssplit'],
1212
url='https://github.com/mezantrop/tssplit',
1313
license='bsd-2-clause',
@@ -28,5 +28,4 @@
2828
'Topic :: Text Processing :: General'
2929
],
3030
keywords=['split', 'parse', 'quote', 'trim', 'strip', 'string', 'delimiter', 'separator'],
31-
3231
)

tssplit/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
"""Trivial split for strings with multiple character delimiters, quotes and escaped characters"""
22

3-
from tssplit.tssplit import tssplit
3+
from tssplit.tssplit import *

0 commit comments

Comments
 (0)