summaryrefslogtreecommitdiff
path: root/sqlparse/utils.py
Commit message (Collapse)AuthorAgeFilesLines
* Remove six dependency.Andi Albrecht2015-01-171-1/+2
| | | | | We only use very little of six. That isn't worth to add an extra dependency.
* Remove conditional for OrderedDict.Andi Albrecht2015-01-171-48/+24
|
* Improved sqlparse.utils.split_unquoted_newlines()Michael Schuller2014-07-311-40/+38
| | | | | I've modified this function to use a regular expression for most of the work. This makes it much, much faster, especially for large queries.
* Fix SerializerUnicode to split unquoted newlinesMichael Schuller2014-03-101-0/+43
| | | | | | | This provides a fix to issue #131. The `split_unquoted_newlines()` function added to the utils module handles the splitting of the string by performing a simple iteration of the string passed in and splitting on unquoted CR, LF, or CR+LFs as they are found.
* Fixed bug on __getitem__ (infinite loop because pop() use it already)Jesús Leganés Combarro "Piranna"2012-05-191-2/+3
|
* I always forget to remove the prints for testing... :-PJesús Leganés Combarro "Piranna"2012-05-191-1/+0
|
* Improved cache systemJesús Leganés Combarro "Piranna"2012-05-191-7/+55
|
* Fixed regression thanks to idea from functools.lru_cache()Jesús Leganés Combarro "Piranna"2012-05-191-1/+2
|
* Merge branch 'master' into antiormJesús Leganés Combarro "Piranna"2012-05-191-0/+1
| | | | | Conflicts: sqlparse/filters.py
* Added limit to cacheJesús Leganés Combarro "Piranna"2012-05-191-2/+7
|
* Added memoize_generator and use it on IncludeStatementJesús Leganés Combarro "Piranna"2012-05-171-0/+41