summaryrefslogtreecommitdiff
path: root/psycopg/psycopgmodule.c
Commit message (Expand)AuthorAgeFilesLines
...
* Further modeling of exception raisingDaniele Varrazzo2012-03-041-12/+10
* Use more compact macros to annotate functions for the static checkerDaniele Varrazzo2012-03-011-2/+1
* Use the newly provided attributes to validate exceptions raisingDaniele Varrazzo2012-03-011-1/+2
* Dropped hardcoded list of exceptions in init functionsDaniele Varrazzo2012-02-231-30/+24
* Fixed potential failures while setting exceptions attributesDaniele Varrazzo2012-02-231-6/+8
* Fixed potential NULL increfDaniele Varrazzo2012-02-231-1/+1
* Fixed refcount of exceptions dictsDaniele Varrazzo2012-02-231-8/+15
* Check errors in module typecasters initDaniele Varrazzo2012-02-231-27/+69
* Fixed refcount of None if namedtuples are not availableDaniele Varrazzo2012-02-231-7/+10
* Check errors when populating encodings mapDaniele Varrazzo2012-02-231-6/+18
* Avoid installing Error.__reduce_ex__ on Python 2.4Daniele Varrazzo2012-01-141-1/+7
* Make Error and subclasses picklableDaniele Varrazzo2012-01-141-2/+75
* connect() supports generic keyword arguments passed to the dsnDaniele Varrazzo2011-11-171-155/+21
* Decimal adapter registration moved from C to PythonDaniele Varrazzo2011-10-141-4/+0
* Added new_array_type() functionDaniele Varrazzo2011-09-221-1/+12
* Don't fail import if mx.DateTime module is not found at import timeDaniele Varrazzo2011-06-041-9/+29
* Merge branch 'neg-escape' into develDaniele Varrazzo2011-05-301-2/+8
|\
| * Fixed escape for negative numbers prefixed by minus operatorDaniele Varrazzo2011-05-301-2/+8
* | Fixed a few docstrings mixed upDaniele Varrazzo2011-05-111-3/+3
|/
* Stricter declaration and correct use of psyco_set_errorDaniele Varrazzo2011-02-211-2/+2
* Documentation cleanupDaniele Varrazzo2011-02-191-1/+1
* Correctly handle exceptions with non-ascii chars in the messageDaniele Varrazzo2011-02-191-3/+16
* Provide cursor.description as named tuple if possibleDaniele Varrazzo2011-02-191-0/+42
* Use a global object for NULLDaniele Varrazzo2011-02-171-0/+4
* Adapt bytearray and memoryview to bytes if availableDaniele Varrazzo2011-02-151-0/+9
* Don't define a CObject API in Python 3.2Daniele Varrazzo2011-01-081-1/+6
* Added utility method to return a string in the connection encoding.Daniele Varrazzo2010-12-311-9/+9
* The library can be compiled with Python 3.Daniele Varrazzo2010-12-211-38/+105
* Added a few missing encodings.Daniele Varrazzo2010-12-211-15/+21
* Encodings mapping reordered in a more maintainable order.Daniele Varrazzo2010-12-211-37/+37
* Using Py_TYPE and Py_REFCNT macros.Daniele Varrazzo2010-12-211-17/+17
* Internal imports simplified.Daniele Varrazzo2010-12-121-5/+1
* Work around CentOS 5.5 x86_64 buld problem.Daniele Varrazzo2010-12-041-4/+0
* mx.DateTime module initialized as it is supposed to be.Daniele Varrazzo2010-11-191-4/+5
* datetime module initialized as it is supposed to be.Daniele Varrazzo2010-11-191-15/+11
* Expose the Xid object in the extension module.Daniele Varrazzo2010-11-051-0/+1
* Added connection.xid() and related objects.Daniele Varrazzo2010-11-051-0/+4
* Notify object exposed in the extensions module.Daniele Varrazzo2010-11-051-0/+1
* Adding Notify object with payload.Daniele Varrazzo2010-11-051-0/+4
* Added 'get_wait_callback()' function.Daniele Varrazzo2010-04-211-0/+2
* Added wait callback and functions to deal with it.Daniele Varrazzo2010-04-211-0/+6
* Pass the async parameter to the connection only if nonzero.Daniele Varrazzo2010-04-051-1/+12
* Support asynchronous connection buildingFederico Di Gregorio2010-04-051-5/+8
* Fixed problem with decimal.Decimal conversionsFederico Di Gregorio2010-02-211-6/+13
* Fixed newline in docstring.Daniele Varrazzo2010-02-141-1/+1
* Fixed docstring for 'QueryCanceledError' exception.Daniele Varrazzo2010-02-141-1/+1
* Changes license to LGPL3 + OpenSSL exception on all source filesFederico Di Gregorio2010-02-121-12/+16
* Fixed error in register_type()Federico Di Gregorio2009-03-021-3/+4
* Added adapter to handle float('inf') and float('nan')Federico Di Gregorio2009-01-231-1/+7
* register_type() now works on connection and cursor subclassesFederico Di Gregorio2009-01-221-2/+2