summaryrefslogtreecommitdiff
path: root/psycopg/adapter_datetime.c
diff options
context:
space:
mode:
authorFederico Di Gregorio <fog@initd.org>2007-09-19 13:39:48 +0000
committerFederico Di Gregorio <fog@initd.org>2007-09-19 13:39:48 +0000
commit07892b29a656e21e74e40f8aafeb2c5473ecaef5 (patch)
tree35d8d7b80710cfecc984d135946d784fb7dd6065 /psycopg/adapter_datetime.c
parentc9e701baa972f9ea104134b9a7e971be80f84d1f (diff)
downloadpsycopg2-07892b29a656e21e74e40f8aafeb2c5473ecaef5.tar.gz
Aggressive threading on fetch (and a new bug!)
Diffstat (limited to 'psycopg/adapter_datetime.c')
-rw-r--r--psycopg/adapter_datetime.c11
1 files changed, 5 insertions, 6 deletions
diff --git a/psycopg/adapter_datetime.c b/psycopg/adapter_datetime.c
index 449745b..a960943 100644
--- a/psycopg/adapter_datetime.c
+++ b/psycopg/adapter_datetime.c
@@ -64,7 +64,7 @@ pydatetime_str(pydatetimeObject *self)
else {
PyDateTime_Delta *obj = (PyDateTime_Delta*)self->wrapped;
- char buffer[8];
+ char buffer[8];
int i;
int a = obj->microseconds;
@@ -128,8 +128,7 @@ pydatetime_setup(pydatetimeObject *self, PyObject *obj, int type)
{
Dprintf("pydatetime_setup: init datetime object at %p, refcnt = "
FORMAT_CODE_PY_SSIZE_T,
- self, ((PyObject *)self)->ob_refcnt
- );
+ self, ((PyObject *)self)->ob_refcnt);
self->type = type;
self->wrapped = obj;
@@ -137,8 +136,7 @@ pydatetime_setup(pydatetimeObject *self, PyObject *obj, int type)
Dprintf("pydatetime_setup: good pydatetime object at %p, refcnt = "
FORMAT_CODE_PY_SSIZE_T,
- self, ((PyObject *)self)->ob_refcnt
- );
+ self, ((PyObject *)self)->ob_refcnt);
return 0;
}
@@ -411,9 +409,10 @@ psyco_TimestampFromTicks(PyObject *self, PyObject *args)
args = Py_BuildValue("iiiiidO",
tm.tm_year+1900, tm.tm_mon+1, tm.tm_mday,
tm.tm_hour, tm.tm_min,
- (double)tm.tm_sec + ticks,
+ (double)tm.tm_sec + ticks,
pyPsycopgTzLOCAL);
if (args) {
+/* Dprintf("psyco_TimestampFromTicks: args->refcnt = %d", args->ob_refcnt);*/
res = psyco_Timestamp(self, args);
Py_DECREF(args);
}