File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -21,15 +21,15 @@ def getJavaProperties(propfile):
21
21
AttributeError: if invalid object was provided for file object
22
22
Corresponds to java NullPointerException
23
23
24
- Author: Kishan Thomas <kishan@hackorama .com>
24
+ Author: Kishan Thomas <kishan.thomas@gmail .com> www.hackorama.com
25
25
"""
26
26
LINE_BREAKS = '\n \r \f ' #end-of-line, carriage-return, form-feed
27
27
ESC_DELIM = r'\\' # '\'
28
28
ESCAPED_ESC_DELIM = r'\\\\' # '\\'
29
29
COMMENT_LINE = re .compile ('\s*[#!].*' ) # starts with #|! ignore white space
30
30
MULTI_LINE = re .compile (r'.*[\\]\s*$' ) # ending with '\' ignore white space
31
- # non escaped =|:|' ', include surrounding non escaped white space
32
- SPLIT_DELIM = re .compile (r'(?<!\\)\s*(?<!\\)[=: ]\s*' )
31
+ # non escaped =|:|' '|tab|formfeed , include surrounding non escaped white space
32
+ SPLIT_DELIM = re .compile (r'(?<!\\)\s*(?<!\\)[=: \t\f ]\s*' )
33
33
# match escape characters '\', except escaped '\\' and unicode escape '\u'
34
34
VALID_ESC_DELIM = r'(?<!\\)[\\](?!u)'
35
35
DEFAULT_ELEMENT = ''
You can’t perform that action at this time.
0 commit comments