summaryrefslogtreecommitdiff
path: root/psycopg/bytes_format.c
Commit message (Collapse)AuthorAgeFilesLines
* Use more compact macros to annotate functions for the static checkerDaniele Varrazzo2012-03-011-2/+1
|
* Mark getnextarg function as returning a borrowed referenceDaniele Varrazzo2012-02-241-0/+1
|
* Dropped unused variableDaniele Varrazzo2011-11-011-2/+1
|
* Use the proper printf placeholders to avoid warnings on 64 bit buildsDaniele Varrazzo2011-01-031-1/+1
|
* Fixed compiling on Python versions before 2.6Daniele Varrazzo2011-01-031-0/+4
| | | | Added a few macros not defined in Py 2.4. Don't know about 2.5.
* Use the same Bytes_Format function for both Python 2 and 3.Daniele Varrazzo2010-12-311-18/+20
| | | | | | 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'.
* Dropped support for all format specifiers except s in PyBytes_Format.Daniele Varrazzo2010-12-311-160/+3
|
* Dropped warnings in PyBytes_Format function.Daniele Varrazzo2010-12-311-62/+0
|
* Use unicode keys as strings in Py3.Daniele Varrazzo2010-12-311-2/+1
| | | | | This fixes pyformat style argument passing. Unicode and bytes don't compare equal (even if they hash the same).
* Added PyBytes_Format function.Daniele Varrazzo2010-12-311-0/+513