<feed xmlns='http://www.w3.org/2005/Atom'>
<title>delta/python-packages/sqlparse.git/sqlparse, branch 0.1.15</title>
<subtitle>github.com: andialbrecht/sqlparse.git
</subtitle>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-packages/sqlparse.git/'/>
<entry>
<title>Update version number.</title>
<updated>2015-04-15T16:17:57+00:00</updated>
<author>
<name>Andi Albrecht</name>
<email>albrecht.andi@gmail.com</email>
</author>
<published>2015-04-15T16:17:57+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-packages/sqlparse.git/commit/?id=4b7b0d3a01d8061572137f82a53de7365f3a241c'/>
<id>4b7b0d3a01d8061572137f82a53de7365f3a241c</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Never interpret IN keyword as function name (fixes #183).</title>
<updated>2015-04-12T05:37:01+00:00</updated>
<author>
<name>Andi Albrecht</name>
<email>albrecht.andi@gmail.com</email>
</author>
<published>2015-04-12T05:37:01+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-packages/sqlparse.git/commit/?id=f775030692222a5a0b296284328276b65259cc02'/>
<id>f775030692222a5a0b296284328276b65259cc02</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Update offset when adding line break (fixes 184).</title>
<updated>2015-04-12T05:06:31+00:00</updated>
<author>
<name>Andi Albrecht</name>
<email>albrecht.andi@gmail.com</email>
</author>
<published>2015-04-12T05:06:31+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-packages/sqlparse.git/commit/?id=ab827eaf935aba776715c4693ec9f320008a6708'/>
<id>ab827eaf935aba776715c4693ec9f320008a6708</id>
<content type='text'>
This change fixes a regression introduced in 8c5c0684ac61ab7d0c5e77881728c8106f2877f9.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
This change fixes a regression introduced in 8c5c0684ac61ab7d0c5e77881728c8106f2877f9.
</pre>
</div>
</content>
</entry>
<entry>
<title>Fix other regex to identify comments starting with '#' character.</title>
<updated>2015-03-16T06:56:01+00:00</updated>
<author>
<name>Andi Albrecht</name>
<email>albrecht.andi@gmail.com</email>
</author>
<published>2015-03-16T06:56:01+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-packages/sqlparse.git/commit/?id=f5e1a1add8aa4564cd24e2b3d13414b1fba68899'/>
<id>f5e1a1add8aa4564cd24e2b3d13414b1fba68899</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Support comments starting with '#' character (fixes #178).</title>
<updated>2015-03-16T06:50:06+00:00</updated>
<author>
<name>Andi Albrecht</name>
<email>albrecht.andi@gmail.com</email>
</author>
<published>2015-03-16T06:50:06+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-packages/sqlparse.git/commit/?id=9dbcfd31abafe48ee7c646129c40e904ff0a5fac'/>
<id>9dbcfd31abafe48ee7c646129c40e904ff0a5fac</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Group square-brackets into identifiers</title>
<updated>2015-03-04T15:41:34+00:00</updated>
<author>
<name>Darik Gamble</name>
<email>darik.gamble@gmail.com</email>
</author>
<published>2015-03-04T15:41:34+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-packages/sqlparse.git/commit/?id=b61fe36f718ca4f7c0b4e8d1cb81cc1370877905'/>
<id>b61fe36f718ca4f7c0b4e8d1cb81cc1370877905</id>
<content type='text'>
Indentifier.get_array_indices() looks for square brackets, and yields lists of bracket grouped tokens as array indices
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Indentifier.get_array_indices() looks for square brackets, and yields lists of bracket grouped tokens as array indices
</pre>
</div>
</content>
</entry>
<entry>
<title>Parse square brackets as a group just like parens</title>
<updated>2015-03-04T15:39:53+00:00</updated>
<author>
<name>Darik Gamble</name>
<email>darik.gamble@gmail.com</email>
</author>
<published>2015-03-04T15:39:53+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-packages/sqlparse.git/commit/?id=a93029f38fc2a1a182da92cf361d700cbe2b79c2'/>
<id>a93029f38fc2a1a182da92cf361d700cbe2b79c2</id>
<content type='text'>
- add class sql.SquareBrackets
- replace group_parenthesis() with more generic group_brackets(), which groups square and round brackets, so each can contain groups of the other
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
- add class sql.SquareBrackets
- replace group_parenthesis() with more generic group_brackets(), which groups square and round brackets, so each can contain groups of the other
</pre>
</div>
</content>
</entry>
<entry>
<title>Move _find_matching to a module-level function</title>
<updated>2015-03-04T15:34:47+00:00</updated>
<author>
<name>Darik Gamble</name>
<email>darik.gamble@gmail.com</email>
</author>
<published>2015-03-04T15:34:47+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-packages/sqlparse.git/commit/?id=66f00a994437a02a8a2dac81ccdceb88d7013c83'/>
<id>66f00a994437a02a8a2dac81ccdceb88d7013c83</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>get rid of tokens.Punctuation.ArrayIndex, add negative lookbehind for sqlite identifiers</title>
<updated>2015-03-04T15:34:05+00:00</updated>
<author>
<name>Darik Gamble</name>
<email>darik.gamble@gmail.com</email>
</author>
<published>2015-03-04T15:34:05+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-packages/sqlparse.git/commit/?id=c9dc9c8b79a3e290c28761a786993b02eff705d6'/>
<id>c9dc9c8b79a3e290c28761a786993b02eff705d6</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Allow identifiers to start with an underscore (fixes #175).</title>
<updated>2015-03-01T10:52:34+00:00</updated>
<author>
<name>Andi Albrecht</name>
<email>albrecht.andi@gmail.com</email>
</author>
<published>2015-03-01T10:52:34+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-packages/sqlparse.git/commit/?id=15b0cb9e75ca378e94b55b7f1ff23108f0899cde'/>
<id>15b0cb9e75ca378e94b55b7f1ff23108f0899cde</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
</feed>
