<feed xmlns='http://www.w3.org/2005/Atom'>
<title>delta/python-packages/sqlparse.git/sqlparse/sql.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 parsing of UNION ALL after WHERE (fixes #349).</title>
<updated>2017-07-29T08:16:34+00:00</updated>
<author>
<name>Andi Albrecht</name>
<email>albrecht.andi@gmail.com</email>
</author>
<published>2017-07-29T08:16:34+00:00</published>
<link rel='alternate' type='text/html' href='http://trove.baserock.org/cgit/delta/python-packages/sqlparse.git/commit/?id=113897280c612aa839fa9f8bd44bfd720d3729c7'/>
<id>113897280c612aa839fa9f8bd44bfd720d3729c7</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 INTO keyword in WHERE clauses (fixes #324).</title>
<updated>2017-03-02T04:37:20+00:00</updated>
<author>
<name>Andi Albrecht</name>
<email>andi@lap-pu35.prounix.local</email>
</author>
<published>2017-03-02T04:37:20+00:00</published>
<link rel='alternate' type='text/html' href='http://trove.baserock.org/cgit/delta/python-packages/sqlparse.git/commit/?id=59033cc0ea75e160c87a68de6817cad06888cc38'/>
<id>59033cc0ea75e160c87a68de6817cad06888cc38</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</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>Convert string literals to unicode for Py27</title>
<updated>2016-08-31T13:09:36+00:00</updated>
<author>
<name>Oleg Broytman</name>
<email>phd@phdru.name</email>
</author>
<published>2016-08-29T18:36:15+00:00</published>
<link rel='alternate' type='text/html' href='http://trove.baserock.org/cgit/delta/python-packages/sqlparse.git/commit/?id=b05bc5ab586cb06d89c38e2eee7f77e1d3fc03c5'/>
<id>b05bc5ab586cb06d89c38e2eee7f77e1d3fc03c5</id>
<content type='text'>
Working with non-ascii in Python require all-unicode approach, but
str literals in Python 2.7 are bytes. The patch makes them unicode.
Syntax u'' is supported in Python 2.7 and 3.3+.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Working with non-ascii in Python require all-unicode approach, but
str literals in Python 2.7 are bytes. The patch makes them unicode.
Syntax u'' is supported in Python 2.7 and 3.3+.
</pre>
</div>
</content>
</entry>
<entry>
<title>Unify_naming_schema. Closes #283</title>
<updated>2016-08-23T02:29:45+00:00</updated>
<author>
<name>Victor Uriarte</name>
<email>victor.m.uriarte@intel.com</email>
</author>
<published>2016-08-23T02:29:45+00:00</published>
<link rel='alternate' type='text/html' href='http://trove.baserock.org/cgit/delta/python-packages/sqlparse.git/commit/?id=a36008a235e31bc24b9d42a3a69b479031f024f9'/>
<id>a36008a235e31bc24b9d42a3a69b479031f024f9</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Clean-up quoting</title>
<updated>2016-08-23T02:25:06+00:00</updated>
<author>
<name>Victor Uriarte</name>
<email>victor.m.uriarte@intel.com</email>
</author>
<published>2016-08-23T02:25:06+00:00</published>
<link rel='alternate' type='text/html' href='http://trove.baserock.org/cgit/delta/python-packages/sqlparse.git/commit/?id=ae0532678b0fdc859cae021ee135579d875a24a8'/>
<id>ae0532678b0fdc859cae021ee135579d875a24a8</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Avoid double apostrophes</title>
<updated>2016-08-05T22:47:51+00:00</updated>
<author>
<name>Oleg Broytman</name>
<email>phd@phdru.name</email>
</author>
<published>2016-08-05T19:18:40+00:00</published>
<link rel='alternate' type='text/html' href='http://trove.baserock.org/cgit/delta/python-packages/sqlparse.git/commit/?id=17d5f8c1b6002019d5f078fbc6a56f351a5efeef'/>
<id>17d5f8c1b6002019d5f078fbc6a56f351a5efeef</id>
<content type='text'>
If the value is Single it's already quoted with apostrophes.
Avoid double apostrophes it that case by using double-quotes instead.

For example, if the value is 'value' the output is "'value'" instead of
''value''.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
If the value is Single it's already quoted with apostrophes.
Avoid double apostrophes it that case by using double-quotes instead.

For example, if the value is 'value' the output is "'value'" instead of
''value''.
</pre>
</div>
</content>
</entry>
<entry>
<title>Returning clause ends where clause</title>
<updated>2016-06-25T14:08:52+00:00</updated>
<author>
<name>Darik Gamble</name>
<email>darik.gamble.spam@gmail.com</email>
</author>
<published>2016-06-25T14:08:52+00:00</published>
<link rel='alternate' type='text/html' href='http://trove.baserock.org/cgit/delta/python-packages/sqlparse.git/commit/?id=c27a604291f7ae1d6dbf3a49376972f723ad16f1'/>
<id>c27a604291f7ae1d6dbf3a49376972f723ad16f1</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>token_next shouldn't ignore skip_cm</title>
<updated>2016-06-20T13:56:42+00:00</updated>
<author>
<name>Darik Gamble</name>
<email>darik.gamble@gmail.com</email>
</author>
<published>2016-06-20T13:56:42+00:00</published>
<link rel='alternate' type='text/html' href='http://trove.baserock.org/cgit/delta/python-packages/sqlparse.git/commit/?id=66ae504c4bf8cc1f005c8822623d2b3c3d3e4aa3'/>
<id>66ae504c4bf8cc1f005c8822623d2b3c3d3e4aa3</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Make use of token_index more obvious</title>
<updated>2016-06-15T20:29:17+00:00</updated>
<author>
<name>Victor Uriarte</name>
<email>victor.m.uriarte@intel.com</email>
</author>
<published>2016-06-14T11:15:27+00:00</published>
<link rel='alternate' type='text/html' href='http://trove.baserock.org/cgit/delta/python-packages/sqlparse.git/commit/?id=56b28dc15023d36bab8764bea6df75e28651646e'/>
<id>56b28dc15023d36bab8764bea6df75e28651646e</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
</feed>
