@@ -33,15 +33,15 @@ def tssplit(s, quote='"\'', quote_keep=False, delimiter=':;,', escape='/^', trim
3333``` Python3
3434from tssplit import tssplit
3535
36- tssplit(' --:--;--,--"--/--"--\' --:--\' --/"--^--' ,
36+ tssplit(' --:--;--,--"--/--"--\' --:--\' --/"--^--' ,
3737 quote = ' "\' ' , delimiter = ' :;,' , escape = ' /^' , trim = ' ' )
3838[' --' , ' --' , ' --' , ' ----/------:----"----' ]
3939
40- tssplit(' --:--;--,--"--/--"--\' --:--\' --/"--^--' ,
40+ tssplit(' --:--;--,--"--/--"--\' --:--\' --/"--^--' ,
4141 quote = ' "\' ' , delimiter = ' :;,' , escape = ' /^' , trim = ' ' , quote_keep = True )
4242[' --' , ' --' , ' --' , ' --"--/--"--\' --:--\' --"----' ]
4343
44- tssplit(' --:--;--,--"--/--"--\' --:--\' --# Ignore this' ,
44+ tssplit(' --:--;--,--"--/--"--\' --:--\' --# Ignore this' ,
4545 quote = ' "\' ' , delimiter = ' :;,' , escape = ' /^' , trim = ' ' , quote_keep = True , remark = ' #' )
4646[' --' , ' --' , ' --' , ' --"--/--"--\' --:--\' --' ]
4747```
@@ -53,5 +53,6 @@ tssplit('--:--;--,--"--/--"--\'--:--\'--# Ignore this',
5353* 2020.03.29 v1.0.2 Minor fixes, Readme update, Long description provided
5454* 2020.03.29 v1.0.3 Trim option to strip() characters from chunks
5555* 2020.03.29 v1.0.4 Multiple characters for quotes, delimiters and escapes
56- * 2022.02.04 v1.0.5 Added ` quote_keep ` option to preserve quote marks in the output or not
56+ * 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
58+ * 2024.04.03 v1.0.7 Cosmetics to make pylint happy
0 commit comments