File tree Expand file tree Collapse file tree 11 files changed +15
-10
lines changed
Expand file tree Collapse file tree 11 files changed +15
-10
lines changed Original file line number Diff line number Diff line change 1+ 2006-10-29 Federico Di Gregorio <fog@initd.org>
2+
3+ * Applied patch from Jason Erickson to make psycopg build
4+ again on win32 (closes: #132).
5+
162006-09-30 Federico Di Gregorio <fog@initd.org>
27
38 * ZpsycopgDA/DA.py: applied the infinity patch from 1.1 (fixes #122).
Original file line number Diff line number Diff line change @@ -31,7 +31,7 @@ extern "C" {
3131extern PyTypeObject asisType ;
3232
3333typedef struct {
34- PyObject_HEAD ;
34+ PyObject_HEAD
3535
3636 /* this is the real object we wrap */
3737 PyObject * wrapped ;
Original file line number Diff line number Diff line change @@ -32,7 +32,7 @@ extern "C" {
3232extern PyTypeObject binaryType ;
3333
3434typedef struct {
35- PyObject_HEAD ;
35+ PyObject_HEAD
3636
3737 PyObject * wrapped ;
3838 PyObject * buffer ;
Original file line number Diff line number Diff line change @@ -31,7 +31,7 @@ extern "C" {
3131extern PyTypeObject pydatetimeType ;
3232
3333typedef struct {
34- PyObject_HEAD ;
34+ PyObject_HEAD
3535
3636 PyObject * wrapped ;
3737 int type ;
Original file line number Diff line number Diff line change @@ -31,7 +31,7 @@ extern "C" {
3131extern PyTypeObject listType ;
3232
3333typedef struct {
34- PyObject_HEAD ;
34+ PyObject_HEAD
3535
3636 PyObject * wrapped ;
3737 PyObject * connection ;
Original file line number Diff line number Diff line change @@ -31,7 +31,7 @@ extern "C" {
3131extern PyTypeObject mxdatetimeType ;
3232
3333typedef struct {
34- PyObject_HEAD ;
34+ PyObject_HEAD
3535
3636 PyObject * wrapped ;
3737 int type ;
Original file line number Diff line number Diff line change @@ -31,7 +31,7 @@ extern "C" {
3131extern PyTypeObject pbooleanType ;
3232
3333typedef struct {
34- PyObject_HEAD ;
34+ PyObject_HEAD
3535
3636 /* this is the real object we wrap */
3737 PyObject * wrapped ;
Original file line number Diff line number Diff line change @@ -31,7 +31,7 @@ extern "C" {
3131extern PyTypeObject qstringType ;
3232
3333typedef struct {
34- PyObject_HEAD ;
34+ PyObject_HEAD
3535
3636 PyObject * wrapped ;
3737 PyObject * buffer ;
Original file line number Diff line number Diff line change @@ -38,7 +38,7 @@ extern "C" {
3838extern PyTypeObject connectionType ;
3939
4040typedef struct {
41- PyObject_HEAD ;
41+ PyObject_HEAD
4242
4343 pthread_mutex_t lock ; /* the global connection lock */
4444
Original file line number Diff line number Diff line change @@ -34,7 +34,7 @@ extern "C" {
3434extern PyTypeObject cursorType ;
3535
3636typedef struct {
37- PyObject_HEAD ;
37+ PyObject_HEAD
3838
3939 connectionObject * conn ; /* connection owning the cursor */
4040
You can’t perform that action at this time.
0 commit comments