diff --git a/ChangeLog b/ChangeLog index d0e9a8db..704fd32e 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,6 +1,21 @@ +2008-05-05 James Henstridge + + * psycopg/lobject.h: don't export the lobjectType symbol. + 2008-05-05 Federico Di Gregorio - * Fixed sun build problem by adding "sun" to config.h checks. + * Fixed sun build problem by adding "sun" to config.h checks. + +2008-05-05 James Henstridge + + * psycopg/pqpath.c (pq_complete_error): get rid of double free + error in case when pgres is NULL. + + * tests/test_lobject.py: add some basic tests for large object + code. + + * psycopg/lobject*.[ch]: port the large object code to work with + current psycopg code. 2006-09-01 Federico Di Gregorio diff --git a/psycopg/lobject.h b/psycopg/lobject.h index fabba2d1..9f6bce32 100644 --- a/psycopg/lobject.h +++ b/psycopg/lobject.h @@ -33,7 +33,7 @@ extern "C" { #endif -extern PyTypeObject lobjectType; +extern HIDDEN PyTypeObject lobjectType; typedef struct { PyObject HEAD;