<feed xmlns='http://www.w3.org/2005/Atom'>
<title>delta/python-packages/sqlparse.git/sqlparse/lexer.py, branch 0.2.4</title>
<subtitle>github.com: andialbrecht/sqlparse.git
</subtitle>
<link rel='alternate' type='text/html' href='http://trove.baserock.org/cgit/delta/python-packages/sqlparse.git/'/>
<entry>
<title>Fix encoding logic/order</title>
<updated>2017-01-11T02:13:32+00:00</updated>
<author>
<name>Victor Uriarte</name>
<email>victor.m.uriarte@intel.com</email>
</author>
<published>2017-01-11T01:52:12+00:00</published>
<link rel='alternate' type='text/html' href='http://trove.baserock.org/cgit/delta/python-packages/sqlparse.git/commit/?id=66b36af84fbe6d546b73a207e687234f28bb00a0'/>
<id>66b36af84fbe6d546b73a207e687234f28bb00a0</id>
<content type='text'>
- If user provides an encoding value, use it instead of trying to _guess_ first.
- If no value is provided, then decode with default of utf-8, otherwise
  try with unicode-escape
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
- If user provides an encoding value, use it instead of trying to _guess_ first.
- If no value is provided, then decode with default of utf-8, otherwise
  try with unicode-escape
</pre>
</div>
</content>
</entry>
<entry>
<title>Fix #315 support utf-8 by default</title>
<updated>2017-01-11T02:00:52+00:00</updated>
<author>
<name>Tao Wang</name>
<email>twang2218@gmail.com</email>
</author>
<published>2017-01-11T00:44:40+00:00</published>
<link rel='alternate' type='text/html' href='http://trove.baserock.org/cgit/delta/python-packages/sqlparse.git/commit/?id=a6d372d52469304860902a3eba1bafa412d420f0'/>
<id>a6d372d52469304860902a3eba1bafa412d420f0</id>
<content type='text'>
Signed-off-by: Tao Wang &lt;twang2218@gmail.com&gt;
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Signed-off-by: Tao Wang &lt;twang2218@gmail.com&gt;
</pre>
</div>
</content>
</entry>
<entry>
<title>Correct license link (fixes #288).</title>
<updated>2016-09-14T12:56:34+00:00</updated>
<author>
<name>Andi Albrecht</name>
<email>albrecht.andi@gmail.com</email>
</author>
<published>2016-09-14T12:56:34+00:00</published>
<link rel='alternate' type='text/html' href='http://trove.baserock.org/cgit/delta/python-packages/sqlparse.git/commit/?id=4430c5c163d8b6ffc89d83b506c8a478037d26ea'/>
<id>4430c5c163d8b6ffc89d83b506c8a478037d26ea</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Decode bytes to unicode in Lexer.get_tokens().</title>
<updated>2016-08-31T13:11:22+00:00</updated>
<author>
<name>Oleg Broytman</name>
<email>phd@phdru.name</email>
</author>
<published>2016-08-31T13:10:35+00:00</published>
<link rel='alternate' type='text/html' href='http://trove.baserock.org/cgit/delta/python-packages/sqlparse.git/commit/?id=843499915e91e0ee324a0407c78ac6f570806370'/>
<id>843499915e91e0ee324a0407c78ac6f570806370</id>
<content type='text'>
Raise TypeError if the input is neither bytes in a known encoding nor
unicode nor a file-like object (file, StringIO).

Remove function u(). Add bytes_type to compat. Add tests for non-ascii.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Raise TypeError if the input is neither bytes in a known encoding nor
unicode nor a file-like object (file, StringIO).

Remove function u(). Add bytes_type to compat. Add tests for non-ascii.
</pre>
</div>
</content>
</entry>
<entry>
<title>Revert "Parse double dollars (PostgreSQL) as literal strings (fixes #277)."</title>
<updated>2016-08-13T16:21:04+00:00</updated>
<author>
<name>Victor Uriarte</name>
<email>victor.m.uriarte@intel.com</email>
</author>
<published>2016-08-13T16:21:04+00:00</published>
<link rel='alternate' type='text/html' href='http://trove.baserock.org/cgit/delta/python-packages/sqlparse.git/commit/?id=83ca5c8ed2134a0f1a1132159c8571060d9b6e91'/>
<id>83ca5c8ed2134a0f1a1132159c8571060d9b6e91</id>
<content type='text'>
This reverts commit 2893bd1857d685cf892beac3a7429d03cf1a09f1.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
This reverts commit 2893bd1857d685cf892beac3a7429d03cf1a09f1.
</pre>
</div>
</content>
</entry>
<entry>
<title>Parse double dollars (PostgreSQL) as literal strings (fixes #277).</title>
<updated>2016-08-13T15:38:21+00:00</updated>
<author>
<name>Andi Albrecht</name>
<email>albrecht.andi@gmail.com</email>
</author>
<published>2016-08-13T15:38:21+00:00</published>
<link rel='alternate' type='text/html' href='http://trove.baserock.org/cgit/delta/python-packages/sqlparse.git/commit/?id=2893bd1857d685cf892beac3a7429d03cf1a09f1'/>
<id>2893bd1857d685cf892beac3a7429d03cf1a09f1</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Move file_types list to compat module.</title>
<updated>2016-08-10T08:43:40+00:00</updated>
<author>
<name>Andi Albrecht</name>
<email>albrecht.andi@gmail.com</email>
</author>
<published>2016-08-10T08:43:40+00:00</published>
<link rel='alternate' type='text/html' href='http://trove.baserock.org/cgit/delta/python-packages/sqlparse.git/commit/?id=907d36a7b8909addfffdf172b39fa52df0288ae4'/>
<id>907d36a7b8909addfffdf172b39fa52df0288ae4</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Fix a bug: recognize file (Python 2) as a stream</title>
<updated>2016-08-05T22:30:45+00:00</updated>
<author>
<name>Oleg Broytman</name>
<email>phd@phdru.name</email>
</author>
<published>2016-08-05T16:58:48+00:00</published>
<link rel='alternate' type='text/html' href='http://trove.baserock.org/cgit/delta/python-packages/sqlparse.git/commit/?id=44e66710fb2222b0aa60c21a834c46831166f44c'/>
<id>44e66710fb2222b0aa60c21a834c46831166f44c</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Fix parsing of streams (fixes #273).</title>
<updated>2016-07-22T19:51:18+00:00</updated>
<author>
<name>Andi Albrecht</name>
<email>albrecht.andi@gmail.com</email>
</author>
<published>2016-07-22T19:51:18+00:00</published>
<link rel='alternate' type='text/html' href='http://trove.baserock.org/cgit/delta/python-packages/sqlparse.git/commit/?id=55a7d3ef1eee834e4e14fbd695f94b4fb1c73d21'/>
<id>55a7d3ef1eee834e4e14fbd695f94b4fb1c73d21</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Misc. small code clean-up/comments</title>
<updated>2016-06-19T01:01:40+00:00</updated>
<author>
<name>Victor Uriarte</name>
<email>victor.m.uriarte@intel.com</email>
</author>
<published>2016-06-16T13:45:09+00:00</published>
<link rel='alternate' type='text/html' href='http://trove.baserock.org/cgit/delta/python-packages/sqlparse.git/commit/?id=581912d36e2b10191e46fa891dce912693983c95'/>
<id>581912d36e2b10191e46fa891dce912693983c95</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
</feed>
