<feed xmlns='http://www.w3.org/2005/Atom'>
<title>delta/python-packages/psycopg2.git/psycopg/python.h, branch maint_2_4</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>Added compatibility PyErr_WarnEx macro for Python 2.4</title>
<updated>2012-10-09T01:01:29+00:00</updated>
<author>
<name>Daniele Varrazzo</name>
<email>daniele.varrazzo@gmail.com</email>
</author>
<published>2012-10-06T00:16:57+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/psycopg2.git/commit/?id=6b6aded90b622a8119f3ad30aa164cd39f6e0a0f'/>
<id>6b6aded90b622a8119f3ad30aa164cd39f6e0a0f</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Merge branch 'transaction-control' into devel</title>
<updated>2011-06-03T00:48:24+00:00</updated>
<author>
<name>Daniele Varrazzo</name>
<email>daniele.varrazzo@gmail.com</email>
</author>
<published>2011-06-03T00:48:24+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/psycopg2.git/commit/?id=0eb5e0430e405186f44ac1014243665a73268972'/>
<id>0eb5e0430e405186f44ac1014243665a73268972</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Dropped isolation level from the connection object</title>
<updated>2011-06-02T23:10:24+00:00</updated>
<author>
<name>Daniele Varrazzo</name>
<email>daniele.varrazzo@gmail.com</email>
</author>
<published>2011-06-02T23:10:24+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/psycopg2.git/commit/?id=c2d1f1f2e6832384ca01466cfbefecfa877e6850'/>
<id>c2d1f1f2e6832384ca01466cfbefecfa877e6850</id>
<content type='text'>
Don't issue a SET TRANSACTION ISOLATION LEVEL at every begin: use PG's
GUC default, eventually set by set_transaction.

Dropped the last query at connection, yay!

Method set_isolation_level() and property isolation_level refactored using
the new structures, keeping the previous semantic.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Don't issue a SET TRANSACTION ISOLATION LEVEL at every begin: use PG's
GUC default, eventually set by set_transaction.

Dropped the last query at connection, yay!

Method set_isolation_level() and property isolation_level refactored using
the new structures, keeping the previous semantic.
</pre>
</div>
</content>
</entry>
<entry>
<title>Fixed escape for negative numbers prefixed by minus operator</title>
<updated>2011-05-30T21:00:20+00:00</updated>
<author>
<name>Daniele Varrazzo</name>
<email>daniele.varrazzo@gmail.com</email>
</author>
<published>2011-05-30T21:00:20+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/psycopg2.git/commit/?id=281427f450d6e9755d4c3cbc9fb159d45ca10ee6'/>
<id>281427f450d6e9755d4c3cbc9fb159d45ca10ee6</id>
<content type='text'>
Closes ticket #57.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Closes ticket #57.
</pre>
</div>
</content>
</entry>
<entry>
<title>Python 3.2 hash() return value is arch dependant</title>
<updated>2011-02-19T06:57:25+00:00</updated>
<author>
<name>Jason Erickson</name>
<email>jerickso@stickpeople.com</email>
</author>
<published>2011-02-19T06:57:25+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/psycopg2.git/commit/?id=4bc47d47a5e4570a66b1da393776c4a306feecb6'/>
<id>4bc47d47a5e4570a66b1da393776c4a306feecb6</id>
<content type='text'>
Python 3.2 hash() function will now return a 64bit value when run on a 64bit
architecture, where as previously, it would always return a 32bit value.
Modified the code to use the now Py_hash_t typedef and for Python versions
less than 3.2, hard code Py_hash_t to long and Py_uhash_t to unsigned long.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Python 3.2 hash() function will now return a 64bit value when run on a 64bit
architecture, where as previously, it would always return a 32bit value.
Modified the code to use the now Py_hash_t typedef and for Python versions
less than 3.2, hard code Py_hash_t to long and Py_uhash_t to unsigned long.
</pre>
</div>
</content>
</entry>
<entry>
<title>Fixed compiling on Python versions before 2.6</title>
<updated>2011-01-03T18:18:50+00:00</updated>
<author>
<name>Daniele Varrazzo</name>
<email>daniele.varrazzo@gmail.com</email>
</author>
<published>2011-01-03T18:14:40+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/psycopg2.git/commit/?id=b276e3b05dee01396d7703cced6e3b75e05caec3'/>
<id>b276e3b05dee01396d7703cced6e3b75e05caec3</id>
<content type='text'>
Added a few macros not defined in Py 2.4. Don't know about 2.5.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Added a few macros not defined in Py 2.4. Don't know about 2.5.
</pre>
</div>
</content>
</entry>
<entry>
<title>Added Py3 compatibility macro for Py_TPFLAGS_HAVE_WEAKREFS</title>
<updated>2011-01-03T15:56:26+00:00</updated>
<author>
<name>Daniele Varrazzo</name>
<email>daniele.varrazzo@gmail.com</email>
</author>
<published>2011-01-03T15:56:26+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/psycopg2.git/commit/?id=9eae66e8cf427484b9770f659a993389291b3b07'/>
<id>9eae66e8cf427484b9770f659a993389291b3b07</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Use the same Bytes_Format function for both Python 2 and 3.</title>
<updated>2010-12-31T02:22:19+00:00</updated>
<author>
<name>Daniele Varrazzo</name>
<email>daniele.varrazzo@gmail.com</email>
</author>
<published>2010-12-31T01:49:46+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/psycopg2.git/commit/?id=ac258169622ca758757e51338443a4cbed1e605d'/>
<id>ac258169622ca758757e51338443a4cbed1e605d</id>
<content type='text'>
This makes the behaviour between the two versions similar. It also have
the effect of a more specific error message in case an user specifies a
placeholder different from 's'.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
This makes the behaviour between the two versions similar. It also have
the effect of a more specific error message in case an user specifies a
placeholder different from 's'.
</pre>
</div>
</content>
</entry>
<entry>
<title>Added utility function to get bytes from a str/unicode.</title>
<updated>2010-12-31T02:18:26+00:00</updated>
<author>
<name>Daniele Varrazzo</name>
<email>daniele.varrazzo@gmail.com</email>
</author>
<published>2010-12-23T18:10:07+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/psycopg2.git/commit/?id=b4685bba4afff9eedfa0b03c1de815cfe738151f'/>
<id>b4685bba4afff9eedfa0b03c1de815cfe738151f</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Datetime adaptation in bytes.</title>
<updated>2010-12-31T02:18:26+00:00</updated>
<author>
<name>Daniele Varrazzo</name>
<email>daniele.varrazzo@gmail.com</email>
</author>
<published>2010-12-23T03:08:32+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/psycopg2.git/commit/?id=03dde732f6f14581d7f19ecda260087d4e6e6aaa'/>
<id>03dde732f6f14581d7f19ecda260087d4e6e6aaa</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
</feed>
