<feed xmlns='http://www.w3.org/2005/Atom'>
<title>delta/python-packages/sqlparse.git/sqlparse/lexer.py, branch 0.3.1</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>Remove unnecessary compat shim for bytes</title>
<updated>2019-03-10T08:03:42+00:00</updated>
<author>
<name>Jon Dufresne</name>
<email>jon.dufresne@gmail.com</email>
</author>
<published>2018-12-28T20:46:38+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-packages/sqlparse.git/commit/?id=c9a490abf869eddf5b88de57c17d7a6c6c643ed8'/>
<id>c9a490abf869eddf5b88de57c17d7a6c6c643ed8</id>
<content type='text'>
Both Python 2.7 and Python 3 have the type bytes. On Python 2.7, it is
an alias of str, same as was previously defined in compat.py. Makes the
code slightly more compatible with Python 3 style syntax. Observe:

    $ python2
    &gt;&gt;&gt; bytes
    &lt;type 'str'&gt;
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Both Python 2.7 and Python 3 have the type bytes. On Python 2.7, it is
an alias of str, same as was previously defined in compat.py. Makes the
code slightly more compatible with Python 3 style syntax. Observe:

    $ python2
    &gt;&gt;&gt; bytes
    &lt;type 'str'&gt;
</pre>
</div>
</content>
</entry>
<entry>
<title>Update copyright header (fixes #372).</title>
<updated>2018-07-31T06:12:54+00:00</updated>
<author>
<name>Andi Albrecht</name>
<email>albrecht.andi@gmail.com</email>
</author>
<published>2018-07-31T06:12:54+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-packages/sqlparse.git/commit/?id=3853a076c63493f43e969cf4ddd2e642e92f02fb'/>
<id>3853a076c63493f43e969cf4ddd2e642e92f02fb</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Fix typos</title>
<updated>2017-11-29T21:52:15+00:00</updated>
<author>
<name>Victor Uriarte</name>
<email>victor.m.uriarte@intel.com</email>
</author>
<published>2017-11-29T16:56:06+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-packages/sqlparse.git/commit/?id=43478c60394e09246ee6275f89ae434e429cc5b5'/>
<id>43478c60394e09246ee6275f89ae434e429cc5b5</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<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://91.123.203.49/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://91.123.203.49/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://91.123.203.49/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://91.123.203.49/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://91.123.203.49/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://91.123.203.49/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://91.123.203.49/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>
</feed>
