summaryrefslogtreecommitdiff
path: root/psycopg/typecast.c
Commit message (Expand)AuthorAgeFilesLines
* Copyright bumped to 2020Daniele Varrazzo2020-01-171-0/+1
* Prefix 'psycopg_' changed to 'psyco_'namingDaniele Varrazzo2019-03-171-1/+1
* Several function names shortenedDaniele Varrazzo2019-03-171-2/+2
* Dropped debug info for microprotocols/adapters initializationDaniele Varrazzo2019-03-161-17/+0
* Added PY_2, PY_3 macros and used uniformlyDaniele Varrazzo2019-03-161-1/+1
* Copyright year updatedDaniele Varrazzo2019-02-171-1/+1
* General cleanup of module init shenanigansmodule-init-cleanupDaniele Varrazzo2019-01-231-2/+5
* Incref an object which will be held forever in a static varDaniele Varrazzo2019-01-231-0/+1
* Simplify PyBool usage with Python convenience macros/functionsJon Dufresne2018-11-301-8/+1
* Return objects with timezone parsing infinity timestamptzDaniele Varrazzo2017-03-221-0/+6
* Don't convert '{}'::unknown into an empty listDaniele Varrazzo2017-02-081-8/+0
* Merge branch 'fast-codecs'Daniele Varrazzo2016-12-291-2/+1
|\
| * Don't look up for Python encodingDaniele Varrazzo2016-12-291-2/+1
| * conn->codec rename to pyencDaniele Varrazzo2016-12-261-1/+1
* | Don't set tp_compare on Python 3Daniele Varrazzo2016-12-291-0/+4
|/
* Convert Postgres time 24:00 into 00:00Daniele Varrazzo2015-02-081-0/+3
* Use the Py_RETURN_NONE macroDaniele Varrazzo2013-04-051-2/+1
* Added tp_clear method for objects with GC supportDaniele Varrazzo2013-04-051-13/+14
* PyType_GenericAlloc is the default allocator: no need to specifyDaniele Varrazzo2013-03-201-4/+4
* Dropped "customized" pg_free functionsDaniele Varrazzo2013-03-201-26/+1
* Stricter types usage in several PyArg_ParseTuple callsDaniele Varrazzo2012-03-041-1/+1
* Fixed typecasters refcountDaniele Varrazzo2012-03-041-19/+21
* Further modeling of exception raisingDaniele Varrazzo2012-03-041-2/+2
* Added new_array_type() functionDaniele Varrazzo2011-09-221-0/+23
* Don't fail import if mx.DateTime module is not found at import timeDaniele Varrazzo2011-06-041-7/+8
* Add a type converter to handle untyped empty arrays.Benjamin Poulain2011-02-201-4/+22
* Fixed compiling on Python versions before 2.6Daniele Varrazzo2011-01-031-1/+1
* In Py3, decode the tuple values before passing to the typecaster.Daniele Varrazzo2010-12-311-1/+21
* Function psycopg_ensure_bytes converted in a "filter" stealing a ref.Daniele Varrazzo2010-12-311-3/+3
* Added typecasters repr().Daniele Varrazzo2010-12-311-1/+19
* The library can be compiled with Python 3.Daniele Varrazzo2010-12-211-13/+11
* Import structmember/stringobject headers from python.h.Daniele Varrazzo2010-12-211-2/+0
* Using PyVarObject_HEAD_INIT macro.Daniele Varrazzo2010-12-211-2/+1
* Using Py_TYPE and Py_REFCNT macros.Daniele Varrazzo2010-12-211-3/+3
* Changed Python const RO -> READONLY.Daniele Varrazzo2010-12-121-2/+2
* Internal imports simplified.Daniele Varrazzo2010-12-121-6/+3
* Dropped interface for two private functions.Daniele Varrazzo2010-12-041-2/+4
* Work around CentOS 5.5 x86_64 buld problem.Daniele Varrazzo2010-12-041-0/+3
* Functions exported to drop warnings.Daniele Varrazzo2010-11-191-3/+3
* Fixed error related to calling C typecasters from Python onesFederico Di Gregorio2010-05-151-0/+9
* Added typecasters for arrays of specific MX/Py time-related types.Daniele Varrazzo2010-05-151-1/+18
* Applied GC patch from Michael TharpFederico Di Gregorio2010-04-141-1/+6
* Changes license to LGPL3 + OpenSSL exception on all source filesFederico Di Gregorio2010-02-121-12/+16
* * tests/test_dates.py (DatetimeTests, mxDateTimeTests): full testJames Henstridge2009-02-171-5/+7
* * psycopg/typecast.c (typecast_parse_time): Fix up handling ofJames Henstridge2009-02-171-1/+1
* Remove conditionals on support for booleans and datetimes, since they James Henstridge2008-12-261-8/+1
* * psycopg/typecast.c (typecast_traverse): implement cyclic GCJames Henstridge2008-05-281-8/+28
* * psycopg/typecast.c (typecast_from_c): fix up some referenceJames Henstridge2008-03-251-9/+14
* * psycopg/typecast.c (typecast_parse_time): give the correctJames Henstridge2008-03-171-1/+3
* * psycopg/typecast.c (typecast_pydatetime): make array static.James Henstridge2008-01-211-2/+2