Skip to content

Commit fdfd35a

Browse files
author
James William Pye
committed
maxsplit should be "last".
1 parent 8736793 commit fdfd35a

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

postgresql/string.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -178,7 +178,7 @@ def split_using(text, quote, sep = '.', maxsplit = -1):
178178
l.append(text[offset:])
179179
return l
180180

181-
def split_ident(text, maxsplit = -1, sep = ',', quote = '"'):
181+
def split_ident(text, sep = ',', quote = '"', maxsplit = -1):
182182
"""
183183
Split a series of identifiers using the specified separator.
184184
"""

0 commit comments

Comments
 (0)