<feed xmlns='http://www.w3.org/2005/Atom'>
<title>delta/python-packages/sqlparse.git/sqlparse/keywords.py, branch rb-parse-create-table</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>Rewrite regex to allow spaces between `name` and `.`</title>
<updated>2016-06-04T18:54:26+00:00</updated>
<author>
<name>Victor Uriarte</name>
<email>victor.m.uriarte@intel.com</email>
</author>
<published>2016-06-03T18:39:29+00:00</published>
<link rel='alternate' type='text/html' href='http://trove.baserock.org/cgit/delta/python-packages/sqlparse.git/commit/?id=ece7c26727b28ea05feeeba3a9c2d1b4b7eb5c54'/>
<id>ece7c26727b28ea05feeeba3a9c2d1b4b7eb5c54</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Clean regex for Number tokens</title>
<updated>2016-06-04T18:54:24+00:00</updated>
<author>
<name>Victor Uriarte</name>
<email>victor.m.uriarte@intel.com</email>
</author>
<published>2016-06-03T18:37:12+00:00</published>
<link rel='alternate' type='text/html' href='http://trove.baserock.org/cgit/delta/python-packages/sqlparse.git/commit/?id=689153a1fbe1bd8661c405e5305c4ac2414e55a8'/>
<id>689153a1fbe1bd8661c405e5305c4ac2414e55a8</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Simplify regex [^\W\d_]</title>
<updated>2016-06-04T18:54:22+00:00</updated>
<author>
<name>Victor Uriarte</name>
<email>victor.m.uriarte@intel.com</email>
</author>
<published>2016-06-03T18:36:07+00:00</published>
<link rel='alternate' type='text/html' href='http://trove.baserock.org/cgit/delta/python-packages/sqlparse.git/commit/?id=752100443bd1a5ddd81d57166db887c1fbd9f7ef'/>
<id>752100443bd1a5ddd81d57166db887c1fbd9f7ef</id>
<content type='text'>
[^\W\d_] = [a-z] (when ignoring case)

not( not (a-z, numbers, or _) or number or  _ )
[(a-z or number or _) and not number and not _]
[A-Z]

Correct not null spacing
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
[^\W\d_] = [a-z] (when ignoring case)

not( not (a-z, numbers, or _) or number or  _ )
[(a-z or number or _) and not number and not _]
[A-Z]

Correct not null spacing
</pre>
</div>
</content>
</entry>
<entry>
<title>Refactor regex Func/keyword exceptions together</title>
<updated>2016-06-04T18:54:20+00:00</updated>
<author>
<name>Victor Uriarte</name>
<email>victor.m.uriarte@intel.com</email>
</author>
<published>2016-06-03T18:32:15+00:00</published>
<link rel='alternate' type='text/html' href='http://trove.baserock.org/cgit/delta/python-packages/sqlparse.git/commit/?id=cca348e295fc2e00c745d3a8c1bac3e8d4a5d97e'/>
<id>cca348e295fc2e00c745d3a8c1bac3e8d4a5d97e</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Rewrite wildcard and placeholder regex</title>
<updated>2016-06-04T18:54:18+00:00</updated>
<author>
<name>Victor Uriarte</name>
<email>victor.m.uriarte@intel.com</email>
</author>
<published>2016-06-03T18:24:56+00:00</published>
<link rel='alternate' type='text/html' href='http://trove.baserock.org/cgit/delta/python-packages/sqlparse.git/commit/?id=2fcbee71724dd6311afe5a88106c4591bc1914ee'/>
<id>2fcbee71724dd6311afe5a88106c4591bc1914ee</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Improve Comment Regex and add Comment.Hint for Oracle</title>
<updated>2016-06-04T18:54:16+00:00</updated>
<author>
<name>Victor Uriarte</name>
<email>victor.m.uriarte@intel.com</email>
</author>
<published>2016-06-03T18:22:26+00:00</published>
<link rel='alternate' type='text/html' href='http://trove.baserock.org/cgit/delta/python-packages/sqlparse.git/commit/?id=5d0810b5ce607a5a5a92ce065424a17a924886a7'/>
<id>5d0810b5ce607a5a5a92ce065424a17a924886a7</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Allow re to compile once</title>
<updated>2016-06-04T18:54:14+00:00</updated>
<author>
<name>Victor Uriarte</name>
<email>victor.m.uriarte@intel.com</email>
</author>
<published>2016-06-03T17:34:12+00:00</published>
<link rel='alternate' type='text/html' href='http://trove.baserock.org/cgit/delta/python-packages/sqlparse.git/commit/?id=41cbd6a86d1550b6e1634bc0f3b203dabcc2698f'/>
<id>41cbd6a86d1550b6e1634bc0f3b203dabcc2698f</id>
<content type='text'>
Otherwise re will need to recompile everytime a call to
 tokenize is made.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Otherwise re will need to recompile everytime a call to
 tokenize is made.
</pre>
</div>
</content>
</entry>
<entry>
<title>Simplify multi-line comments</title>
<updated>2016-06-04T18:54:13+00:00</updated>
<author>
<name>Victor Uriarte</name>
<email>victor.m.uriarte@intel.com</email>
</author>
<published>2016-06-03T16:55:41+00:00</published>
<link rel='alternate' type='text/html' href='http://trove.baserock.org/cgit/delta/python-packages/sqlparse.git/commit/?id=348ff620fa1acb807b83b173ee62807df21510e5'/>
<id>348ff620fa1acb807b83b173ee62807df21510e5</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Add or Update copyright year to files</title>
<updated>2016-06-04T18:08:20+00:00</updated>
<author>
<name>Victor Uriarte</name>
<email>victor.m.uriarte@intel.com</email>
</author>
<published>2016-06-03T20:47:04+00:00</published>
<link rel='alternate' type='text/html' href='http://trove.baserock.org/cgit/delta/python-packages/sqlparse.git/commit/?id=af2a3fa7eb75c534ca76b8c0cc2ca6731fdb2efb'/>
<id>af2a3fa7eb75c534ca76b8c0cc2ca6731fdb2efb</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Refactor var Lexer.tokens &amp; func is_keyword</title>
<updated>2016-05-29T07:08:58+00:00</updated>
<author>
<name>Victor Uriarte</name>
<email>victor.m.uriarte@intel.com</email>
</author>
<published>2016-05-28T20:13:40+00:00</published>
<link rel='alternate' type='text/html' href='http://trove.baserock.org/cgit/delta/python-packages/sqlparse.git/commit/?id=5aa809137f9e65c56e0b34c15c0fe42be36894d7'/>
<id>5aa809137f9e65c56e0b34c15c0fe42be36894d7</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
</feed>
