<feed xmlns='http://www.w3.org/2005/Atom'>
<title>delta/python-packages/psycopg2.git/lib/extras.py, branch test_i686</title>
<subtitle>github.com: psycopg/psycopg2.git
</subtitle>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/psycopg2.git/'/>
<entry>
<title>Use PY2, PY3 for conditional code instead of sys.version_info</title>
<updated>2019-03-16T19:54:40+00:00</updated>
<author>
<name>Daniele Varrazzo</name>
<email>daniele.varrazzo@gmail.com</email>
</author>
<published>2019-03-16T17:15:16+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/psycopg2.git/commit/?id=dfb301b42be462f5a4f66b12a401753ab441543c'/>
<id>dfb301b42be462f5a4f66b12a401753ab441543c</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Use True/False instead of 1/0 to represent bool values</title>
<updated>2019-03-13T11:13:36+00:00</updated>
<author>
<name>Jon Dufresne</name>
<email>jon.dufresne@gmail.com</email>
</author>
<published>2019-03-13T02:46:23+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/psycopg2.git/commit/?id=3f890f8bbefdb431630d36c8569bbff383b96f92'/>
<id>3f890f8bbefdb431630d36c8569bbff383b96f92</id>
<content type='text'>
Slightly more modern, readable, and Pythonic.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Slightly more modern, readable, and Pythonic.
</pre>
</div>
</content>
</entry>
<entry>
<title>Convert `while 1:` statements to `while True:`</title>
<updated>2019-03-13T11:13:05+00:00</updated>
<author>
<name>Jon Dufresne</name>
<email>jon.dufresne@gmail.com</email>
</author>
<published>2019-03-13T02:37:22+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/psycopg2.git/commit/?id=03bb44dd2ca1e4ff8cd53469e2c5f2fa5361c084'/>
<id>03bb44dd2ca1e4ff8cd53469e2c5f2fa5361c084</id>
<content type='text'>
A slightly more readable and modern syntax.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
A slightly more readable and modern syntax.
</pre>
</div>
</content>
</entry>
<entry>
<title>Copyright year updated</title>
<updated>2019-02-17T01:36:36+00:00</updated>
<author>
<name>Daniele Varrazzo</name>
<email>daniele.varrazzo@gmail.com</email>
</author>
<published>2019-02-17T01:34:52+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/psycopg2.git/commit/?id=599432552aae4941c2b282e9251330f1357b2a45'/>
<id>599432552aae4941c2b282e9251330f1357b2a45</id>
<content type='text'>
    ag -l Copyright | xargs sed -i \
        "s/\(.*copyright (C) [0-9]\+\)\(-[0-9]\+\)\?\(.*\)/\1-$(date +%Y)\3/I"
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
    ag -l Copyright | xargs sed -i \
        "s/\(.*copyright (C) [0-9]\+\)\(-[0-9]\+\)\?\(.*\)/\1-$(date +%Y)\3/I"
</pre>
</div>
</content>
</entry>
<entry>
<title>Use a proper LRU cache for namedtuples</title>
<updated>2019-02-02T19:29:20+00:00</updated>
<author>
<name>Daniele Varrazzo</name>
<email>daniele.varrazzo@gmail.com</email>
</author>
<published>2019-02-02T19:21:39+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/psycopg2.git/commit/?id=35ec7ad9c1ecb165eaeb2b8d4dae84ed8bad182b'/>
<id>35ec7ad9c1ecb165eaeb2b8d4dae84ed8bad182b</id>
<content type='text'>
Previous one didn't refresh by last use. Use the stdlib version for py3
and one of our own for py2.

Max size set to 512, which should be fine for everyone (tweaking is
still possible by monkeypatching, as the tests do, but I don't want to
make an interface of it).
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Previous one didn't refresh by last use. Use the stdlib version for py3
and one of our own for py2.

Max size set to 512, which should be fine for everyone (tweaking is
still possible by monkeypatching, as the tests do, but I don't want to
make an interface of it).
</pre>
</div>
</content>
</entry>
<entry>
<title>Added caching of types generated by NamedTupleCursor</title>
<updated>2019-02-02T14:22:25+00:00</updated>
<author>
<name>Daniele Varrazzo</name>
<email>daniele.varrazzo@gmail.com</email>
</author>
<published>2019-02-02T14:22:25+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/psycopg2.git/commit/?id=805527fcd6bedc2671a37c59299c1fa9148f9e6e'/>
<id>805527fcd6bedc2671a37c59299c1fa9148f9e6e</id>
<content type='text'>
see #838
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
see #838
</pre>
</div>
</content>
</entry>
<entry>
<title>Docs wordsmith for execute_values() fetch param</title>
<updated>2018-12-27T13:42:58+00:00</updated>
<author>
<name>Daniele Varrazzo</name>
<email>daniele.varrazzo@gmail.com</email>
</author>
<published>2018-12-27T13:40:08+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/psycopg2.git/commit/?id=bde9fc6dea578891c7bf2a6f5a7ecdc98978f642'/>
<id>bde9fc6dea578891c7bf2a6f5a7ecdc98978f642</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Some harmless adjustments in execute_values() code</title>
<updated>2018-12-27T13:39:13+00:00</updated>
<author>
<name>Daniele Varrazzo</name>
<email>daniele.varrazzo@gmail.com</email>
</author>
<published>2018-12-27T13:39:13+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/psycopg2.git/commit/?id=6fdac46137351d4e99fe2bebd43ab1b6135d160b'/>
<id>6fdac46137351d4e99fe2bebd43ab1b6135d160b</id>
<content type='text'>
No optional result, and create the list only if requred.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
No optional result, and create the list only if requred.
</pre>
</div>
</content>
</entry>
<entry>
<title>rename param name to fetch</title>
<updated>2018-11-24T18:51:18+00:00</updated>
<author>
<name>Ivan Kotelnikov</name>
<email>ivan.kotelnikov@bitfury.com</email>
</author>
<published>2018-11-23T22:06:01+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/psycopg2.git/commit/?id=b40ac15efc177e88c20b0e692041b7cc2f54110b'/>
<id>b40ac15efc177e88c20b0e692041b7cc2f54110b</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>add RETURNING clause support in execute_values function</title>
<updated>2018-11-21T14:38:13+00:00</updated>
<author>
<name>Ivan Kotelnikov</name>
<email>ivan.kotelnikov@bitfury.com</email>
</author>
<published>2018-11-21T14:29:34+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/psycopg2.git/commit/?id=9a8d7d5a6ad5f24e1cbc529e98dd61ad9424b9ed'/>
<id>9a8d7d5a6ad5f24e1cbc529e98dd61ad9424b9ed</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
</feed>
