diff options
| author | Jesús Leganés Combarro "Piranna" <piranna@gmail.com> | 2012-06-02 00:37:11 +0200 |
|---|---|---|
| committer | Jesús Leganés Combarro "Piranna" <piranna@gmail.com> | 2012-06-02 00:37:11 +0200 |
| commit | 56996812a9753fcf94117fd8c37eee60debeaf87 (patch) | |
| tree | 70d0978c8571a91161236b728e5f0da6f652e614 /sqlparse/engine | |
| parent | b89d03804d16c064d237e26340853bf4b3ed41f0 (diff) | |
| download | sqlparse-56996812a9753fcf94117fd8c37eee60debeaf87.tar.gz | |
Renamed function
Diffstat (limited to 'sqlparse/engine')
| -rw-r--r-- | sqlparse/engine/grouping.py | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/sqlparse/engine/grouping.py b/sqlparse/engine/grouping.py index bab932d..046ec9b 100644 --- a/sqlparse/engine/grouping.py +++ b/sqlparse/engine/grouping.py @@ -205,7 +205,7 @@ def group_identifier_list(tlist): lambda t: isinstance(t, sql.Comment), ] - def group(start, after): + def group_identifierlist(start, after): """ Create and group the identifiers list """ @@ -247,7 +247,7 @@ def group_identifier_list(tlist): # Reached the end of the list # Create and group the identifiers list - tcomma = group(start, after) + tcomma = group_identifierlist(start, after) # Skip ahead to next "," start = None @@ -256,7 +256,7 @@ def group_identifier_list(tlist): # There's an open identifier list, create and group the identifiers list if start: - group(start, after) + group_identifierlist(start, after) def group_parenthesis(tlist): |
